diff options
author | Peter Mikus <pmikus@cisco.com> | 2019-02-08 13:58:27 +0000 |
---|---|---|
committer | Peter Mikus <pmikus@cisco.com> | 2019-02-08 14:01:19 +0000 |
commit | 7348bd7bf8eee50dbc2316ee9bae3ad0403522e9 (patch) | |
tree | b009bac7eb752a9519cbf949bb15f957ce8d7656 /resources | |
parent | ee375b76cdab4939fafbd5d9c52ceed176afb343 (diff) |
FIX: Memif API
Change-Id: If755c06935a525c7a312e63f32f6035f08fdb893
Signed-off-by: Peter Mikus <pmikus@cisco.com>
Diffstat (limited to 'resources')
-rw-r--r-- | resources/libraries/python/InterfaceUtil.py | 10 | ||||
-rw-r--r-- | resources/libraries/robot/performance/performance_configuration.robot | 4 | ||||
-rw-r--r-- | resources/templates/vat/create_avf_interface.vat | 2 |
3 files changed, 11 insertions, 5 deletions
diff --git a/resources/libraries/python/InterfaceUtil.py b/resources/libraries/python/InterfaceUtil.py index 8e1892392d..a73b6df8f3 100644 --- a/resources/libraries/python/InterfaceUtil.py +++ b/resources/libraries/python/InterfaceUtil.py @@ -991,21 +991,27 @@ class InterfaceUtil(object): Topology.update_interface_mac_address(node, if_key, ifc_mac) @staticmethod - def vpp_create_avf_interface(node, vf_pci_addr): + def vpp_create_avf_interface(node, vf_pci_addr, num_rx_queues=None): """Create AVF interface on VPP node. :param node: DUT node from topology. :param vf_pci_addr: Virtual Function PCI address. + :param num_rx_queues: Number of RX queues. :type node: dict :type vf_pci_addr: str + :type num_rx_queues: int :returns: Interface key (name) in topology. :rtype: str :raises RuntimeError: If it is not possible to create AVF interface on the node. """ + num_rx_queues = 'num-rx-queues {num_rx_queues}'\ + .format(num_rx_queues=num_rx_queues) if num_rx_queues else '' + with VatTerminal(node, json_param=False) as vat: vat.vat_terminal_exec_cmd_from_template('create_avf_interface.vat', - vf_pci_addr=vf_pci_addr) + vf_pci_addr=vf_pci_addr, + num_rx_queues=num_rx_queues) output = vat.vat_stdout if output is not None: diff --git a/resources/libraries/robot/performance/performance_configuration.robot b/resources/libraries/robot/performance/performance_configuration.robot index be30d3706c..73041081ae 100644 --- a/resources/libraries/robot/performance/performance_configuration.robot +++ b/resources/libraries/robot/performance/performance_configuration.robot @@ -129,9 +129,9 @@ | | | ${if2_pci}= | Get Interface PCI Addr | ${nodes['${dut}']} | | | ... | ${${dut}_if2_vf0} | | | ${dut_eth_vf_if1}= | VPP Create AVF Interface | ${nodes['${dut}']} -| | | ... | ${if1_pci} +| | | ... | ${if1_pci} | ${rxq_count_int} | | | ${dut_eth_vf_if2}= | VPP Create AVF Interface | ${nodes['${dut}']} -| | | ... | ${if2_pci} +| | | ... | ${if2_pci} | ${rxq_count_int} | | | Set Test Variable | ${${dut}_if1} | ${dut_eth_vf_if1} | | | Set Test Variable | ${${dut}_if2} | ${dut_eth_vf_if2} | | Set interfaces in path up diff --git a/resources/templates/vat/create_avf_interface.vat b/resources/templates/vat/create_avf_interface.vat index b7ce79a98f..ca6e747d26 100644 --- a/resources/templates/vat/create_avf_interface.vat +++ b/resources/templates/vat/create_avf_interface.vat @@ -1 +1 @@ -avf_create {vf_pci_addr} +avf_create {vf_pci_addr} {num_rx_queues} |