| Submitter | Benjamin Herrenschmidt |
|---|---|
| Date | March 11, 2009, 3:53 a.m. |
| Message ID | <20090311035339.8DA96DDD04@ozlabs.org> |
| Download | mbox | patch |
| Permalink | /patch/24286/ |
| State | Accepted |
| Commit | ff7c660092de1f70e156cf95784a4b55556412d9 |
| Delegated to: | Benjamin Herrenschmidt |
| Headers | show |
Comments
Patch
--- linux-work.orig/arch/powerpc/mm/mmu_context_nohash.c 2009-03-11 11:51:05.000000000 +1100 +++ linux-work/arch/powerpc/mm/mmu_context_nohash.c 2009-03-11 11:52:55.000000000 +1100 @@ -380,7 +380,7 @@ void __init mmu_context_init(void) #endif printk(KERN_INFO - "MMU: Allocated %d bytes of context maps for %d contexts\n", + "MMU: Allocated %zu bytes of context maps for %d contexts\n", 2 * CTX_MAP_SIZE + (sizeof(void *) * (last_context + 1)), last_context - first_context + 1);
We need to use %zu instead of %d when printing a sizeof() Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> --- arch/powerpc/mm/mmu_context_nohash.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)