Skip to content

Commit

Permalink
OCC reset happening on OpenPower systems with more than 2 processors
Browse files Browse the repository at this point in the history
Change-Id: I12525b5d9fdf983a3e1eb2b05476c7c2defe23a3
CQ:SW437692
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/65715
Reviewed-by: Christopher J. Cain <cjcain@us.ibm.com>
Reviewed-by: Martha Broyles <mbroyles@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: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
baileysh authored and dcrowell77 committed Sep 26, 2018
1 parent 09f379b commit 2efcf21
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions src/usr/htmgt/htmgt_occ.C
Original file line number Diff line number Diff line change
Expand Up @@ -559,19 +559,21 @@ namespace HTMGT
}
}

if (nullptr != iv_occMaster)
} // for each processor

if (nullptr != iv_occMaster)
{
// update master occsPresent bit for each slave OCC
for( const auto & occ : iv_occArray )
{
// update master occsPresent bit for each slave OCC
for( const auto & occ : iv_occArray )
if(occ != iv_occMaster)
{
if(occ != iv_occMaster)
{
iv_occMaster->
updateOccPresentBits(occ->getPresentBits());
}
iv_occMaster->
updateOccPresentBits(occ->getPresentBits());
}
}
} // for each processor
}

}
else
{
Expand Down

0 comments on commit 2efcf21

Please sign in to comment.