We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7da89a2 commit ab5c780Copy full SHA for ab5c780
arch/sparc/kernel/smp_64.c
@@ -816,13 +816,17 @@ void arch_send_call_function_single_ipi(int cpu)
816
void __irq_entry smp_call_function_client(int irq, struct pt_regs *regs)
817
{
818
clear_softint(1 << irq);
819
+ irq_enter();
820
generic_smp_call_function_interrupt();
821
+ irq_exit();
822
}
823
824
void __irq_entry smp_call_function_single_client(int irq, struct pt_regs *regs)
825
826
827
828
generic_smp_call_function_single_interrupt();
829
830
831
832
static void tsb_sync(void *info)
0 commit comments