summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBenjamin Weisenbeck <bweisenb@us.ibm.com>2014-03-10 14:41:19 -0500
committerA. Patrick Williams III <iawillia@us.ibm.com>2014-03-20 14:04:17 -0500
commitf146335272226da8ec3cfc9f40e5ab2c9a5d3fb2 (patch)
tree83b3a376adac567e231bdf7dfb47f4ffcb425f96 /src
parent985801352d77faa4ff23623436183cc2c23d1985 (diff)
downloadtalos-hostboot-f146335272226da8ec3cfc9f40e5ab2c9a5d3fb2.tar.gz
talos-hostboot-f146335272226da8ec3cfc9f40e5ab2c9a5d3fb2.zip
PRD: Use DECONFIG_FULLY for PORE and cores lost to SLW failure
Change-Id: Id911d53d7904a38e021108bff3b9bdd57ac7f610 CQ: SW250594 Backport: release-fips810 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/9456 Reviewed-by: Christopher T. Phan <cphan@us.ibm.com> Reviewed-by: BENJAMIN J. WEISENBECK <bweisenb@us.ibm.com> Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com> Reviewed-by: Zane Shelley <zshelle@us.ibm.com> Tested-by: Jenkins Server Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/9758
Diffstat (limited to 'src')
-rw-r--r--src/usr/diag/prdf/common/framework/service/prdfRasServices_common.C7
-rw-r--r--src/usr/diag/prdf/prdfGlobal.H2
2 files changed, 6 insertions, 3 deletions
diff --git a/src/usr/diag/prdf/common/framework/service/prdfRasServices_common.C b/src/usr/diag/prdf/common/framework/service/prdfRasServices_common.C
index 2bcbb4c1b..1a0aa30ff 100644
--- a/src/usr/diag/prdf/common/framework/service/prdfRasServices_common.C
+++ b/src/usr/diag/prdf/common/framework/service/prdfRasServices_common.C
@@ -849,7 +849,9 @@ errlHndl_t ErrDataService::GenerateSrcPfa( ATTENTION_TYPE i_attnType,
if (centaurHandle)
{
- int32_t l_rc = PRDF_RUNTIME_DECONFIG(centaurHandle, o_errl);
+ int32_t l_rc = PRDF_RUNTIME_DECONFIG(centaurHandle,
+ o_errl,
+ false);
if ( SUCCESS != l_rc )
{
PRDF_ERR( PRDF_FUNC"runtime deconfig failed 0x%08x",
@@ -860,7 +862,8 @@ errlHndl_t ErrDataService::GenerateSrcPfa( ATTENTION_TYPE i_attnType,
}
else
{
- int32_t l_rc = PRDF_RUNTIME_DECONFIG( dumpTrgt, o_errl );
+ int32_t l_rc = PRDF_RUNTIME_DECONFIG( dumpTrgt, o_errl,
+ true);
if ( SUCCESS == l_rc )
{
// Call Dump for Proc Core CS
diff --git a/src/usr/diag/prdf/prdfGlobal.H b/src/usr/diag/prdf/prdfGlobal.H
index f8b85a27e..33203931a 100644
--- a/src/usr/diag/prdf/prdfGlobal.H
+++ b/src/usr/diag/prdf/prdfGlobal.H
@@ -74,7 +74,7 @@
*/
// FIXME:RTC: 65609 will address this issue.
// need to implement in Hostboot
-#define PRDF_RUNTIME_DECONFIG( i_pTarget, i_errl ) \
+#define PRDF_RUNTIME_DECONFIG( i_pTarget, i_errl, i_dmp ) \
SUCCESS
/**
OpenPOWER on IntegriCloud