summaryrefslogtreecommitdiffstats
path: root/src/usr/isteps/istep16
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/isteps/istep16')
-rw-r--r--src/usr/isteps/istep16/call_host_activate_master.C12
-rw-r--r--src/usr/isteps/istep16/call_host_activate_slave_cores.C16
2 files changed, 14 insertions, 14 deletions
diff --git a/src/usr/isteps/istep16/call_host_activate_master.C b/src/usr/isteps/istep16/call_host_activate_master.C
index 64dd4d71e..2050cf163 100644
--- a/src/usr/isteps/istep16/call_host_activate_master.C
+++ b/src/usr/isteps/istep16/call_host_activate_master.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2015 */
+/* Contributors Listed Below - COPYRIGHT 2015,2016 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -224,18 +224,18 @@ void* call_host_activate_master (void *io_pArgs)
l_rc );
/*@
* @errortype
- * @reasoncode ISTEP_FAIL_MASTER_WINKLE_RC
+ * @reasoncode RC_FAIL_MASTER_WINKLE
* @severity ERRORLOG::ERRL_SEV_UNRECOVERABLE
- * @moduleid ISTEP_HOST_ACTIVATE_MASTER
+ * @moduleid MOD_HOST_ACTIVATE_MASTER
* @userdata1 return code from cpu_master_winkle
* @userdata2 Fused core indicator
*
- * @devdesc cpu_master_winkle returned an error
+ * @devdesc cpu_master_winkle returned an error
*/
l_errl =
new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
- ISTEP_HOST_ACTIVATE_MASTER,
- ISTEP_FAIL_MASTER_WINKLE_RC,
+ MOD_HOST_ACTIVATE_MASTER,
+ RC_FAIL_MASTER_WINKLE,
l_rc, l_fusedCores );
break;
}
diff --git a/src/usr/isteps/istep16/call_host_activate_slave_cores.C b/src/usr/isteps/istep16/call_host_activate_slave_cores.C
index ebb51482c..b7018a86f 100644
--- a/src/usr/isteps/istep16/call_host_activate_slave_cores.C
+++ b/src/usr/isteps/istep16/call_host_activate_slave_cores.C
@@ -165,9 +165,9 @@ void* call_host_activate_slave_cores (void *io_pArgs)
pir);
/*@
* @errortype
- * @reasoncode ISTEP_BAD_RC
+ * @reasoncode RC_BAD_RC
* @severity ERRORLOG::ERRL_SEV_UNRECOVERABLE
- * @moduleid ISTEP_HOST_ACTIVATE_SLAVE_CORES
+ * @moduleid MOD_HOST_ACTIVATE_SLAVE_CORES
* @userdata1 PIR of failing core.
* @userdata2 rc of cpu_start_core().
*
@@ -177,8 +177,8 @@ void* call_host_activate_slave_cores (void *io_pArgs)
errlHndl_t l_errl =
new ERRORLOG::ErrlEntry(
ERRORLOG::ERRL_SEV_UNRECOVERABLE,
- ISTEP_HOST_ACTIVATE_SLAVE_CORES,
- ISTEP_BAD_RC,
+ MOD_HOST_ACTIVATE_SLAVE_CORES,
+ RC_BAD_RC,
pir,
rc );
@@ -237,9 +237,9 @@ void* call_host_activate_slave_cores (void *io_pArgs)
"returned %d instead of 1", targetList.size() );
/*@
* @errortype
- * @reasoncode ISTEP_INCORRECT_TARGET_COUNT
+ * @reasoncode RC_INCORRECT_TARGET_COUNT
* @severity ERRORLOG::ERRL_SEV_UNRECOVERABLE
- * @moduleid ISTEP_HOST_ACTIVATE_SLAVE_CORES
+ * @moduleid MOD_HOST_ACTIVATE_SLAVE_CORES
* @userdata1 PIR of failing core.
* @userdata2 number of targets returned
*
@@ -253,8 +253,8 @@ void* call_host_activate_slave_cores (void *io_pArgs)
*/
l_errl =
new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
- ISTEP_HOST_ACTIVATE_SLAVE_CORES,
- ISTEP_INCORRECT_TARGET_COUNT,
+ MOD_HOST_ACTIVATE_SLAVE_CORES,
+ RC_INCORRECT_TARGET_COUNT,
pir,
targetList.size(), true);
// Create IStep error log and cross ref error that occurred
OpenPOWER on IntegriCloud