summaryrefslogtreecommitdiffstats
path: root/src/usr/util
diff options
context:
space:
mode:
authorDan Crowell <dcrowell@us.ibm.com>2018-09-25 09:59:19 -0500
committerWilliam G. Hoffa <wghoffa@us.ibm.com>2018-10-01 09:47:45 -0500
commitc33d5206a1af0881bc2f9ff21eed29822b03f8b4 (patch)
treec0dfce15aad97d4f1f6a4389a965d0451d36e553 /src/usr/util
parent69241719be5e2103f1e3405f75fca65646701599 (diff)
downloadtalos-hostboot-c33d5206a1af0881bc2f9ff21eed29822b03f8b4.tar.gz
talos-hostboot-c33d5206a1af0881bc2f9ff21eed29822b03f8b4.zip
Make lid_load failures visible logs
Changing the default severity of lid load error logs to PREDICTIVE so that they are visible for debug. Change-Id: I7e4374d7ef04a1b54c57a666dfd1bc0d47a87bea Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/66604 Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Matt Derksen <mderkse1@us.ibm.com> Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/usr/util')
-rw-r--r--src/usr/util/runtime/utillidmgr_rt.C14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/usr/util/runtime/utillidmgr_rt.C b/src/usr/util/runtime/utillidmgr_rt.C
index 6977d253c..cacad8d70 100644
--- a/src/usr/util/runtime/utillidmgr_rt.C
+++ b/src/usr/util/runtime/utillidmgr_rt.C
@@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
-/* Contributors Listed Below - COPYRIGHT 2013,2017 */
+/* Contributors Listed Below - COPYRIGHT 2013,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
@@ -226,7 +226,7 @@ errlHndl_t UtilLidMgr::loadLid()
if (0 != rc)
{
/*@
- * @errortype ERRL_SEV_INFORMATIONAL
+ * @errortype
* @moduleid Util::UTIL_LIDMGR_RT
* @reasoncode Util::UTIL_LIDMGR_RC_FAIL
* @userdata1 Return code from lid_load call.
@@ -234,7 +234,7 @@ errlHndl_t UtilLidMgr::loadLid()
* @devdesc Unable to load LID via host interface.
*/
l_errl = new ERRORLOG::ErrlEntry(
- ERRORLOG::ERRL_SEV_INFORMATIONAL,
+ ERRORLOG::ERRL_SEV_PREDICTIVE,
Util::UTIL_LIDMGR_RT,
Util::UTIL_LIDMGR_RC_FAIL,
rc,
@@ -248,14 +248,14 @@ errlHndl_t UtilLidMgr::loadLid()
if( iv_lidSize == 0 )
{
/*@
- * @errortype ERRL_SEV_INFORMATIONAL
+ * @errortype
* @moduleid Util::UTIL_LIDMGR_RT
* @reasoncode Util::UTIL_LIDMGR_NOT_FOUND
* @userdata1 Lid number
* @devdesc Unable to find Lid.
*/
l_errl = new ERRORLOG::ErrlEntry(
- ERRORLOG::ERRL_SEV_INFORMATIONAL,
+ ERRORLOG::ERRL_SEV_PREDICTIVE,
Util::UTIL_LIDMGR_RT,
Util::UTIL_LIDMGR_NOT_FOUND,
iv_lidId,
@@ -277,14 +277,14 @@ errlHndl_t UtilLidMgr::cleanup()
if (l_rc)
{
/*@
- * @errortype ERRL_SEV_INFORMATIONAL
+ * @errortype
* @moduleid Util::UTIL_LIDMGR_RT
* @reasoncode Util::UTIL_LIDMGR_UNLOAD_RC_FAIL
* @userdata1 Return code from lid_unload call.
* @devdesc Unable to unload LID via host interface.
*/
l_err = new ERRORLOG::ErrlEntry(
- ERRORLOG::ERRL_SEV_INFORMATIONAL,
+ ERRORLOG::ERRL_SEV_PREDICTIVE,
Util::UTIL_LIDMGR_RT,
Util::UTIL_LIDMGR_UNLOAD_RC_FAIL,
l_rc);
OpenPOWER on IntegriCloud