Skip to content

Commit c2742ba

Browse files
authored
MachineConfig.py: Optimised ioenlarge capacity to reuse api's
Removed duplicate API's in both common and machineconf file and simplified to make use of bmc.rest_api to call configured_enlarge_io()
1 parent ad3cf04 commit c2742ba

File tree

1 file changed

+4
-36
lines changed

1 file changed

+4
-36
lines changed

testcases/MachineConfig.py

+4-36
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
from common import OpTestASM
3737
from common import OpTestHMC
3838
from common import OpTestInstallUtil
39-
from common.OpTestEBMC import EBMCHostManagement
4039
from common.OpTestUtil import OpTestUtil
4140
from common.OpTestSystem import OpSystemState
4241

@@ -441,6 +440,8 @@ def LparSetup(self, lpar_config=""):
441440
return "Failed to enable Performance Information collection"
442441

443442
self.cv_HMC.poweron_lpar()
443+
time.sleep(60)
444+
self.cv_SYSTEM.console.close()
444445
curr_proc_mode = self.cv_HMC.get_proc_mode()
445446
if proc_mode:
446447
if proc_mode in curr_proc_mode:
@@ -494,8 +495,6 @@ def __init__(self, cv_HMC=None, system_name=None,
494495
self.config = OpTestConfiguration.conf
495496
self.bmc_type = bmc_type
496497
self.bmc = bmc
497-
if self.bmc_type == "FSP_PHYP" and iocapacity is not None:
498-
self.bmc.cv_ASM.configure_enlarged_io(iocapacity)
499498

500499
def CecSetup(self):
501500

@@ -508,7 +507,7 @@ def CecSetup(self):
508507
self.hugepage_16gb_setup()
509508
if self.cec_dict['iocapacity'] is not None:
510509
if bmc_type == "EBMC_PHYP":
511-
self.io_enlarge_cpacity()
510+
self.bmc.rest_api.configure_enlarged_io(self.iocapacity)
512511
elif bmc_type == "FSP_PHYP":
513512
self.cv_ASM.configure_enlarged_io(self.iocapacity)
514513
if self.setup:
@@ -540,7 +539,7 @@ def ValidateCEC_Setup(self):
540539
if self.bmc_type == "FSP_PHYP":
541540
self.bmc.cv_ASM.configure_enlarged_io(self.iocapacity)
542541
else:
543-
self.io_enlarge_capacity()
542+
self.bmc.rest_api.configure_enlarged_io(self.iocapacity)
544543

545544
def lmb_setup(self):
546545
# Configure the lmb as per user request
@@ -558,37 +557,6 @@ def setting_16gb_hugepage_profile(self):
558557
int(self.current_hgpg[0]))
559558
self.cv_HMC.set_lpar_cfg(attrs)
560559

561-
def io_enlarge_capacity(self):
562-
"""
563-
Calling set IO Enlarge capacity if provided value is not same as current value
564-
"""
565-
cur_iocapacity = self.get_current_ioadapter_enlarged_capacity()
566-
log.info("Setting up ioenlarge capacity")
567-
log.info("Current ioenlarge capacity value:"+str(cur_iocapacity))
568-
if cur_iocapacity != self.iocapacity:
569-
self.set_ioenlarge_capacity()
570-
else:
571-
log.info("Provided IO Enlarge capacity value is same as current value, Exiting...")
572-
573-
def get_current_ioadapter_enlarged_capacity(self):
574-
"""
575-
Get ioadapter enlarged capcity value
576-
"""
577-
log.debug("=====Get current IOAdapter Enlarge Capacity=====")
578-
return self.bmc.rest_api.get_bios_attribute_value(
579-
bios_attribute="hb_ioadapter_enlarged_capacity_current"
580-
)
581-
582-
def set_ioenlarge_capacity(self):
583-
"""
584-
Set ioadapter enlarged capcity value
585-
"""
586-
log.debug("=====Set IOAdapter Enlarge Capacity=====")
587-
self.bmc.rest_api.set_bios_attribute(
588-
bios_attribute="hb_ioadapter_enlarged_capacity",
589-
bios_attribute_val=self.iocapacity
590-
)
591-
592560

593561
class OsConfig():
594562
'''

0 commit comments

Comments
 (0)