All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v4 3/6] kasan: print timer and workqueue stack
@ 2020-09-24  4:05 ` Walter Wu
  0 siblings, 0 replies; 19+ messages in thread
From: Walter Wu @ 2020-09-24  4:05 UTC (permalink / raw)
  To: Andrew Morton, Marco Elver, Andrey Ryabinin, Alexander Potapenko,
	Dmitry Vyukov, Andrey Konovalov, Matthias Brugger
  Cc: kasan-dev, linux-mm, linux-kernel, linux-arm-kernel,
	wsd_upstream, linux-mediatek, Walter Wu

The aux_stack[2] is reused to record the call_rcu() call stack,
timer init call stack, and enqueuing work call stacks. So that
we need to change the auxiliary stack title for common title,
print them in KASAN report.

Signed-off-by: Walter Wu <walter-zh.wu@mediatek.com>
Suggested-by: Marco Elver <elver@google.com>
Acked-by: Marco Elver <elver@google.com>
Reviewed-by: Dmitry Vyukov <dvyukov@google.com>
Reviewed-by: Andrey Konovalov <andreyknvl@google.com>
Cc: Andrey Ryabinin <aryabinin@virtuozzo.com>
Cc: Alexander Potapenko <glider@google.com>
---

v2:
- Thanks for Marco suggestion.
- We modify aux stack title name in KASAN report
  in order to print call_rcu()/timer/workqueue stack.

---
 mm/kasan/report.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mm/kasan/report.c b/mm/kasan/report.c
index 4f49fa6cd1aa..886809d0a8dd 100644
--- a/mm/kasan/report.c
+++ b/mm/kasan/report.c
@@ -183,12 +183,12 @@ static void describe_object(struct kmem_cache *cache, void *object,
 
 #ifdef CONFIG_KASAN_GENERIC
 		if (alloc_info->aux_stack[0]) {
-			pr_err("Last call_rcu():\n");
+			pr_err("Last potentially related work creation:\n");
 			print_stack(alloc_info->aux_stack[0]);
 			pr_err("\n");
 		}
 		if (alloc_info->aux_stack[1]) {
-			pr_err("Second to last call_rcu():\n");
+			pr_err("Second to last potentially related work creation:\n");
 			print_stack(alloc_info->aux_stack[1]);
 			pr_err("\n");
 		}
-- 
2.18.0

^ permalink raw reply related	[flat|nested] 19+ messages in thread

end of thread, other threads:[~2020-09-24 12:23 UTC | newest]

Thread overview: 19+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-24  4:05 [PATCH v4 3/6] kasan: print timer and workqueue stack Walter Wu
2020-09-24  4:05 ` Walter Wu
2020-09-24  4:05 ` Walter Wu
2020-09-24 11:47 ` Alexander Potapenko
2020-09-24 11:47   ` Alexander Potapenko
2020-09-24 11:47   ` Alexander Potapenko
2020-09-24 11:47   ` Alexander Potapenko
2020-09-24 11:54   ` Marco Elver
2020-09-24 11:54     ` Marco Elver
2020-09-24 11:54     ` Marco Elver
2020-09-24 11:54     ` Marco Elver
2020-09-24 12:11     ` Alexander Potapenko
2020-09-24 12:11       ` Alexander Potapenko
2020-09-24 12:11       ` Alexander Potapenko
2020-09-24 12:11       ` Alexander Potapenko
2020-09-24 12:21       ` Marco Elver
2020-09-24 12:21         ` Marco Elver
2020-09-24 12:21         ` Marco Elver
2020-09-24 12:21         ` Marco Elver

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.