The patch titled Subject: hpwdt: use nmi_panic() when kernel panics in NMI handler has been added to the -mm tree. Its filename is hpwdt-use-nmi_panic-when-kernel-panics-in-nmi-handler.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/hpwdt-use-nmi_panic-when-kernel-panics-in-nmi-handler.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/hpwdt-use-nmi_panic-when-kernel-panics-in-nmi-handler.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Hidehiro Kawai <hidehiro.kawai.ez@xxxxxxxxxxx> Subject: hpwdt: use nmi_panic() when kernel panics in NMI handler commit 1717f2096b54 ("panic, x86: Fix re-entrance problem due to panic on NMI") introduced nmi_panic() which prevents concurrent and recursive execution of panic(). It also saves registers for the crash dump on x86 by later commit 58c5661f2144 ("panic, x86: Allow CPUs to save registers even if looping in NMI context"). hpwdt driver can call panic() from NMI handler, so replace it with nmi_panic(). Also, do some cleanups. Signed-off-by: Hidehiro Kawai <hidehiro.kawai.ez@xxxxxxxxxxx> Acked-by: Guenter Roeck <linux@xxxxxxxxxxxx> Cc: Thomas Mingarelli <thomas.mingarelli@xxxxxxx> Cc: Wim Van Sebroeck <wim@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/watchdog/hpwdt.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff -puN drivers/watchdog/hpwdt.c~hpwdt-use-nmi_panic-when-kernel-panics-in-nmi-handler drivers/watchdog/hpwdt.c --- a/drivers/watchdog/hpwdt.c~hpwdt-use-nmi_panic-when-kernel-panics-in-nmi-handler +++ a/drivers/watchdog/hpwdt.c @@ -483,7 +483,7 @@ static int hpwdt_pretimeout(unsigned int static int die_nmi_called; if (!hpwdt_nmi_decoding) - goto out; + return NMI_DONE; spin_lock_irqsave(&rom_lock, rom_pl); if (!die_nmi_called && !is_icru && !is_uefi) @@ -496,11 +496,11 @@ static int hpwdt_pretimeout(unsigned int if (!is_icru && !is_uefi) { if (cmn_regs.u1.ral == 0) { - panic("An NMI occurred, " - "but unable to determine source.\n"); + nmi_panic(regs, "An NMI occurred, but unable to determine source.\n"); + return NMI_HANDLED; } } - panic("An NMI occurred. Depending on your system the reason " + nmi_panic(regs, "An NMI occurred. Depending on your system the reason " "for the NMI is logged in any one of the following " "resources:\n" "1. Integrated Management Log (IML)\n" @@ -508,8 +508,7 @@ static int hpwdt_pretimeout(unsigned int "3. OA Forward Progress Log\n" "4. iLO Event Log"); -out: - return NMI_DONE; + return NMI_HANDLED; } #endif /* CONFIG_HPWDT_NMI_DECODING */ _ Patches currently in -mm which might be from hidehiro.kawai.ez@xxxxxxxxxxx are panic-change-nmi_panic-from-macro-to-function.patch ipmi-watchdog-use-nmi_panic-when-kernel-panics-in-nmi-handler.patch hpwdt-use-nmi_panic-when-kernel-panics-in-nmi-handler.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html