Skip to content

Commit 91b6c5d

Browse files
chleroympe
authored andcommitted
powerpc/syscall: Force inlining of __prep_irq_for_enabled_exit()
As reported by kernel test robot, a randconfig with high amount of debuging options can lead to build failure for undefined reference to replay_soft_interrupts() on ppc32. This is due to gcc not seeing that __prep_irq_for_enabled_exit() always returns true on ppc32 because it doesn't inline it for some reason. Force inlining of __prep_irq_for_enabled_exit() to fix the build. Fixes: 344bb20 ("powerpc/syscall: Make interrupt.c buildable on PPC32") Reported-by: kernel test robot <lkp@intel.com> Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu> Acked-by: Nicholas Piggin <npiggin@gmail.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au> Link: https://lore.kernel.org/r/53f3a1f719441761000c41154602bf097d4350b5.1614148356.git.christophe.leroy@csgroup.eu
1 parent c119565 commit 91b6c5d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

arch/powerpc/kernel/interrupt.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ notrace long system_call_exception(long r3, long r4, long r5,
149149
* enabled when the interrupt handler returns (indicating a process-context /
150150
* synchronous interrupt) then irqs_enabled should be true.
151151
*/
152-
static notrace inline bool __prep_irq_for_enabled_exit(bool clear_ri)
152+
static notrace __always_inline bool __prep_irq_for_enabled_exit(bool clear_ri)
153153
{
154154
/* This must be done with RI=1 because tracing may touch vmaps */
155155
trace_hardirqs_on();

0 commit comments

Comments
 (0)