]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
kdb: fix incorrect counts in KDB summary command output
authorJay Lan <jlan@sgi.com>
Mon, 29 Sep 2014 22:36:57 +0000 (15:36 -0700)
committerLuis Henriques <luis.henriques@canonical.com>
Mon, 2 Mar 2015 15:04:36 +0000 (15:04 +0000)
commit 146755923262037fc4c54abc28c04b1103f3cc51 upstream.

The output of KDB 'summary' command should report MemTotal, MemFree
and Buffers output in kB. Current codes report in unit of pages.

A define of K(x) as
is defined in the code, but not used.

This patch would apply the define to convert the values to kB.
Please include me on Cc on replies. I do not subscribe to linux-kernel.

Signed-off-by: Jay Lan <jlan@sgi.com>
Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
Signed-off-by: Luis Henriques <luis.henriques@canonical.com>
kernel/debug/kdb/kdb_main.c

index 2f7c760305cac120195f43913abe811095ac258f..98d2f17479d779d3327185afdea7a17d32fc9bff 100644 (file)
@@ -2535,7 +2535,7 @@ static int kdb_summary(int argc, const char **argv)
 #define K(x) ((x) << (PAGE_SHIFT - 10))
        kdb_printf("\nMemTotal:       %8lu kB\nMemFree:        %8lu kB\n"
                   "Buffers:        %8lu kB\n",
-                  val.totalram, val.freeram, val.bufferram);
+                  K(val.totalram), K(val.freeram), K(val.bufferram));
        return 0;
 }