Artem Senichev | 67355a8 | 2018-03-16 12:35:51 +0300 | [diff] [blame] | 1 | From a4259b9799ebb0f31223d52def871f4851217315 Mon Sep 17 00:00:00 2001 |
| 2 | From: Artem Senichev <a.senichev@yadro.com> |
| 3 | Date: Tue, 13 Mar 2018 14:50:56 +0300 |
| 4 | Subject: [PATCH] Increase default watchdog timeout to 300 seconds |
| 5 | |
| 6 | We need more than 2 minutes to go through some IPL, for instance |
| 7 | step "13.10 mss_draminit_trainadv" tooks 215 seconds to initialize 8 TiB RAM. |
| 8 | |
| 9 | Signed-off-by: Artem Senichev <a.senichev@yadro.com> |
| 10 | --- |
| 11 | src/include/usr/ipmi/ipmiwatchdog.H | 2 +- |
| 12 | 1 file changed, 1 insertion(+), 1 deletion(-) |
| 13 | |
| 14 | diff --git a/src/include/usr/ipmi/ipmiwatchdog.H b/src/include/usr/ipmi/ipmiwatchdog.H |
| 15 | index d730e6bc4..37f73624b 100644 |
| 16 | --- a/src/include/usr/ipmi/ipmiwatchdog.H |
| 17 | +++ b/src/include/usr/ipmi/ipmiwatchdog.H |
| 18 | @@ -58,7 +58,7 @@ namespace IPMIWATCHDOG |
| 19 | #ifdef CONFIG_BMC_IPMI_LONG_WATCHDOG |
| 20 | const uint16_t DEFAULT_WATCHDOG_COUNTDOWN = 2400; |
| 21 | #else |
| 22 | -const uint16_t DEFAULT_WATCHDOG_COUNTDOWN = 120; |
| 23 | +const uint16_t DEFAULT_WATCHDOG_COUNTDOWN = 300; |
| 24 | #endif |
| 25 | |
| 26 | /** |
| 27 | -- |
| 28 | 2.14.1 |
| 29 | |