diff options
author | Elliott Dahle <dedahle@us.ibm.com> | 2014-02-11 14:49:12 -0600 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-02-13 07:11:10 -0600 |
commit | 687a1bdbfd44240913052da42e0d5d8c4ba31509 (patch) | |
tree | d7f30d7a6004305341bcb06ea2c79a7097dec9f4 /src/usr/hwas | |
parent | e493d67545aa1bcb1ef5418212609aea8ddc9f9b (diff) | |
download | talos-hostboot-687a1bdbfd44240913052da42e0d5d8c4ba31509.tar.gz talos-hostboot-687a1bdbfd44240913052da42e0d5d8c4ba31509.zip |
IPL: B181BA59 - HB TI occurred on b11a with b0206a_1407.810
Change-Id: Ib47e403b3cea82a557aed026d76ff3ba9769a19f
CQ:SW245909
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/8778
Reviewed-by: Andrew J. Geissler <andrewg@us.ibm.com>
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwas')
-rw-r--r-- | src/usr/hwas/hostbootIstep.C | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/src/usr/hwas/hostbootIstep.C b/src/usr/hwas/hostbootIstep.C index 34c3e040b..c7b5bff79 100644 --- a/src/usr/hwas/hostbootIstep.C +++ b/src/usr/hwas/hostbootIstep.C @@ -5,7 +5,7 @@ /* */ /* IBM CONFIDENTIAL */ /* */ -/* COPYRIGHT International Business Machines Corp. 2012,2013 */ +/* COPYRIGHT International Business Machines Corp. 2012,2014 */ /* */ /* p1 */ /* */ @@ -215,6 +215,18 @@ void* host_gard( void *io_pArgs ) errl = checkMinimumHardware(); } } + // If targets are deconfigured as a result of host_gard, they are + // done so using the PLID as the reason for deconfiguration. This + // triggers the reconfigure loop attribute to be set, which causes + // undesirable behavior, so we need to reset it here: + + // Read current value + TARGETING::ATTR_RECONFIGURE_LOOP_type l_reconfigAttr = + l_pTopLevel->getAttr<TARGETING::ATTR_RECONFIGURE_LOOP>(); + // Turn off deconfigure bit + l_reconfigAttr &= ~TARGETING::RECONFIGURE_LOOP_DECONFIGURE; + // Write back to attribute + l_pTopLevel->setAttr<TARGETING::ATTR_RECONFIGURE_LOOP>(l_reconfigAttr); } TRACDCOMP( ISTEPS_TRACE::g_trac_isteps_trace, "host_gard exit" ); |