Skip to content

Commit

Permalink
Enable WOF_VRATIO on ZZ
Browse files Browse the repository at this point in the history
Forcing a couple attribute values on ZZ to enable more WOF
support.
ATTR_WOF_ENABLE_VRATIO = CALCULATED
ATTR_WOF_VRATIO_SELECT = ACTIVE_CORES

Change-Id: Id6ce442e92b4daf7cb948e1c1b4823b9a3870410
CQ: SW419992
CMVC-Prereq: 1047360
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/55148
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: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
dcrowell77 committed Mar 8, 2018
1 parent 2ae2bff commit 4f43040
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/usr/targeting/common/genHwsvMrwXml.pl
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,31 @@
}


# Handle the new name when it shows up in the xml
# otherwise force the value
if ( exists $reqPol->{'wof_enable_vratio'} )
{
push @systemAttr, ['WOF_ENABLE_VRATIO',
$reqPol->{'wof_enable_vratio'}];
}
else
{
push @systemAttr, ['WOF_ENABLE_VRATIO', 'CALCULATED'];
}

# Handle the new name when it shows up in the xml
# otherwise force the value
if ( exists $reqPol->{'wof_vratio_select'} )
{
push @systemAttr, ['WOF_VRATIO_SELECT',
$reqPol->{'wof_vratio_select'}];
}
else
{
push @systemAttr, ['WOF_VRATIO_SELECT', 'ACTIVE_CORES'];
}


my $nestFreq = $reqPol->{'proc_pb_frequency'}->{content};


Expand Down

0 comments on commit 4f43040

Please sign in to comment.