Commit 98552307 authored by Christophe Leroy's avatar Christophe Leroy Committed by Michael Ellerman

powerpc/irq64: Remove get_irq_happened()

No need to open code the read of local_paca->irq_happened in
assembly, we have READ_ONCE() for doing the same.

Replace get_irq_happened() by READ_ONCE(local_paca->irq_happened).
Signed-off-by: default avatarChristophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/af511b53e4eb51f8fbc51eda7f5597175e68dce6.1652859593.git.christophe.leroy@csgroup.eu
parent 7d7b28b3
...@@ -68,16 +68,6 @@ ...@@ -68,16 +68,6 @@
int distribute_irqs = 1; int distribute_irqs = 1;
static inline notrace unsigned long get_irq_happened(void)
{
unsigned long happened;
__asm__ __volatile__("lbz %0,%1(13)"
: "=r" (happened) : "i" (offsetof(struct paca_struct, irq_happened)));
return happened;
}
void replay_soft_interrupts(void) void replay_soft_interrupts(void)
{ {
struct pt_regs regs; struct pt_regs regs;
...@@ -234,7 +224,7 @@ notrace void arch_local_irq_restore(unsigned long mask) ...@@ -234,7 +224,7 @@ notrace void arch_local_irq_restore(unsigned long mask)
return; return;
happened: happened:
irq_happened = get_irq_happened(); irq_happened = READ_ONCE(local_paca->irq_happened);
if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG)) if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))
WARN_ON_ONCE(!irq_happened); WARN_ON_ONCE(!irq_happened);
...@@ -257,7 +247,7 @@ notrace void arch_local_irq_restore(unsigned long mask) ...@@ -257,7 +247,7 @@ notrace void arch_local_irq_restore(unsigned long mask)
* IRQ_HARD_DIS again and warn if it is still * IRQ_HARD_DIS again and warn if it is still
* clear. * clear.
*/ */
irq_happened = get_irq_happened(); irq_happened = READ_ONCE(local_paca->irq_happened);
WARN_ON_ONCE(!(irq_happened & PACA_IRQ_HARD_DIS)); WARN_ON_ONCE(!(irq_happened & PACA_IRQ_HARD_DIS));
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment