Skip to content

Commit

Permalink
Get ring override failing
Browse files Browse the repository at this point in the history
Get ring override is an optional code path but it halts the boot
process when it returns a failure. Optional code path should still
continue the boot process as normal even on a failure. Error
logs should still continue as normal.

Change-Id: I869e7bcaee5993b601af1e63273f597e1310fbfd
CQ: SW455865
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/74978
Reviewed-by: Ilya Smirnov <ismirno@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Michael Baiocchi <mbaiocch@us.ibm.com>
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
  • Loading branch information
chenduibm authored and Nicholas E. Bofferding committed Apr 3, 2019
1 parent 215eaa2 commit 5da79e1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/usr/isteps/pm/pm_common.C
Original file line number Diff line number Diff line change
Expand Up @@ -338,11 +338,12 @@ namespace HBPM
// include it in if so
void* l_ringOverrides = nullptr;
l_errl = HBPM::getRingOvd(l_ringOverrides);
if(l_errl)
if (l_errl)
{
TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
ERR_MRK"loadHcode(): Error in call to getRingOvd!");
break;
l_errl->setSev(ERRORLOG::ERRL_SEV_INFORMATIONAL);
errlCommit(l_errl, ISTEP_COMP_ID);
}

FAPI_INVOKE_HWP( l_errl,
Expand Down

0 comments on commit 5da79e1

Please sign in to comment.