diff options
author | Stephen Cprek <smcprek@us.ibm.com> | 2014-08-19 14:03:18 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-08-22 13:50:55 -0500 |
commit | 072c84bc61fb5df6da5986e9ed7b136e01d6ab05 (patch) | |
tree | 2e2f962fc69d8f5dc572481c17303dbc7ead3fed /src | |
parent | f43f2f5ef9db94c2a565adc913aca02c52459d42 (diff) | |
download | blackbird-hostboot-072c84bc61fb5df6da5986e9ed7b136e01d6ab05.tar.gz blackbird-hostboot-072c84bc61fb5df6da5986e9ed7b136e01d6ab05.zip |
Deconfig peer when PSI goes down
Change-Id: I41f8cd803a7c27061fb36924d94468b52f9c1dbb
CQ: SW273968
Backport: release-fips820
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/12932
Tested-by: Jenkins Server
Reviewed-by: Brian H. Horton <brianh@linux.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/usr/hwas/common/deconfigGard.C | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/usr/hwas/common/deconfigGard.C b/src/usr/hwas/common/deconfigGard.C index 1af581bef..c9bf12246 100644 --- a/src/usr/hwas/common/deconfigGard.C +++ b/src/usr/hwas/common/deconfigGard.C @@ -1039,7 +1039,7 @@ void DeconfigGard::_deconfigureByAssoc( _deconfigureByAssoc(*pChild, i_errlEid, i_runTimeDeconfigRule); } // for CHILD_BY_AFFINITY - // Handles bus endpoint (TYPE_XBUS, TYPE_ABUS) and + // Handles bus endpoint (TYPE_XBUS, TYPE_ABUS, TYPE_PSI) and // memory (TYPE_MEMBUF, TYPE_MBA, TYPE_DIMM) // deconfigureByAssociation rules switch (i_target.getAttr<ATTR_TYPE>()) @@ -1299,6 +1299,7 @@ void DeconfigGard::_deconfigureByAssoc( // If target is a bus endpoint, deconfigure its peer case TYPE_XBUS: case TYPE_ABUS: + case TYPE_PSI: { // Get peer endpoint target const Target * l_pDstTarget = i_target. |