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 b51182e commit ca9811bCopy full SHA for ca9811b
arch/sparc/kernel/smp_64.c
@@ -823,13 +823,17 @@ void arch_send_call_function_single_ipi(int cpu)
823
void __irq_entry smp_call_function_client(int irq, struct pt_regs *regs)
824
{
825
clear_softint(1 << irq);
826
+ irq_enter();
827
generic_smp_call_function_interrupt();
828
+ irq_exit();
829
}
830
831
void __irq_entry smp_call_function_single_client(int irq, struct pt_regs *regs)
832
833
834
835
generic_smp_call_function_single_interrupt();
836
837
838
839
static void tsb_sync(void *info)
0 commit comments