From 08db2d6a3a0bafa6d76a0f281541a6aa2b4d2156 Mon Sep 17 00:00:00 2001 From: Roland Veloz Date: Fri, 9 Aug 2019 14:02:48 -0500 Subject: [PATCH] Increased the BMC timeout from 5 seconds to 30 seconds On a zaius machine, the BMC was consistently hitting a checkstop with the system shutting down with error status 0x613 following istep 13.11 - mss_draminit_training. The theory was that it was hitting a timeout issue. Increasing the timeout from 5 seconds to 30 seconds abated the situation. It does appear that it was timeout issue. Change-Id: I825f461855b2a4a70c732f0dda308b2579d60a7d CQ:SW466685 Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/82034 Reviewed-by: Glenn Miles Reviewed-by: Matt Derksen Tested-by: Jenkins Server Tested-by: Jenkins OP Build CI Tested-by: Jenkins OP HW Tested-by: FSP CI Jenkins Reviewed-by: Daniel M Crowell --- src/usr/ipmibase/ipmiconfig.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/usr/ipmibase/ipmiconfig.C b/src/usr/ipmibase/ipmiconfig.C index 269ae00b23d..278f21028e6 100644 --- a/src/usr/ipmibase/ipmiconfig.C +++ b/src/usr/ipmibase/ipmiconfig.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2014,2018 */ +/* Contributors Listed Below - COPYRIGHT 2014,2019 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -30,7 +30,7 @@ // Information contained in the Get Interface Capabilities command // // Request to response time default, in seconds -const uint8_t IPMI::g_bmc_timeout = 5; +const uint8_t IPMI::g_bmc_timeout = 30; // Number of allowed outstanding requests default const uint8_t IPMI::g_outstanding_req = 0x01;