Patch "powerpc/64: fix irq replay pt_regs->softe value" has been added to the 5.8-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    powerpc/64: fix irq replay pt_regs->softe value

to the 5.8-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     powerpc-64-fix-irq-replay-pt_regs-softe-value.patch
and it can be found in the queue-5.8 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 770a895ed6a34b541832abd9f68b0d05f0e7a30a
Author: Nicholas Piggin <npiggin@xxxxxxxxx>
Date:   Tue Sep 15 21:46:46 2020 +1000

    powerpc/64: fix irq replay pt_regs->softe value
    
    [ Upstream commit 2b48e96be2f9f7151197fd25dc41487054bc6f5b ]
    
    Replayed interrupts get an "artificial" struct pt_regs constructed to
    pass to interrupt handler functions. This did not get the softe field
    set correctly, it's as though the interrupt has hit while irqs are
    disabled. It should be IRQS_ENABLED.
    
    This is possibly harmless, asynchronous handlers should not be testing
    if irqs were disabled, but it might be possible for example some code
    is shared with synchronous or NMI handlers, and it makes more sense if
    debug output looks at this.
    
    Fixes: 3282a3da25bd ("powerpc/64: Implement soft interrupt replay in C")
    Signed-off-by: Nicholas Piggin <npiggin@xxxxxxxxx>
    Signed-off-by: Michael Ellerman <mpe@xxxxxxxxxxxxxx>
    Link: https://lore.kernel.org/r/20200915114650.3980244-2-npiggin@xxxxxxxxx
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/arch/powerpc/kernel/irq.c b/arch/powerpc/kernel/irq.c
index 297ee79febc6c..3a22281a8264e 100644
--- a/arch/powerpc/kernel/irq.c
+++ b/arch/powerpc/kernel/irq.c
@@ -214,7 +214,7 @@ void replay_soft_interrupts(void)
 	struct pt_regs regs;
 
 	ppc_save_regs(&regs);
-	regs.softe = IRQS_ALL_DISABLED;
+	regs.softe = IRQS_ENABLED;
 
 again:
 	if (IS_ENABLED(CONFIG_PPC_IRQ_SOFT_MASK_DEBUG))



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux