]> Git Repo - linux.git/commit
lib/stackdepot: always do filter_irq_stacks() in stack_depot_save()
authorMarco Elver <[email protected]>
Sat, 22 Jan 2022 06:14:31 +0000 (22:14 -0800)
committerLinus Torvalds <[email protected]>
Sat, 22 Jan 2022 06:33:38 +0000 (08:33 +0200)
commite940066089490efde86abc519593be84362f4e53
treeffd6a2977d1065ee08ec5fe54123afc455e1e841
parent2dba5eb1c73b6ba2988ced07250edeac0f8cbf5a
lib/stackdepot: always do filter_irq_stacks() in stack_depot_save()

The non-interrupt portion of interrupt stack traces before interrupt
entry is usually arbitrary.  Therefore, saving stack traces of
interrupts (that include entries before interrupt entry) to stack depot
leads to unbounded stackdepot growth.

As such, use of filter_irq_stacks() is a requirement to ensure
stackdepot can efficiently deduplicate interrupt stacks.

Looking through all current users of stack_depot_save(), none (except
KASAN) pass the stack trace through filter_irq_stacks() before passing
it on to stack_depot_save().

Rather than adding filter_irq_stacks() to all current users of
stack_depot_save(), it became clear that stack_depot_save() should
simply do filter_irq_stacks().

Link: https://lkml.kernel.org/r/[email protected]
Signed-off-by: Marco Elver <[email protected]>
Reviewed-by: Alexander Potapenko <[email protected]>
Acked-by: Vlastimil Babka <[email protected]>
Reviewed-by: Andrey Konovalov <[email protected]>
Cc: Andrey Ryabinin <[email protected]>
Cc: Dmitry Vyukov <[email protected]>
Cc: Vijayanand Jitta <[email protected]>
Cc: "Gustavo A. R. Silva" <[email protected]>
Cc: Imran Khan <[email protected]>
Cc: Chris Wilson <[email protected]>
Cc: Jani Nikula <[email protected]>
Cc: Mika Kuoppala <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
lib/stackdepot.c
mm/kasan/common.c
This page took 0.058381 seconds and 4 git commands to generate.