From: Jan Engelhardt Date: Wed, 25 Apr 2012 01:04:45 +0000 (+1000) Subject: procfs: use more apprioriate types when dumping /proc/N/stat X-Git-Tag: next-20120430~2^2~34 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=ff8c0eebe4e85ba326007f2caf0eadefc0f3795d;p=karo-tx-linux.git procfs: use more apprioriate types when dumping /proc/N/stat - use int fpr priority and nice, since task_nice()/task_prio() return that - field 24: get_mm_rss() returns unsigned long Signed-off-by: Jan Engelhardt Signed-off-by: Andrew Morton --- diff --git a/fs/proc/array.c b/fs/proc/array.c index f9bd395b3473..8e27e533d51c 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c @@ -361,7 +361,7 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns, struct pid *pid, struct task_struct *task, int whole) { unsigned long vsize, eip, esp, wchan = ~0UL; - long priority, nice; + int priority, nice; int tty_pgrp = -1, tty_nr = 0; sigset_t sigign, sigcatch; char state; @@ -483,7 +483,7 @@ static int do_task_stat(struct seq_file *m, struct pid_namespace *ns, seq_put_decimal_ull(m, ' ', 0); seq_put_decimal_ull(m, ' ', start_time); seq_put_decimal_ull(m, ' ', vsize); - seq_put_decimal_ll(m, ' ', mm ? get_mm_rss(mm) : 0); + seq_put_decimal_ull(m, ' ', mm ? get_mm_rss(mm) : 0); seq_put_decimal_ull(m, ' ', rsslim); seq_put_decimal_ull(m, ' ', mm ? (permitted ? mm->start_code : 1) : 0); seq_put_decimal_ull(m, ' ', mm ? (permitted ? mm->end_code : 1) : 0);