The default max/min tx rates shall not halt deployment

The default configuration of max_tx_rate and min_tx_rate is 0.
Some of the SR-IOV driver implementation throws up the error for
the default values and the errors shall be safely handled instead
of raising an exception.

Change-Id: I0e6ee35e327d36ddc1b792de1ee48bad609bc3ad
This commit is contained in:
Karthik S 2021-12-01 14:55:35 +00:00
parent ca522c25ed
commit 44eab2297f
1 changed files with 16 additions and 2 deletions

View File

@ -546,6 +546,14 @@ def _pf_interface_up(pf_device):
run_ip_config_cmd('ip', 'link', 'set', 'dev', pf_device['name'], 'up') run_ip_config_cmd('ip', 'link', 'set', 'dev', pf_device['name'], 'up')
def run_ip_config_cmd_safe(raise_error, *cmd, **kwargs):
try:
run_ip_config_cmd(*cmd)
except processutils.ProcessExecutionError:
if raise_error:
raise
def get_pf_pci(pf_name): def get_pf_pci(pf_name):
pf_pci_path = common.get_dev_path(pf_name, "uevent") pf_pci_path = common.get_dev_path(pf_name, "uevent")
pf_info = get_file_data(pf_pci_path) pf_info = get_file_data(pf_pci_path)
@ -593,12 +601,14 @@ def if_up_interface(device):
def configure_sriov_vf(): def configure_sriov_vf():
sriov_map = _get_sriov_map() sriov_map = _get_sriov_map()
for item in sriov_map: for item in sriov_map:
raise_error = True
if item['device_type'] == 'vf': if item['device_type'] == 'vf':
pf_name = item['device']['name'] pf_name = item['device']['name']
vfid = item['device']['vfid'] vfid = item['device']['vfid']
base_cmd = ('ip', 'link', 'set', 'dev', pf_name, 'vf', str(vfid)) base_cmd = ('ip', 'link', 'set', 'dev', pf_name, 'vf', str(vfid))
logger.info(f"Configuring settings for PF: {pf_name} VF: {vfid} " logger.info(f"Configuring settings for PF: {pf_name} VF: {vfid} "
f"VF name: {item['name']}") f"VF name: {item['name']}")
raise_error = True
if 'macaddr' in item: if 'macaddr' in item:
cmd = base_cmd + ('mac', item['macaddr']) cmd = base_cmd + ('mac', item['macaddr'])
run_ip_config_cmd(*cmd) run_ip_config_cmd(*cmd)
@ -609,10 +619,14 @@ def configure_sriov_vf():
run_ip_config_cmd(*vlan_cmd) run_ip_config_cmd(*vlan_cmd)
if 'max_tx_rate' in item: if 'max_tx_rate' in item:
cmd = base_cmd + ('max_tx_rate', str(item['max_tx_rate'])) cmd = base_cmd + ('max_tx_rate', str(item['max_tx_rate']))
run_ip_config_cmd(*cmd) if item['max_tx_rate'] == 0:
raise_error = False
run_ip_config_cmd_safe(raise_error, *cmd)
if 'min_tx_rate' in item: if 'min_tx_rate' in item:
cmd = base_cmd + ('min_tx_rate', str(item['min_tx_rate'])) cmd = base_cmd + ('min_tx_rate', str(item['min_tx_rate']))
run_ip_config_cmd(*cmd) if item['min_tx_rate'] == 0:
raise_error = False
run_ip_config_cmd_safe(raise_error, *cmd)
if 'spoofcheck' in item: if 'spoofcheck' in item:
cmd = base_cmd + ('spoofchk', item['spoofcheck']) cmd = base_cmd + ('spoofchk', item['spoofcheck'])
run_ip_config_cmd(*cmd) run_ip_config_cmd(*cmd)