mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
ipmi:watchdog: Set panic count to proper value on a panic
commitdb05ddf7f3upstream. You will get two decrements when the messages on a panic are sent, not one, since commit2033f68589("ipmi: Free receive messages when in an oops") was added, but the watchdog code had a bug where it didn't set the value properly. Reported-by: Anton Lundin <glance@acc.umu.se> Cc: <Stable@vger.kernel.org> # v5.4+ Fixes:2033f68589("ipmi: Free receive messages when in an oops") Signed-off-by: Corey Minyard <cminyard@mvista.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
7aa5a495cb
commit
a4932a2c54
@@ -503,7 +503,7 @@ static void panic_halt_ipmi_heartbeat(void)
|
|||||||
msg.cmd = IPMI_WDOG_RESET_TIMER;
|
msg.cmd = IPMI_WDOG_RESET_TIMER;
|
||||||
msg.data = NULL;
|
msg.data = NULL;
|
||||||
msg.data_len = 0;
|
msg.data_len = 0;
|
||||||
atomic_inc(&panic_done_count);
|
atomic_add(2, &panic_done_count);
|
||||||
rv = ipmi_request_supply_msgs(watchdog_user,
|
rv = ipmi_request_supply_msgs(watchdog_user,
|
||||||
(struct ipmi_addr *) &addr,
|
(struct ipmi_addr *) &addr,
|
||||||
0,
|
0,
|
||||||
@@ -513,7 +513,7 @@ static void panic_halt_ipmi_heartbeat(void)
|
|||||||
&panic_halt_heartbeat_recv_msg,
|
&panic_halt_heartbeat_recv_msg,
|
||||||
1);
|
1);
|
||||||
if (rv)
|
if (rv)
|
||||||
atomic_dec(&panic_done_count);
|
atomic_sub(2, &panic_done_count);
|
||||||
}
|
}
|
||||||
|
|
||||||
static struct ipmi_smi_msg panic_halt_smi_msg = {
|
static struct ipmi_smi_msg panic_halt_smi_msg = {
|
||||||
@@ -537,12 +537,12 @@ static void panic_halt_ipmi_set_timeout(void)
|
|||||||
/* Wait for the messages to be free. */
|
/* Wait for the messages to be free. */
|
||||||
while (atomic_read(&panic_done_count) != 0)
|
while (atomic_read(&panic_done_count) != 0)
|
||||||
ipmi_poll_interface(watchdog_user);
|
ipmi_poll_interface(watchdog_user);
|
||||||
atomic_inc(&panic_done_count);
|
atomic_add(2, &panic_done_count);
|
||||||
rv = __ipmi_set_timeout(&panic_halt_smi_msg,
|
rv = __ipmi_set_timeout(&panic_halt_smi_msg,
|
||||||
&panic_halt_recv_msg,
|
&panic_halt_recv_msg,
|
||||||
&send_heartbeat_now);
|
&send_heartbeat_now);
|
||||||
if (rv) {
|
if (rv) {
|
||||||
atomic_dec(&panic_done_count);
|
atomic_sub(2, &panic_done_count);
|
||||||
pr_warn("Unable to extend the watchdog timeout\n");
|
pr_warn("Unable to extend the watchdog timeout\n");
|
||||||
} else {
|
} else {
|
||||||
if (send_heartbeat_now)
|
if (send_heartbeat_now)
|
||||||
|
|||||||
Reference in New Issue
Block a user