From: Zhimin Huang <zhiminx.huang@intel.com>
To: dts@dpdk.org
Cc: Zhimin Huang <zhiminx.huang@intel.com>
Subject: [dts] [PATCH V2 2/2] tests/vf_vlan:fix vlan issue
Date: Mon, 6 Sep 2021 17:40:40 +0800 [thread overview]
Message-ID: <20210906094040.6867-3-zhiminx.huang@intel.com> (raw)
In-Reply-To: <20210906094040.6867-1-zhiminx.huang@intel.com>
1.use dts framework interface to get kernel driver version.
2.according to dpdk code and kernel change about vlan for cvl, fix dts code,
to adapt test point.
Signed-off-by: Zhimin Huang <zhiminx.huang@intel.com>
---
tests/TestSuite_vf_vlan.py | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tests/TestSuite_vf_vlan.py b/tests/TestSuite_vf_vlan.py
index 2865014..34ba75e 100644
--- a/tests/TestSuite_vf_vlan.py
+++ b/tests/TestSuite_vf_vlan.py
@@ -65,6 +65,9 @@ class TestVfVlan(TestCase):
self.vf_assign_method = 'vfio-pci'
self.dut.send_expect('modprobe vfio-pci', '#')
+ # get driver version
+ self.driver_version = self.nic_obj.driver_version
+
def set_up(self):
self.setup_vm_env()
@@ -107,9 +110,6 @@ class TestVfVlan(TestCase):
self.host_intf0 = self.dut.ports_info[self.used_dut_port_0]['intf']
tester_port = self.tester.get_local_port(self.used_dut_port_0)
self.tester_intf0 = self.tester.get_interface(tester_port)
- # get driver version
- out = self.dut.send_expect("ethtool -i %s | awk -F':' 'NR==2{print $2}'" % self.host_intf0, "# ")
- self.driver_version = out.replace(" ", "")
self.dut.generate_sriov_vfs_by_port(
self.used_dut_port_0, 1, driver=driver)
@@ -276,7 +276,7 @@ class TestVfVlan(TestCase):
self.vm0_testpmd.execute_cmd("start")
out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP")
- if self.driver_version < "2.13.10" or self.kdriver == 'ice':
+ if self.kdriver == 'i40e' and self.driver_version < "2.13.10":
self.verify("received" in out, "Failed to received vlan packet!!!")
else:
self.verify(
@@ -398,7 +398,7 @@ class TestVfVlan(TestCase):
# send packet with vlan
out = self.send_and_getout(vlan=random_vlan, pkt_type="VLAN_UDP")
- if self.driver_version < "2.13.10" or self.kdriver == 'ice':
+ if self.kdriver == 'i40e' and self.driver_version < "2.13.10":
self.verify(
"received 1 packets" in out, "Received mismatched vlan packet while vlan filter on")
else:
--
2.17.1
next prev parent reply other threads:[~2021-09-06 1:09 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-06 9:40 [dts] [PATCH V2 0/2] fix vlan issue for cvl Zhimin Huang
2021-09-06 9:40 ` [dts] [PATCH V2 1/2] tests/kernelpf_iavf:fix vlan issue Zhimin Huang
2021-09-06 1:17 ` Huang, ZhiminX
2021-09-06 3:32 ` Tu, Lijuan
2021-09-06 9:40 ` Zhimin Huang [this message]
2021-09-06 1:17 ` [dts] [PATCH V2 2/2] tests/vf_vlan:fix " Huang, ZhiminX
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210906094040.6867-3-zhiminx.huang@intel.com \
--to=zhiminx.huang@intel.com \
--cc=dts@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).