Subject: + mm-kmemleakc-use-%u-to-print-checksum.patch added to -mm tree To: majianpeng@xxxxxxxxx,catalin.marinas@xxxxxxx From: akpm@xxxxxxxxxxxxxxxxxxxx Date: Fri, 02 May 2014 15:49:13 -0700 The patch titled Subject: mm/kmemleak.c: use %u to print ->checksum has been added to the -mm tree. Its filename is mm-kmemleakc-use-%u-to-print-checksum.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/mm-kmemleakc-use-%u-to-print-checksum.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/mm-kmemleakc-use-%u-to-print-checksum.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Jianpeng Ma <majianpeng@xxxxxxxxx> Subject: mm/kmemleak.c: use %u to print ->checksum Signed-off-by: Jianpeng Ma <majianpeng@xxxxxxxxx> Signed-off-by: Catalin Marinas <catalin.marinas@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/kmemleak.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN mm/kmemleak.c~mm-kmemleakc-use-%u-to-print-checksum mm/kmemleak.c --- a/mm/kmemleak.c~mm-kmemleakc-use-%u-to-print-checksum +++ a/mm/kmemleak.c @@ -387,7 +387,7 @@ static void dump_object_info(struct kmem pr_notice(" min_count = %d\n", object->min_count); pr_notice(" count = %d\n", object->count); pr_notice(" flags = 0x%lx\n", object->flags); - pr_notice(" checksum = %d\n", object->checksum); + pr_notice(" checksum = %u\n", object->checksum); pr_notice(" backtrace:\n"); print_stack_trace(&trace, 4); } _ Patches currently in -mm which might be from majianpeng@xxxxxxxxx are mm-kmemleakc-use-%u-to-print-checksum.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html