mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/netdev/net.git/
synced 2026-04-03 23:37:40 -04:00
Enable context analysis for the KFENCE subsystem. Notable, kfence_handle_page_fault() required minor restructure, which also fixed a subtle race; arguably that function is more readable now. Signed-off-by: Marco Elver <elver@google.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://patch.msgid.link/20251219154418.3592607-29-elver@google.com
9 lines
210 B
Makefile
9 lines
210 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
CONTEXT_ANALYSIS := y
|
|
|
|
obj-y := core.o report.o
|
|
|
|
CFLAGS_kfence_test.o := -fno-omit-frame-pointer -fno-optimize-sibling-calls
|
|
obj-$(CONFIG_KFENCE_KUNIT_TEST) += kfence_test.o
|