@@ -146,11 +146,11 @@ def callConfig(self, key):
146
146
class LparConfig ():
147
147
148
148
'''
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 .
150
150
valid values: cpu=shared or cpu=dedicated
151
151
vtpm=1 or vtpm=0
152
152
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 "
154
154
'''
155
155
def __init__ (self , cv_HMC = None , system_name = None ,
156
156
lpar_name = None , lpar_prof = None , machin_config = None , sb_enable = None ):
@@ -325,6 +325,18 @@ def LparSetup(self):
325
325
ioslot_drc_names = "," .join (ioslot_drc_names [:ioslot_drc_names .index ("=" )].split ("," )[:- 1 ]) \
326
326
if "=" in ioslot_drc_names else ioslot_drc_names
327
327
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
+
328
340
329
341
if self .sb_enable is not None :
330
342
self .cv_HMC .hmc_secureboot_on_off (self .sb_enable )
0 commit comments