The patch titled Subject: kasan: print page description after stacks has been added to the -mm tree. Its filename is kasan-print-page-description-after-stacks.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/kasan-print-page-description-after-stacks.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/kasan-print-page-description-after-stacks.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: Andrey Konovalov <andreyknvl@xxxxxxxxxx> Subject: kasan: print page description after stacks Moves page description after the stacks since it's less important. Link: http://lkml.kernel.org/r/20170302134851.101218-8-andreyknvl@xxxxxxxxxx Signed-off-by: Andrey Konovalov <andreyknvl@xxxxxxxxxx> Acked-by: Dmitry Vyukov <dvyukov@xxxxxxxxxx> Cc: Andrey Ryabinin <aryabinin@xxxxxxxxxxxxx> Cc: Alexander Potapenko <glider@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- mm/kasan/report.c | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff -puN mm/kasan/report.c~kasan-print-page-description-after-stacks mm/kasan/report.c --- a/mm/kasan/report.c~kasan-print-page-description-after-stacks +++ a/mm/kasan/report.c @@ -259,9 +259,6 @@ static void print_address_description(st void *addr = (void *)info->access_addr; struct page *page = addr_to_page(addr); - if (page) - dump_page(page, "kasan: bad access detected"); - dump_stack(); if (page && PageSlab(page)) { @@ -271,9 +268,14 @@ static void print_address_description(st describe_object(cache, object, addr); } - if (kernel_or_module_addr(addr)) { - if (!init_task_stack_addr(addr)) - pr_err("Address belongs to variable %pS\n", addr); + if (kernel_or_module_addr(addr) && !init_task_stack_addr(addr)) { + pr_err("The buggy address belongs to the variable:\n"); + pr_err(" %pS\n", addr); + } + + if (page) { + pr_err("The buggy address belongs to the page:\n"); + dump_page(page, "kasan: bad access detected"); } } _ Patches currently in -mm which might be from andreyknvl@xxxxxxxxxx are kasan-introduce-helper-functions-for-determining-bug-type.patch kasan-unify-report-headers.patch kasan-change-allocation-and-freeing-stack-traces-headers.patch kasan-simplify-address-description-logic.patch kasan-change-report-header.patch kasan-improve-slab-object-description.patch kasan-print-page-description-after-stacks.patch kasan-improve-double-free-report-format.patch kasan-separate-report-parts-by-empty-lines.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