From: ChenBo <box.c.chen@intel.com>
To: dts@dpdk.org
Cc: ChenBo <box.c.chen@intel.com>
Subject: [dts] [PATCH V1] Fix VF driver problem
Date: Fri, 3 Jul 2020 15:19:56 +0800 [thread overview]
Message-ID: <20200703071956.29627-1-box.c.chen@intel.com> (raw)
After creating VF, VF needs to be bound to the default driver to generate the port name.
Signed-off-by: ChenBo <box.c.chen@intel.com>
---
tests/TestSuite_cvl_dcf_switch_filter.py | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/tests/TestSuite_cvl_dcf_switch_filter.py b/tests/TestSuite_cvl_dcf_switch_filter.py
index 5c39eaa..1a51d40 100644
--- a/tests/TestSuite_cvl_dcf_switch_filter.py
+++ b/tests/TestSuite_cvl_dcf_switch_filter.py
@@ -903,7 +903,8 @@ class SwitchFilterTest(TestCase):
self.verify(len(self.dut_ports) >= 1, "Insufficient ports")
localPort = self.tester.get_local_port(self.dut_ports[0])
self.__tx_iface = self.tester.get_interface(localPort)
- self.dut.send_expect("ifconfig %s up" % self.__tx_iface, "# ")
+ self.tester.send_expect("ifconfig %s up" % self.__tx_iface, "# ")
+ self.dut.send_expect("ifconfig %s up" % self.dut_ports[0], "# ")
self.pkt = Packet()
self.testpmd_status = "close"
self.suite_config = rfc.get_suite_config(self)
@@ -1586,6 +1587,7 @@ class SwitchFilterTest(TestCase):
#sort the vf interfaces and pcis by pcis
vfs = {}
for vf_port in self.sriov_vfs_port:
+ vf_port.bind_driver()
vfs[vf_port.pci] = vf_port.intf_name
vfs_sort = sorted(vfs.items(), key=lambda item:item[0])
vf_pci = [key for key,value in vfs_sort]
@@ -1808,7 +1810,7 @@ class SwitchFilterTest(TestCase):
"""
if self.testpmd_status != "close":
# destroy all flow rules on DCF
- self.dut.send_expect("flow flush 0", "testpmd> ", 15)
+ self.dut.send_expect("flow flush 0", "testpmd> ", 120)
self.dut.send_expect("clear port stats all", "testpmd> ", 15)
self.dut.send_expect("quit", "#", 15)
self.testpmd_status = "close"
--
2.17.1
next reply other threads:[~2020-07-03 7:30 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-03 7:19 ChenBo [this message]
2020-07-03 7:33 ` Chen, BoX C
2020-07-20 6:57 ` Tu, Lijuan
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=20200703071956.29627-1-box.c.chen@intel.com \
--to=box.c.chen@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).