diff options
| author | Corey Swenson <cswenson@us.ibm.com> | 2017-10-23 13:51:43 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-01-25 15:22:21 -0500 |
| commit | afa7087e71fedb6d50b8874231420449834e7d1b (patch) | |
| tree | a7cbf633f6708d240a7c3c976308d92d12e76a73 /src/usr/targeting/runtime | |
| parent | 24d964b78e0248d73c5e66958cd7992404a49533 (diff) | |
| download | blackbird-hostboot-afa7087e71fedb6d50b8874231420449834e7d1b.tar.gz blackbird-hostboot-afa7087e71fedb6d50b8874231420449834e7d1b.zip | |
Cumulus updates and testcase workarounds
Change-Id: I24092ef382fc56b7d3e0aa90a2699ff6cf42d8e7
RTC:180894
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/48703
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Tested-by: Jenkins Server <pfd-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>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/targeting/runtime')
| -rw-r--r-- | src/usr/targeting/runtime/start_rt.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/targeting/runtime/start_rt.C b/src/usr/targeting/runtime/start_rt.C index 7693b93e5..b49d4524b 100644 --- a/src/usr/targeting/runtime/start_rt.C +++ b/src/usr/targeting/runtime/start_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. */ /* */ /* */ @@ -87,7 +87,7 @@ namespace RT_TARG const TARGETING::Target * l_target = *target; TARGETING::Target * l_peer = static_cast<Target*>(NULL); bool l_hasPeer = l_target->tryGetAttr<ATTR_PEER_TARGET>(l_peer); - if (l_hasPeer) + if (l_hasPeer && (l_peer != nullptr)) { TRACDCOMP(g_trac_targeting, "translate peer target for=%p %x", |

