]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
powerpc/interrupt: Also use exit_must_hard_disable() on PPC32
authorChristophe Leroy <christophe.leroy@csgroup.eu>
Fri, 25 Jun 2021 14:31:46 +0000 (14:31 +0000)
committerMichael Ellerman <mpe@ellerman.id.au>
Fri, 25 Jun 2021 23:43:34 +0000 (09:43 +1000)
Reduce #ifdefs a bit by making exit_must_hard_disable() return
true on PPC32.

Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/52531029563c1fc823b790058e799d0ca71b028c.1624631463.git.christophe.leroy@csgroup.eu
arch/powerpc/kernel/interrupt.c

index cee12f2fd4595d704f55a4946a202aa9a565dcaa..1b4a99ecb7e5669cb1de43b819f1fa46d808bb07 100644 (file)
@@ -33,10 +33,10 @@ static inline bool exit_must_hard_disable(void)
 {
        return static_branch_unlikely(&interrupt_exit_not_reentrant);
 }
-#elif defined(CONFIG_PPC64)
+#else
 static inline bool exit_must_hard_disable(void)
 {
-       return false;
+       return IS_ENABLED(CONFIG_PPC32);
 }
 #endif
 
@@ -56,12 +56,10 @@ static notrace __always_inline bool prep_irq_for_enabled_exit(bool restartable)
        /* This must be done with RI=1 because tracing may touch vmaps */
        trace_hardirqs_on();
 
-#ifdef CONFIG_PPC32
-       __hard_EE_RI_disable();
-#else
        if (exit_must_hard_disable() || !restartable)
                __hard_EE_RI_disable();
 
+#ifdef CONFIG_PPC64
        /* This pattern matches prep_irq_for_idle */
        if (unlikely(lazy_irq_pending_nocheck())) {
                if (exit_must_hard_disable() || !restartable) {