Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] /proc/meminfo: don't put spaces in names

None of the other /proc/meminfo lines have a space in the identifier. This
post-2.6.17 addition has the potential to break existing parsers, so use an
underscore instead (like Committed_AS).

Cc: Christoph Lameter <clameter@engr.sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Andrew Morton and committed by
Linus Torvalds
f5ef68da 513627d7

+2 -2
+1 -1
drivers/base/node.c
··· 64 64 "Node %d Mapped: %8lu kB\n" 65 65 "Node %d AnonPages: %8lu kB\n" 66 66 "Node %d PageTables: %8lu kB\n" 67 - "Node %d NFS Unstable: %8lu kB\n" 67 + "Node %d NFS_Unstable: %8lu kB\n" 68 68 "Node %d Bounce: %8lu kB\n" 69 69 "Node %d Slab: %8lu kB\n", 70 70 nid, K(i.totalram),
+1 -1
fs/proc/proc_misc.c
··· 169 169 "Mapped: %8lu kB\n" 170 170 "Slab: %8lu kB\n" 171 171 "PageTables: %8lu kB\n" 172 - "NFS Unstable: %8lu kB\n" 172 + "NFS_Unstable: %8lu kB\n" 173 173 "Bounce: %8lu kB\n" 174 174 "CommitLimit: %8lu kB\n" 175 175 "Committed_AS: %8lu kB\n"