]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
slub: Fixes to per cpu stat output in sysfs
authorChristoph Lameter <clameter@sgi.com>
Mon, 14 Apr 2008 15:52:05 +0000 (18:52 +0300)
committerPekka Enberg <penberg@cs.helsinki.fi>
Mon, 14 Apr 2008 15:52:05 +0000 (18:52 +0300)
Only output per cpu stats if the kernel is build for SMP.

Use a capital "C" as a leading character for the processor number
(same as the numa statistics that also use a capital letter "N").

Signed-off-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Pekka Enberg <penberg@cs.helsinki.fi>
mm/slub.c

index 3fcdcf7d77badff2dda3bdf6ade729bc1213a521..23e5ee7b149fcc3a1fbc34ff2a48e4a764ce6a8b 100644 (file)
--- a/mm/slub.c
+++ b/mm/slub.c
@@ -3979,10 +3979,12 @@ static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
 
        len = sprintf(buf, "%lu", sum);
 
+#ifdef CONFIG_SMP
        for_each_online_cpu(cpu) {
                if (data[cpu] && len < PAGE_SIZE - 20)
-                       len += sprintf(buf + len, " c%d=%u", cpu, data[cpu]);
+                       len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
        }
+#endif
        kfree(data);
        return len + sprintf(buf + len, "\n");
 }