diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2000-07-11 02:32:09 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2000-07-11 02:32:09 +0000 |
commit | 7f5ea64ad438953cbeb3055f424dfac01d5bcfc7 (patch) | |
tree | f8cabc30da0d0eaa578cb6369c816e02af148510 /fs | |
parent | 99e873a7003ab3980a6296c29066e3ab7956a009 (diff) |
Merge with Linux 2.4.0-test3.
Diffstat (limited to 'fs')
-rw-r--r-- | fs/binfmt_elf.c | 2 | ||||
-rw-r--r-- | fs/proc/array.c | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/fs/binfmt_elf.c b/fs/binfmt_elf.c index 7f0e51187..d24db3010 100644 --- a/fs/binfmt_elf.c +++ b/fs/binfmt_elf.c @@ -1097,7 +1097,7 @@ static int elf_core_dump(long signr, struct pt_regs * regs, struct file * file) psinfo.pr_state = i; psinfo.pr_sname = (i < 0 || i > 5) ? '.' : "RSDZTD"[i]; psinfo.pr_zomb = psinfo.pr_sname == 'Z'; - psinfo.pr_nice = current->priority-15; + psinfo.pr_nice = current->nice; psinfo.pr_flag = current->flags; psinfo.pr_uid = NEW_TO_OLD_UID(current->uid); psinfo.pr_gid = NEW_TO_OLD_GID(current->gid); diff --git a/fs/proc/array.c b/fs/proc/array.c index 57746b03e..535c8c527 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c @@ -344,9 +344,8 @@ int proc_pid_stat(struct task_struct *task, char * buffer) /* scale priority and nice values from timeslices to -20..20 */ /* to make it look like a "normal" Unix priority/nice value */ priority = task->counter; - priority = 20 - (priority * 10 + DEF_PRIORITY / 2) / DEF_PRIORITY; - nice = task->priority; - nice = 20 - (nice * 20 + DEF_PRIORITY / 2) / DEF_PRIORITY; + priority = 20 - (priority * 10 + DEF_COUNTER / 2) / DEF_COUNTER; + nice = task->nice; read_lock(&tasklist_lock); ppid = task->p_opptr->pid; |