From: KAMEZAWA Hiroyuki Date: Wed, 28 Mar 2012 21:42:39 +0000 (-0700) Subject: procfs: fix /proc/statm X-Git-Tag: v3.4-rc2~15^2~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3748b2f15b06ea1861df39d5e9693dcd6e9542b1;p=profile%2Fivi%2Fkernel-x86-ivi.git procfs: fix /proc/statm bda7bad62bc4 ("procfs: speed up /proc/pid/stat, statm") broke /proc/statm - 'text' is printed twice by mistake. Signed-off-by: KAMEZAWA Hiroyuki Reported-by: Ulrich Drepper Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/fs/proc/array.c b/fs/proc/array.c index fbb53c2..f9bd395 100644 --- a/fs/proc/array.c +++ b/fs/proc/array.c @@ -550,7 +550,7 @@ int proc_pid_statm(struct seq_file *m, struct pid_namespace *ns, seq_put_decimal_ull(m, ' ', shared); seq_put_decimal_ull(m, ' ', text); seq_put_decimal_ull(m, ' ', 0); - seq_put_decimal_ull(m, ' ', text); + seq_put_decimal_ull(m, ' ', data); seq_put_decimal_ull(m, ' ', 0); seq_putc(m, '\n');