diff options
author | Bernhard Walle <bwalle@suse.de> | 2008-10-26 10:59:37 -0400 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2008-12-01 10:55:10 -0500 |
commit | 290172e79036fc25a22aaf3da4835ee634886183 (patch) | |
tree | 9cbfb01fdbb4a390b84c1e929e55b38e0cae648a /drivers/watchdog/hpwdt.c | |
parent | 060264133b946786b4b28a1ba79e6725eaf258f3 (diff) |
[WATCHDOG] hpwdt: Fix kdump when using hpwdt
When the "hpwdt" module is loaded (even if the /dev/watchdog device is not
opened), then kdump does not work. The panic kernel either does not start at
all or crash in various places.
The problem is that hpwdt_pretimeout is registered with register_die_notifier()
with the highest possible priority. Because it returns NOTIFY_STOP, the
crash_nmi_callback which is also registered with register_die_notifier()
is never executed. This causes the shutdown of other CPUs to fail.
Reverting the order is no option: The crash_nmi_callback executes HLT
and so never returns normally. Because of that, it must be executed as
last notifier, which currently is done.
So, that patch returns NOTIFY_OK to keep the crash_nmi_callback executed.
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Signed-off-by: Thomas Mingarelli <thomas.mingarelli@hp.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Diffstat (limited to 'drivers/watchdog/hpwdt.c')
-rw-r--r-- | drivers/watchdog/hpwdt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/watchdog/hpwdt.c b/drivers/watchdog/hpwdt.c index f6cff7b5a547..763c1ea5dce5 100644 --- a/drivers/watchdog/hpwdt.c +++ b/drivers/watchdog/hpwdt.c | |||
@@ -485,7 +485,7 @@ static int hpwdt_pretimeout(struct notifier_block *nb, unsigned long ulReason, | |||
485 | "Management Log for details.\n"); | 485 | "Management Log for details.\n"); |
486 | } | 486 | } |
487 | 487 | ||
488 | return NOTIFY_STOP; | 488 | return NOTIFY_OK; |
489 | } | 489 | } |
490 | 490 | ||
491 | /* | 491 | /* |