summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2026-02-10 13:21:11 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2026-02-10 13:21:11 -0800
commita4d963b9d6eead4cbd4b702832acf2921189a692 (patch)
tree416ac521ff9f1313d0f4dfe6fa7134d5abac3d83
parentb490d2a83f5daf0c2c928a3efa865bae8e705cf8 (diff)
parentac059ae422d7d05ed9d62970a30fa3b95870b967 (diff)
Merge tag 'x86-platform-2026-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull x86 platform update from Ingo MolnarL - x86/hyperv: Fix smp_ops build failure on UP kernels (Ingo Molnar) * tag 'x86-platform-2026-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: x86/hyperv: Fix smp_ops build failure on UP kernels
-rw-r--r--arch/x86/hyperv/hv_crash.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/x86/hyperv/hv_crash.c b/arch/x86/hyperv/hv_crash.c
index c0e22921ace1..a78e4fed5720 100644
--- a/arch/x86/hyperv/hv_crash.c
+++ b/arch/x86/hyperv/hv_crash.c
@@ -628,7 +628,9 @@ void hv_root_crash_init(void)
if (rc)
goto err_out;
+#ifdef CONFIG_SMP
smp_ops.crash_stop_other_cpus = hv_crash_stop_other_cpus;
+#endif
crash_kexec_post_notifiers = true;
hv_crash_enabled = true;