Skip to content

Commit 920aea8

Browse files
Added support in Machine config as perf collection data can be set via dynamic profile
Added support in Machine config as perf collection data can be set via dynamic profile Signed-off-by: Praveen K Pandey <[email protected]>
1 parent 0f24a24 commit 920aea8

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

testcases/MachineConfig.py

+14-2
Original file line numberDiff line numberDiff line change
@@ -146,11 +146,11 @@ def callConfig(self, key):
146146
class LparConfig():
147147

148148
'''
149-
pass machine_config in config file indicating proc mode, vtpm and vpmem.
149+
pass machine_config in config file indicating proc mode, vtpm vpmem and perf.
150150
valid values: cpu=shared or cpu=dedicated
151151
vtpm=1 or vtpm=0
152152
vpmem=0 or vpmem=1
153-
Ex: machine_config="cpu=dedicated,vtpm=1,vpmem=1"
153+
Ex: machine_config="cpu=dedicated,vtpm=1,vpmem=1,perf=1"
154154
'''
155155
def __init__(self, cv_HMC=None, system_name= None,
156156
lpar_name=None, lpar_prof=None, machin_config =None, sb_enable=None):
@@ -325,6 +325,18 @@ def LparSetup(self):
325325
ioslot_drc_names = ",".join(ioslot_drc_names[:ioslot_drc_names.index("=")].split(",")[:-1]) \
326326
if "=" in ioslot_drc_names else ioslot_drc_names
327327
self.cv_HMC.add_ioslot(ioslot_drc_names)
328+
329+
if "perf=1" in self.machine_config:
330+
conf = OpTestConfiguration.conf
331+
if self.cv_HMC.is_perfcollection_enabled():
332+
log.info("System is already booted with perf collection profile enabled")
333+
else:
334+
self.cv_HMC.hmc_perfcollect_configure()
335+
if self.cv_HMC.is_perfcollection_enabled:
336+
log.info("System is already booted with perf collection profile enabled")
337+
else:
338+
return "Failed to enable Performance Information collection"
339+
328340

329341
if self.sb_enable is not None :
330342
self.cv_HMC.hmc_secureboot_on_off(self.sb_enable)

0 commit comments

Comments
 (0)