From: Uros Bizjak Date: Mon, 25 Mar 2024 11:01:09 +0000 (+0100) Subject: x86/percpu: Disable named address spaces for KCSAN X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b6540de9b5c867b4c8bc31225db181cc017d8cc7;p=linux.git x86/percpu: Disable named address spaces for KCSAN -fsanitize=thread (KCSAN) is at the moment incompatible with named address spaces in a similar way as KASAN - see GCC PR sanitizer/111736: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111736 The patch disables named address spaces with KCSAN. Reported-by: kernel test robot Signed-off-by: Uros Bizjak Signed-off-by: Ingo Molnar Cc: Linus Torvalds Link: https://lore.kernel.org/r/20240325110128.615933-1-ubizjak@gmail.com --- diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig index 39886bab943a8..4fff6ed46e902 100644 --- a/arch/x86/Kconfig +++ b/arch/x86/Kconfig @@ -2439,6 +2439,8 @@ config USE_X86_SEG_SUPPORT # with named address spaces - see GCC PR sanitizer/111736. # depends on !KASAN + # -fsanitize=thread (KCSAN) is also incompatible. + depends on !KCSAN config CC_HAS_SLS def_bool $(cc-option,-mharden-sls=all)