diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2023-02-25 13:02:20 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2023-02-25 13:02:20 -0800 |
commit | 0447ed0d71251e8e67c9d15f8d9001a3ab621fcd (patch) | |
tree | ac8add13ab8360a9f9d2990652b93281c14e1d41 /lib | |
parent | 472a2abb7af5067c45db25fb59c17e828af07886 (diff) | |
parent | 6ba912f1c081448cf3d1fa9ada9115aae4594ac4 (diff) |
Merge tag 'kcsan.2023.02.24a' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu
Pull kernel concurrency sanitizer (KCSAN) updates from Paul McKenney:
"This fixes gcc-11 errors for x86_64 KCSAN-enabled kernel builds by
selecting the CONSTRUCTORS Kconfig option"
* tag 'kcsan.2023.02.24a' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu:
kcsan: select CONFIG_CONSTRUCTORS
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Kconfig.kcsan | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/Kconfig.kcsan b/lib/Kconfig.kcsan index 4dedd61e5192..609ddfc73de5 100644 --- a/lib/Kconfig.kcsan +++ b/lib/Kconfig.kcsan @@ -14,6 +14,7 @@ menuconfig KCSAN bool "KCSAN: dynamic data race detector" depends on HAVE_ARCH_KCSAN && HAVE_KCSAN_COMPILER depends on DEBUG_KERNEL && !KASAN + select CONSTRUCTORS select STACKTRACE help The Kernel Concurrency Sanitizer (KCSAN) is a dynamic |