]> git.baikalelectronics.ru Git - kernel.git/commit
mm: kfence: apply kmemleak_ignore_phys on early allocated pool
authorYee Lee <yee.lee@mediatek.com>
Tue, 28 Jun 2022 11:37:11 +0000 (19:37 +0800)
committerakpm <akpm@linux-foundation.org>
Mon, 18 Jul 2022 22:07:51 +0000 (15:07 -0700)
commit41209c472574b332e584b6dc8a0dfd1d89c67ff5
tree61ab78164ceaae3603f3351605fdba639d5ad5ad
parent37f8f626ccf79de5f982739259292de115b4ca32
mm: kfence: apply kmemleak_ignore_phys on early allocated pool

This patch solves two issues.

(1) The pool allocated by memblock needs to unregister from
kmemleak scanning. Apply kmemleak_ignore_phys to replace the
original kmemleak_free as its address now is stored in the phys tree.

(2) The pool late allocated by page-alloc doesn't need to unregister.
Move out the freeing operation from its call path.

Link: https://lkml.kernel.org/r/20220628113714.7792-2-yee.lee@mediatek.com
Fixes: 0c24e061196c21d5 ("mm: kmemleak: add rbtree and store physical address for objects allocated with PA")
Signed-off-by: Yee Lee <yee.lee@mediatek.com>
Suggested-by: Catalin Marinas <catalin.marinas@arm.com>
Reviewed-by: Catalin Marinas <catalin.marinas@arm.com>
Suggested-by: Marco Elver <elver@google.com>
Reviewed-by: Marco Elver <elver@google.com>
Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/kfence/core.c