diff options
author | Nicholas Piggin <npiggin@gmail.com> | 2021-01-30 14:08:44 +0100 |
---|---|---|
committer | Michael Ellerman <mpe@ellerman.id.au> | 2021-02-08 14:10:49 +0100 |
commit | 1b1b6a6f4cc0ecc27745fa578cbaf912d76dbdda (patch) | |
tree | 97a1d775ba41dd531f4a237bef7655d4c1821b42 /arch/powerpc/kernel/tau_6xx.c | |
parent | powerpc/64: add context tracking to asynchronous interrupts (diff) | |
download | linux-1b1b6a6f4cc0ecc27745fa578cbaf912d76dbdda.tar.xz linux-1b1b6a6f4cc0ecc27745fa578cbaf912d76dbdda.zip |
powerpc: handle irq_enter/irq_exit in interrupt handler wrappers
Move irq_enter/irq_exit into asynchronous interrupt handler wrappers.
Signed-off-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20210130130852.2952424-35-npiggin@gmail.com
Diffstat (limited to 'arch/powerpc/kernel/tau_6xx.c')
-rw-r--r-- | arch/powerpc/kernel/tau_6xx.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/arch/powerpc/kernel/tau_6xx.c b/arch/powerpc/kernel/tau_6xx.c index 3f300eccc09e..6c31af7f4fa8 100644 --- a/arch/powerpc/kernel/tau_6xx.c +++ b/arch/powerpc/kernel/tau_6xx.c @@ -105,12 +105,9 @@ DEFINE_INTERRUPT_HANDLER_ASYNC(TAUException) { int cpu = smp_processor_id(); - irq_enter(); tau[cpu].interrupts++; TAUupdate(cpu); - - irq_exit(); } #endif /* CONFIG_TAU_INT */ |