diff options
author | 2021-11-05 16:43:12 +0100 | |
---|---|---|
committer | 2025-06-10 08:42:52 -0600 | |
commit | 4b1e412d0f85dea2c92e359d47c72a42c6f5ca65 (patch) | |
tree | 165e5ab750044346560472eedc63d5a7c1ded1c1 | |
parent | thermal: don't shut off system when melting (diff) | |
download | laptop-kernel-4b1e412d0f85dea2c92e359d47c72a42c6f5ca65.tar.xz laptop-kernel-4b1e412d0f85dea2c92e359d47c72a42c6f5ca65.zip |
x86/split_lock: turn off by default
I don't want the log spam.
Signed-off-by: Jason A. Donenfeld <Jason@zx2c4.com>
-rw-r--r-- | arch/x86/kernel/cpu/bus_lock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpu/bus_lock.c b/arch/x86/kernel/cpu/bus_lock.c index 237faf7e700c..c3691b5d9e98 100644 --- a/arch/x86/kernel/cpu/bus_lock.c +++ b/arch/x86/kernel/cpu/bus_lock.c @@ -109,7 +109,7 @@ static bool split_lock_verify_msr(bool on) static void __init sld_state_setup(void) { - enum split_lock_detect_state state = sld_warn; + enum split_lock_detect_state state = sld_off; char arg[20]; int i, ret; |