]> git.hungrycats.org Git - linux/commitdiff
[PATCH] slab: remove spaces from /proc identifiers
authorAndrew Morton <akpm@digeo.com>
Wed, 30 Oct 2002 07:24:33 +0000 (23:24 -0800)
committerLinus Torvalds <torvalds@penguin.transmeta.com>
Wed, 30 Oct 2002 07:24:33 +0000 (23:24 -0800)
From Manfred Spraul

remove the space from the name of the DMA caches: they make it
impossible to tune the caches through /proc/slabinfo, and make parsing
/proc/slabinfo difficult

mm/slab.c

index 81e3c85b01ef56fd709a9dc9702c981196395b30..354f1b436bf7fd220324bfb6cdccfcb7d92483ff 100644 (file)
--- a/mm/slab.c
+++ b/mm/slab.c
@@ -351,7 +351,7 @@ static cache_sizes_t cache_sizes[] = {
        {     0,        NULL, NULL}
 };
 /* Must match cache_sizes above. Out of line to keep cache footprint low. */
-#define CN(x) { x, x " (DMA)" }
+#define CN(x) { x, x "(DMA)" }
 static struct { 
        char *name; 
        char *name_dma;