test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2] tests/vf packet rxtx:add rxq txq for host testpmd in ixgbe
@ 2019-02-21  6:10 zhao,meijuan
  2019-02-21  6:19 ` Yao, BingX Y
  2019-02-26  7:28 ` Tu, Lijuan
  0 siblings, 2 replies; 3+ messages in thread
From: zhao,meijuan @ 2019-02-21  6:10 UTC (permalink / raw)
  To: dts; +Cc: zhao,meijuan

Signed-off-by: zhao,meijuan <meijuanx.zhao@intel.com>
---
 tests/TestSuite_vf_packet_rxtx.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/TestSuite_vf_packet_rxtx.py b/tests/TestSuite_vf_packet_rxtx.py
index c56bdd7..571b11e 100644
--- a/tests/TestSuite_vf_packet_rxtx.py
+++ b/tests/TestSuite_vf_packet_rxtx.py
@@ -191,7 +191,10 @@ class TestVfPacketRxtx(TestCase):
                 eal_param = '-b %(vf0)s -b %(vf1)s -b %(vf2)s' % {'vf0': self.sriov_vfs_port[0].pci,
                                                                   'vf1': self.sriov_vfs_port[1].pci,
                                                                   'vf2': self.sriov_vfs_port[2].pci}
-                self.host_testpmd.start_testpmd("1S/2C/2T", eal_param=eal_param)
+                if (self.nic in ["niantic", "sageville", "sagepond"]):
+                    self.host_testpmd.start_testpmd("1S/9C/1T", "--txq=4 --rxq=4 ", eal_param=eal_param)
+                else:
+                    self.host_testpmd.start_testpmd("1S/2C/2T", eal_param=eal_param)
 
             # set up VM0 ENV
             self.vm0 = VM(self.dut, 'vm0', 'vf_packet_rxtx')
-- 
2.17.2

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/vf packet rxtx:add rxq txq for host testpmd in ixgbe
  2019-02-21  6:10 [dts] [PATCH V2] tests/vf packet rxtx:add rxq txq for host testpmd in ixgbe zhao,meijuan
@ 2019-02-21  6:19 ` Yao, BingX Y
  2019-02-26  7:28 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Yao, BingX Y @ 2019-02-21  6:19 UTC (permalink / raw)
  To: Zhao, MeijuanX, dts; +Cc: Zhao, MeijuanX

Tested-by: yaobing <bingx.y.yao@intel.com>

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhao,meijuan
Sent: Thursday, February 21, 2019 2:11 PM
To: dts@dpdk.org
Cc: Zhao, MeijuanX <meijuanx.zhao@intel.com>
Subject: [dts] [PATCH V2] tests/vf packet rxtx:add rxq txq for host testpmd in ixgbe

Signed-off-by: zhao,meijuan <meijuanx.zhao@intel.com>
---
 tests/TestSuite_vf_packet_rxtx.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/TestSuite_vf_packet_rxtx.py b/tests/TestSuite_vf_packet_rxtx.py
index c56bdd7..571b11e 100644
--- a/tests/TestSuite_vf_packet_rxtx.py
+++ b/tests/TestSuite_vf_packet_rxtx.py
@@ -191,7 +191,10 @@ class TestVfPacketRxtx(TestCase):
                 eal_param = '-b %(vf0)s -b %(vf1)s -b %(vf2)s' % {'vf0': self.sriov_vfs_port[0].pci,
                                                                   'vf1': self.sriov_vfs_port[1].pci,
                                                                   'vf2': self.sriov_vfs_port[2].pci}
-                self.host_testpmd.start_testpmd("1S/2C/2T", eal_param=eal_param)
+                if (self.nic in ["niantic", "sageville", "sagepond"]):
+                    self.host_testpmd.start_testpmd("1S/9C/1T", "--txq=4 --rxq=4 ", eal_param=eal_param)
+                else:
+                    self.host_testpmd.start_testpmd("1S/2C/2T", eal_param=eal_param)
 
             # set up VM0 ENV
             self.vm0 = VM(self.dut, 'vm0', 'vf_packet_rxtx')
-- 
2.17.2

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dts] [PATCH V2] tests/vf packet rxtx:add rxq txq for host testpmd in ixgbe
  2019-02-21  6:10 [dts] [PATCH V2] tests/vf packet rxtx:add rxq txq for host testpmd in ixgbe zhao,meijuan
  2019-02-21  6:19 ` Yao, BingX Y
@ 2019-02-26  7:28 ` Tu, Lijuan
  1 sibling, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2019-02-26  7:28 UTC (permalink / raw)
  To: Zhao, MeijuanX, dts; +Cc: Zhao, MeijuanX

Applied, thanks

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhao,meijuan
> Sent: Thursday, February 21, 2019 2:11 PM
> To: dts@dpdk.org
> Cc: Zhao, MeijuanX <meijuanx.zhao@intel.com>
> Subject: [dts] [PATCH V2] tests/vf packet rxtx:add rxq txq for host testpmd in
> ixgbe
> 
> Signed-off-by: zhao,meijuan <meijuanx.zhao@intel.com>
> ---
>  tests/TestSuite_vf_packet_rxtx.py | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/tests/TestSuite_vf_packet_rxtx.py
> b/tests/TestSuite_vf_packet_rxtx.py
> index c56bdd7..571b11e 100644
> --- a/tests/TestSuite_vf_packet_rxtx.py
> +++ b/tests/TestSuite_vf_packet_rxtx.py
> @@ -191,7 +191,10 @@ class TestVfPacketRxtx(TestCase):
>                  eal_param = '-b %(vf0)s -b %(vf1)s -b %(vf2)s' % {'vf0':
> self.sriov_vfs_port[0].pci,
>                                                                    'vf1': self.sriov_vfs_port[1].pci,
>                                                                    'vf2': self.sriov_vfs_port[2].pci}
> -                self.host_testpmd.start_testpmd("1S/2C/2T", eal_param=eal_param)
> +                if (self.nic in ["niantic", "sageville", "sagepond"]):
> +                    self.host_testpmd.start_testpmd("1S/9C/1T", "--txq=4 --rxq=4 ",
> eal_param=eal_param)
> +                else:
> +                    self.host_testpmd.start_testpmd("1S/2C/2T",
> eal_param=eal_param)
> 
>              # set up VM0 ENV
>              self.vm0 = VM(self.dut, 'vm0', 'vf_packet_rxtx')
> --
> 2.17.2

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-02-26  7:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-21  6:10 [dts] [PATCH V2] tests/vf packet rxtx:add rxq txq for host testpmd in ixgbe zhao,meijuan
2019-02-21  6:19 ` Yao, BingX Y
2019-02-26  7:28 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).