]> xenbits.xensource.com Git - people/andrewcoop/xen.git/commitdiff
x86/smp: perform disabling on interrupts ahead of AP shutdown
authorRoger Pau Monné <roger.pau@citrix.com>
Mon, 17 Feb 2025 12:32:40 +0000 (13:32 +0100)
committerJan Beulich <jbeulich@suse.com>
Mon, 17 Feb 2025 12:32:40 +0000 (13:32 +0100)
Move the disabling of interrupt sources so it's done ahead of the offlining
of APs.  This is to prevent AMD systems triggering "Receive accept error"
when interrupts target CPUs that are no longer online.

Signed-off-by: Roger Pau Monné <roger.pau@citrix.com>
Reviewed-by: Jan Beulich <jbeulich@suse.com>
master commit: db6daa9bf411260d2c1f5301e4fc786ae4a5cef8
master date: 2025-02-12 15:56:07 +0100

xen/arch/x86/smp.c

index ed67eff8db025958be7499d4990952d01bdfd9d1..bf095ea6c66a590d91fb4a6f8a142b60d40a0c98 100644 (file)
@@ -372,6 +372,8 @@ void smp_send_stop(void)
         smp_call_function(stop_this_cpu, &stop_aps, 0);
 
     local_irq_disable();
+    disable_IO_APIC();
+    hpet_disable();
 
     if ( num_online_cpus() > 1 )
     {
@@ -387,8 +389,6 @@ void smp_send_stop(void)
 
     if ( cpu_online(cpu) )
     {
-        disable_IO_APIC();
-        hpet_disable();
         __stop_this_cpu();
         x2apic_enabled = (current_local_apic_mode() == APIC_MODE_X2APIC);
     }