[PATCH -next] slabinfo: fix printk formats

From: Randy Dunlap
Date: Wed Aug 13 2008 - 13:53:29 EST


From: Randy Dunlap <randy.dunlap@xxxxxxxxxx>

Fix slabinfo printk format warnings:

linux-next-20080813/Documentation/vm/slabinfo.c:619: warning: format '%7d' expects type 'int', but argument 4 has type 'long unsigned int'
linux-next-20080813/Documentation/vm/slabinfo.c:619: warning: format '%7d' expects type 'int', but argument 5 has type 'long unsigned int'
linux-next-20080813/Documentation/vm/slabinfo.c:619: warning: format '%7d' expects type 'int', but argument 6 has type 'long unsigned int'
linux-next-20080813/Documentation/vm/slabinfo.c:619: warning: format '%7d' expects type 'int', but argument 7 has type 'long unsigned int'
linux-next-20080813/Documentation/vm/slabinfo.c:619: warning: format '%7d' expects type 'int', but argument 8 has type 'long unsigned int'
linux-next-20080813/Documentation/vm/slabinfo.c:619: warning: format '%7d' expects type 'int', but argument 9 has type 'long unsigned int'

Signed-off-by: Randy Dunlap <randy.dunlap@xxxxxxxxxx>
---
Documentation/vm/slabinfo.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20080813.orig/Documentation/vm/slabinfo.c
+++ linux-next-20080813/Documentation/vm/slabinfo.c
@@ -613,7 +613,7 @@ void slabcache(struct slabinfo *s)
s->order_fallback, s->order);
} else
if (show_defragcount)
- printf("%-21s %8ld %7d %7d %7d %7d %7d %7d\n",
+ printf("%-21s %8ld %7lu %7lu %7lu %7lu %7lu %7lu\n",
s->name, s->objects, s->shrink_calls, s->shrink_attempt_defrag,
s->shrink_slab_reclaimed, s->shrink_empty_slab,
s->shrink_slab_skipped, s->shrink_object_reclaim_failed);


---
~Randy
Linux Plumbers Conference, 17-19 September 2008, Portland, Oregon USA
http://linuxplumbersconf.org/
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/