* [dts][PATCH V1 1/2] test_plans/vf_vlan: optimize script test step rx does not support IXGBE
@ 2023-02-03 6:25 Weiyuan Li
2023-02-03 6:25 ` [dts][PATCH V1 2/2] tests/vf_vlan: " Weiyuan Li
0 siblings, 1 reply; 3+ messages in thread
From: Weiyuan Li @ 2023-02-03 6:25 UTC (permalink / raw)
To: dts; +Cc: Weiyuan Li
The ixgbe kernel driver does not support rx path hw vlan, parameter "--enable-hw-vlan" not support nic IXGBE_10G-82599_SFP.
Signed-off-by: Weiyuan Li <weiyuanx.li@intel.com>
---
test_plans/vf_vlan_test_plan.rst | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/test_plans/vf_vlan_test_plan.rst b/test_plans/vf_vlan_test_plan.rst
index 0cf946d0..d6f8f40d 100644
--- a/test_plans/vf_vlan_test_plan.rst
+++ b/test_plans/vf_vlan_test_plan.rst
@@ -167,6 +167,10 @@ Test case4: VF tagged vlan rx
testpmd> set verbose 1
testpmd> start
+.. note::
+
+ parameter "--enable-hw-vlan" not support nic: IXGBE_10G-82599_SFP.
+
3. Send packet without vlan and check packet received
4. Send packet with vlan 0 and check packet received
@@ -198,6 +202,10 @@ Test case5: VF Vlan strip test
testpmd> set verbose 1
testpmd> start
+.. note::
+
+ parameter "--enable-hw-vlan" not support nic: IXGBE_10G-82599_SFP.
+
2. Add tagged vlan 1 on VF0::
testpmd> rx_vlan add 1 0
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts][PATCH V1 2/2] tests/vf_vlan: optimize script test step rx does not support IXGBE
2023-02-03 6:25 [dts][PATCH V1 1/2] test_plans/vf_vlan: optimize script test step rx does not support IXGBE Weiyuan Li
@ 2023-02-03 6:25 ` Weiyuan Li
2023-03-07 3:52 ` lijuan.tu
0 siblings, 1 reply; 3+ messages in thread
From: Weiyuan Li @ 2023-02-03 6:25 UTC (permalink / raw)
To: dts; +Cc: Weiyuan Li
The ixgbe kernel driver does not support rx path hw vlan, parameter "--enable-hw-vlan" not support nic IXGBE_10G-82599_SFP.
Signed-off-by: Weiyuan Li <weiyuanx.li@intel.com>
---
tests/TestSuite_vf_vlan.py | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/tests/TestSuite_vf_vlan.py b/tests/TestSuite_vf_vlan.py
index 563d06b6..b19f5172 100644
--- a/tests/TestSuite_vf_vlan.py
+++ b/tests/TestSuite_vf_vlan.py
@@ -344,7 +344,11 @@ class TestVfVlan(TestCase):
self.vm0_dut_ports = self.vm_dut_0.get_ports("any")
self.vm0_testpmd = PmdOutput(self.vm_dut_0)
- param = "--enable-hw-vlan" if not self.dcf_mode else ""
+ param = (
+ "--enable-hw-vlan"
+ if not self.dcf_mode and self.kdriver is not "ixgbe"
+ else ""
+ )
self.launch_testpmd(dcf_flag=self.dcf_mode, param=param)
self.vm0_testpmd.execute_cmd("set fwd rxonly")
self.vm0_testpmd.execute_cmd("set verbose 1")
@@ -424,7 +428,12 @@ class TestVfVlan(TestCase):
self.vm0_dut_ports = self.vm_dut_0.get_ports("any")
self.vm0_testpmd = PmdOutput(self.vm_dut_0)
- param = "--enable-hw-vlan" if not self.dcf_mode else ""
+ param = (
+ "--enable-hw-vlan"
+ if not self.dcf_mode and self.kdriver is not "ixgbe"
+ else ""
+ )
+
self.launch_testpmd(dcf_flag=self.dcf_mode, param=param)
self.vm0_testpmd.execute_cmd("set fwd rxonly")
self.vm0_testpmd.execute_cmd("set verbose 1")
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts][PATCH V1 2/2] tests/vf_vlan: optimize script test step rx does not support IXGBE
2023-02-03 6:25 ` [dts][PATCH V1 2/2] tests/vf_vlan: " Weiyuan Li
@ 2023-03-07 3:52 ` lijuan.tu
0 siblings, 0 replies; 3+ messages in thread
From: lijuan.tu @ 2023-03-07 3:52 UTC (permalink / raw)
To: dts, Weiyuan Li; +Cc: Weiyuan Li
On Fri, 3 Feb 2023 14:25:12 +0800, Weiyuan Li <weiyuanx.li@intel.com> wrote:
> The ixgbe kernel driver does not support rx path hw vlan, parameter "--enable-hw-vlan" not support nic IXGBE_10G-82599_SFP.
>
> Signed-off-by: Weiyuan Li <weiyuanx.li@intel.com>
Series applied, thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-03-07 3:52 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-02-03 6:25 [dts][PATCH V1 1/2] test_plans/vf_vlan: optimize script test step rx does not support IXGBE Weiyuan Li
2023-02-03 6:25 ` [dts][PATCH V1 2/2] tests/vf_vlan: " Weiyuan Li
2023-03-07 3:52 ` lijuan.tu
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).