summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/usr/isteps/istep06/host_gard.C49
1 files changed, 24 insertions, 25 deletions
diff --git a/src/usr/isteps/istep06/host_gard.C b/src/usr/isteps/istep06/host_gard.C
index c69a6cdbf..ff323f577 100644
--- a/src/usr/isteps/istep06/host_gard.C
+++ b/src/usr/isteps/istep06/host_gard.C
@@ -118,34 +118,33 @@ void* host_gard( void *io_pArgs )
"collectGard returned error; breaking out");
break;
}
+ }
- if (l_err == NULL)
- {
- // check and see if we still have enough hardware to continue
- l_err = HWAS::checkMinimumHardware();
- if(l_err)
- {
- TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
- ERR_MRK"host_gard: "
- "check minimum hardware returned error; breaking out");
- break;
- }
- }
- // 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);
+ // check and see if we still have enough hardware to continue
+ l_err = HWAS::checkMinimumHardware();
+ if(l_err)
+ {
+ TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,
+ ERR_MRK"host_gard: "
+ "check minimum hardware returned error; breaking out");
+ break;
}
+ // 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);
+
+
// Send message to FSP with HUID of master core
msg_t * core_msg = msg_allocate();
core_msg->type = SBE::MSG_IPL_MASTER_CORE;
OpenPOWER on IntegriCloud