[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20080813105234.86bbc894.randy.dunlap@oracle.com>
Date: Wed, 13 Aug 2008 10:52:34 -0700
From: Randy Dunlap <randy.dunlap@...cle.com>
To: lkml <linux-kernel@...r.kernel.org>
Cc: sfr <sfr@...b.auug.org.au>, cl@...ux-foundation.org,
akpm <akpm@...ux-foundation.org>
Subject: [PATCH -next] slabinfo: fix printk formats
From: Randy Dunlap <randy.dunlap@...cle.com>
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@...cle.com>
---
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@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists