diff options
author | Peter Mikus <pmikus@cisco.com> | 2020-04-17 16:34:35 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2020-04-17 16:56:15 +0000 |
commit | b778a14874e220995dd6a7f63cd6747911a0c192 (patch) | |
tree | 4caeff4a37cd3b1a394ad5f99aad533680346c8d /resources | |
parent | ffa19fdddee2f73e99826e9bedf21ea696429721 (diff) |
FIX: Proper NUMA compute
+ FIX for Vratko's FIX
Change-Id: Ia6ff137120d84bdd2b9e02e3e935c62d1c732b7b
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources')
-rw-r--r-- | resources/libraries/python/NodePath.py | 3 | ||||
-rw-r--r-- | resources/libraries/robot/shared/default.robot | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/resources/libraries/python/NodePath.py b/resources/libraries/python/NodePath.py index 04e8e5ef3c..8ee50666c1 100644 --- a/resources/libraries/python/NodePath.py +++ b/resources/libraries/python/NodePath.py @@ -268,6 +268,9 @@ class NodePath: t_dict[f"{n_pfx}_pf_pci"] = [] t_dict[f"{n_pfx}_pf_pci"].append( Topology.get_interface_pci_addr(node, interface)) + if f"{n_pfx}_pf_keys" not in t_dict: + t_dict[f"{n_pfx}_pf_keys"] = [] + t_dict[f"{n_pfx}_pf_keys"].append(interface) # Backward compatibility below t_dict[f"{n_pfx.lower()}_{i_pfx}"] = interface t_dict[f"{n_pfx.lower()}_{i_pfx}_mac"] = \ diff --git a/resources/libraries/robot/shared/default.robot b/resources/libraries/robot/shared/default.robot index 0ec86cbb99..d3206a1349 100644 --- a/resources/libraries/robot/shared/default.robot +++ b/resources/libraries/robot/shared/default.robot @@ -187,7 +187,7 @@ | | ${txd_count_int}= | Set variable | ${txd} | | FOR | ${dut} | IN | @{duts} | | | ${numa}= | Get interfaces numa node -| | | ... | ${nodes['${dut}']} | @{${dut}_pf1} +| | | ... | ${nodes['${dut}']} | @{${dut}_pf_keys} | | | ${smt_used}= | Is SMT enabled | ${nodes['${dut}']['cpuinfo']} | | | ${skip_cnt}= | Set variable | ${CPU_CNT_SYSTEM} | | | ${cpu_main}= | Cpu list per node str | ${nodes['${dut}']} | ${numa} |