[dts] [PATCH V3] tests/dynamic_queue: unbind the unused ports

Tu, Lijuan lijuan.tu at intel.com
Sat Dec 22 02:52:26 CET 2018


Could you clarify why it' s necessary to reduce the ports to only one?
BTW, though you'd like to use only one port, unbind/bind ports is not a good option, prefer to add testpmd parameter "-w self.dut.get_port_pci(self.dut_ports[0])".

> -----Original Message-----
> From: dts [mailto:dts-bounces at dpdk.org] On Behalf Of Wenjie Li
> Sent: Friday, December 14, 2018 2:31 PM
> To: dts at dpdk.org
> Cc: Li, WenjieX A <wenjiex.a.li at intel.com>
> Subject: [dts] [PATCH V3] tests/dynamic_queue: unbind the unused ports
> 
> Instead of reduce the queue number for fvl_40G, unbind the unused ports for
> all nics during test, and bind them after this test suite is done.
> 
> Signed-off-by: Wenjie Li <wenjiex.a.li at intel.com>
> ---
>  tests/TestSuite_dynamic_queue.py | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/TestSuite_dynamic_queue.py
> b/tests/TestSuite_dynamic_queue.py
> index f155686..e145f53 100644
> --- a/tests/TestSuite_dynamic_queue.py
> +++ b/tests/TestSuite_dynamic_queue.py
> @@ -25,6 +25,11 @@ class TestDynamicQueue(TestCase):
>          tester_port = self.tester.get_local_port(self.used_dut_port)
>          self.tester_intf = self.tester.get_interface(tester_port)
>          self.dut_testpmd = PmdOutput(self.dut)
> +        unbind_nics = []
> +        if len(self.dut_ports) >= 2:
> +            for i in range (1, len(self.dut_ports)):
> +                unbind_nics.append(self.dut_ports[1])
> +        self.dut.unbind_interfaces_linux(unbind_nics)
> 
>      def set_up(self):
>          self.dut_testpmd.start_testpmd( @@ -194,4 +199,4 @@ class
> TestDynamicQueue(TestCase):
>          self.dut_testpmd.quit()
> 
>      def tear_down_all(self):
> -        pass
> +        self.dut.bind_interfaces_linux(driver=self.drivername)
> --
> 2.17.2



More information about the dts mailing list