powerpc/xmon: Reset RCU and soft lockup watchdogs
authorAnton Blanchard <anton@ozlabs.org>
Tue, 30 Jun 2020 00:02:18 +0000 (10:02 +1000)
committerMichael Ellerman <mpe@ellerman.id.au>
Wed, 15 Jul 2020 01:07:12 +0000 (11:07 +1000)
I'm seeing RCU warnings when exiting xmon. xmon resets the NMI
watchdog, but does nothing with the RCU stall or soft lockup
watchdogs. Add a helper function that handles all three.

Signed-off-by: Anton Blanchard <anton@ozlabs.org>
Acked-by: Nicholas Piggin <npiggin@gmail.com>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://lore.kernel.org/r/20200630100218.62a3c3fb@kryten.localdomain
arch/powerpc/xmon/xmon.c

index 7efe4bc3ccf635ba8860be588eb4ee72259717b4..d27944e38b044ba7f363dca7dca51668fa586cdc 100644 (file)
@@ -481,6 +481,13 @@ static inline int unrecoverable_excp(struct pt_regs *regs)
 #endif
 }
 
+static void xmon_touch_watchdogs(void)
+{
+       touch_softlockup_watchdog_sync();
+       rcu_cpu_stall_reset();
+       touch_nmi_watchdog();
+}
+
 static int xmon_core(struct pt_regs *regs, int fromipi)
 {
        int cmd = 0;
@@ -718,7 +725,7 @@ static int xmon_core(struct pt_regs *regs, int fromipi)
        else
                insert_cpu_bpts();
 
-       touch_nmi_watchdog();
+       xmon_touch_watchdogs();
        local_irq_restore(flags);
 
        return cmd != 'X' && cmd != EOF;