Skip to content

Commit

Permalink
MDIA: Cut mdia patterns from 9 to 4
Browse files Browse the repository at this point in the history
Change-Id: I123bfb91b7a25364fd00c7902d2c50e537011efa
CQ: SW418730
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/54801
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: Benjamin J. Weisenbeck <bweisenb@us.ibm.com>
Reviewed-by: Brian J. Stegmiller <bjs@us.ibm.com>
Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
  • Loading branch information
cnpalmer authored and zane131 committed Mar 9, 2018
1 parent f5d2c87 commit 83933be
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/usr/diag/mdia/mdiamba.C
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2012,2017 */
/* Contributors Listed Below - COPYRIGHT 2012,2018 */
/* [+] International Business Machines Corp. */
/* */
/* */
Expand Down Expand Up @@ -126,12 +126,15 @@ errlHndl_t getDiagnosticMode(

// Only need to check hw changed state attributes
// when not already set to exhaustive and not in simics
if(( NINE_PATTERNS != o_mode ) &&
( ! i_globals.simicsRunning ))
if( ( NINE_PATTERNS != o_mode ) &&
( FOUR_PATTERNS != o_mode ) &&
( ! i_globals.simicsRunning ) )
{
if(isHWStateChanged(i_trgt))
{
o_mode = NINE_PATTERNS;
// To reduce IPL times without broadcast mode, we will just run
// 4 patterns instead of 9.
o_mode = FOUR_PATTERNS;
}
}

Expand Down

0 comments on commit 83933be

Please sign in to comment.