summaryrefslogtreecommitdiffstats
path: root/src/usr/isteps/istep16
diff options
context:
space:
mode:
authorcrgeddes <crgeddes@us.ibm.com>2016-03-09 10:11:09 -0600
committerDaniel M. Crowell <dcrowell@us.ibm.com>2016-03-10 17:44:36 -0500
commitd4413a6caff31f9c087a57a1087873342f7b2122 (patch)
tree2d7bf5842f54482099961e54fec908e943645920 /src/usr/isteps/istep16
parent900f4c3bbc52d4500035d19197578a98b8f9cc98 (diff)
downloadtalos-hostboot-d4413a6caff31f9c087a57a1087873342f7b2122.tar.gz
talos-hostboot-d4413a6caff31f9c087a57a1087873342f7b2122.zip
Update FAPI Reasoncodes and remove HWPF Reasoncodes
Change-Id: I7405fa4480213cec2290ef4e64dc9152bfc7ae1f Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/21851 Tested-by: Jenkins Server Reviewed-by: William H. Schwartz <whs@us.ibm.com> Tested-by: FSP CI Jenkins Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
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