test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1 0/6] add cvl nic supported
@ 2021-01-06  5:41 Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 1/6] tests/TestSuite_flow_classify:add " Xie wei
                   ` (7 more replies)
  0 siblings, 8 replies; 9+ messages in thread
From: Xie wei @ 2021-01-06  5:41 UTC (permalink / raw)
  To: dts; +Cc: Xie wei

add cvl nic supported for some NIC PF suites.

Xie wei (6):
  tests/TestSuite_flow_classify:add cvl nic supported
  tests/TestSuite_fortville_rss_input:add cvl nic supported
  tests/TestSuite_generic_filter:add cvl nic supported
  tests/TestSuite_port_representor:add cvl nic supported
  tests/TestSuite_scatter:add cvl nic supported
  conf/test_case_checklist:add cvl nic supported

 conf/test_case_checklist.json          |  2 ++
 tests/TestSuite_flow_classify.py       |  2 +-
 tests/TestSuite_fortville_rss_input.py |  2 +-
 tests/TestSuite_generic_filter.py      | 26 +++++++++++++-------------
 tests/TestSuite_port_representor.py    |  2 +-
 tests/TestSuite_scatter.py             |  2 +-
 6 files changed, 19 insertions(+), 17 deletions(-)

-- 
2.17.1


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

* [dts] [PATCH V1 1/6] tests/TestSuite_flow_classify:add cvl nic supported
  2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
@ 2021-01-06  5:41 ` Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 2/6] tests/TestSuite_fortville_rss_input:add " Xie wei
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Xie wei @ 2021-01-06  5:41 UTC (permalink / raw)
  To: dts; +Cc: Xie wei

add cvl nic supported.

Signed-off-by: Xie wei <weix.xie@intel.com>
---
 tests/TestSuite_flow_classify.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_flow_classify.py b/tests/TestSuite_flow_classify.py
index 75410b34..67d78734 100644
--- a/tests/TestSuite_flow_classify.py
+++ b/tests/TestSuite_flow_classify.py
@@ -453,7 +453,7 @@ class TestFlowClassify(TestCase):
         self.verify_traffic(stm_types=stream_list, flow_type="multi_stream")
 
     def verify_supported_nic(self):
-        supported_drivers = ['i40e', 'ixgbe', 'igc', 'igb']
+        supported_drivers = ['i40e', 'ixgbe', 'igc', 'igb', 'ice']
         result = all([self.dut.ports_info[index]['port'].default_driver in
                       supported_drivers
                       for index in self.dut_ports])
-- 
2.17.1


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

* [dts] [PATCH V1 2/6] tests/TestSuite_fortville_rss_input:add cvl nic supported
  2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 1/6] tests/TestSuite_flow_classify:add " Xie wei
@ 2021-01-06  5:41 ` Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 3/6] tests/TestSuite_generic_filter:add " Xie wei
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Xie wei @ 2021-01-06  5:41 UTC (permalink / raw)
  To: dts; +Cc: Xie wei

add cvl nic supported

Signed-off-by: Xie wei <weix.xie@intel.com>
---
 tests/TestSuite_fortville_rss_input.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_fortville_rss_input.py b/tests/TestSuite_fortville_rss_input.py
index 58868bff..f542b667 100644
--- a/tests/TestSuite_fortville_rss_input.py
+++ b/tests/TestSuite_fortville_rss_input.py
@@ -79,7 +79,7 @@ class TestFortvilleRssInput(TestCase):
         """
 
         self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
-                    "fortville_spirit_single", "fortville_25g", "carlsville"],
+                    "fortville_spirit_single", "fortville_25g", "carlsville","columbiaville_25g","columbiaville_100g"],
                     "NIC Unsupported: " + str(self.nic))
         ports = self.dut.get_ports(self.nic)
         self.verify(len(ports) >= 1, "Not enough ports available")
-- 
2.17.1


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

* [dts] [PATCH V1 3/6] tests/TestSuite_generic_filter:add cvl nic supported
  2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 1/6] tests/TestSuite_flow_classify:add " Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 2/6] tests/TestSuite_fortville_rss_input:add " Xie wei
@ 2021-01-06  5:41 ` Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 4/6] tests/TestSuite_port_representor:add " Xie wei
                   ` (4 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Xie wei @ 2021-01-06  5:41 UTC (permalink / raw)
  To: dts; +Cc: Xie wei

add cvl nic supported

Signed-off-by: Xie wei <weix.xie@intel.com>
---
 tests/TestSuite_generic_filter.py | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/tests/TestSuite_generic_filter.py b/tests/TestSuite_generic_filter.py
index fb710ebe..d4ea8926 100644
--- a/tests/TestSuite_generic_filter.py
+++ b/tests/TestSuite_generic_filter.py
@@ -81,7 +81,7 @@ class TestGeneric_filter(TestCase):
         """
          set port queue mapping, fortville not support this function
         """
-        if self.nic not in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV","fortpark_BASE-T", "carlsville"]:
+        if self.nic not in ["fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortville_25g", "fortpark_TLV","fortpark_BASE-T", "carlsville", "columbiaville_25g", "columbiaville_100g"]:
             self.dut.send_expect(
                 "set stat_qmap rx %s 0 0" % valports[0], "testpmd> ")
             self.dut.send_expect(
@@ -204,7 +204,7 @@ class TestGeneric_filter(TestCase):
         """
         Enable receipt of SYN packets
         """
-        self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "powerville", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit"], "%s nic not support syn filter" % self.nic)
+        self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "powerville", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"], "%s nic not support syn filter" % self.nic)
         self.pmdout.start_testpmd(
             "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
         self.port_config()
@@ -267,7 +267,7 @@ class TestGeneric_filter(TestCase):
             self.filter_send_packet("fivetuple")
             out = self.dut.send_expect("stop", "testpmd> ")
             self.verify_result(out, tx_pkts="1", expect_queue="2")
-        elif self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+        elif self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
             cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask 0x1f tcp_flags 0x02 priority 3 queue 3" % (
                 valports[0])
             self.dut.send_expect("%s" % (cmd), "testpmd> ")
@@ -307,7 +307,7 @@ class TestGeneric_filter(TestCase):
         """
         five tuple filter
         """
-        if self.nic in ["niantic", "kawela_4", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+        if self.nic in ["niantic", "kawela_4", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
             self.pmdout.start_testpmd(
                 "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
             self.port_config()
@@ -318,14 +318,14 @@ class TestGeneric_filter(TestCase):
                     if self.nic in ["niantic", "sagepond", "sageville"]:
                         cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
                             valports[0], case)
-                    if self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+                    if self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
                         cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue 3" % (
                             valports[0], case)
                 else:
                     if self.nic in ["niantic", "sagepond", "sageville"]:
                         cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
                             valports[0], case)
-                    if self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+                    if self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
                         cmd = "5tuple_filter %s add dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue 3" % (
                             valports[0], case)
 
@@ -348,14 +348,14 @@ class TestGeneric_filter(TestCase):
                     if self.nic in ["niantic", "sagepond", "sageville"]:
                         cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
                             valports[0], case)
-                    if self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+                    if self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
                         cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue 3" % (
                             valports[0], case)
                 else:
                     if self.nic in ["niantic", "sagepond", "sageville"]:
                         cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x0 priority 3 queue 3" % (
                             valports[0], case)
-                    if self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+                    if self.nic in ["kawela_4", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
                         cmd = "5tuple_filter %s del dst_ip 2.2.2.5 src_ip 2.2.2.4 dst_port 1 src_port 1 protocol 0x06 mask %s tcp_flags 0x02 priority 3 queue 3" % (
                             valports[0], case)
 
@@ -372,7 +372,7 @@ class TestGeneric_filter(TestCase):
 
         self.verify(self.nic in ["niantic", "kawela_4", "bartonhills", "sagepond",
                            "powerville", "fortville_eagle", "fortville_25g", "fortville_spirit",
-                           "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", "fortville_25g","cavium_a063", "carlsville", "foxville", "sageville"], "%s nic not support syn filter" % self.nic)
+                           "fortville_spirit_single", "fortpark_TLV","fortpark_BASE-T", "fortville_25g","cavium_a063", "carlsville", "foxville", "sageville", "columbiaville_25g", "columbiaville_100g"], "%s nic not support syn filter" % self.nic)
         self.pmdout.start_testpmd(
             "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
         self.port_config()
@@ -417,7 +417,7 @@ class TestGeneric_filter(TestCase):
         self.verify_result(out, tx_pkts="1", expect_queue="0")
 
     def test_multiple_filters_10GB(self):
-        if self.nic in ["niantic", "sagepond", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+        if self.nic in ["niantic", "sagepond", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
             self.pmdout.start_testpmd(
                 "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
             self.port_config()
@@ -501,7 +501,7 @@ class TestGeneric_filter(TestCase):
 
     def test_twotuple_filter(self):
 
-        if self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+        if self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
             self.pmdout.start_testpmd(
                 "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
             self.port_config()
@@ -534,7 +534,7 @@ class TestGeneric_filter(TestCase):
             self.verify(False, "%s nic not support two tuple filter" % self.nic)
 
     def test_flex_filter(self):
-        self.verify(self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit"], '%s not support flex filter' % self.nic)
+        self.verify(self.nic in ["powerville", "bartonhills", "cavium_a063", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"], '%s not support flex filter' % self.nic)
 
         masks = ['000C', '000C']
         self.pmdout.start_testpmd(
@@ -589,7 +589,7 @@ class TestGeneric_filter(TestCase):
 
     def test_multiple_filters_1GB(self):
 
-        if self.nic in ["powerville", "kawela_4", "bartonhills", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit"]:
+        if self.nic in ["powerville", "kawela_4", "bartonhills", "sagepond", "foxville", "sageville", "fortville_eagle", "fortville_25g", "fortville_spirit", "columbiaville_25g", "columbiaville_100g"]:
             self.pmdout.start_testpmd(
                 "%s" % self.cores, "--disable-rss --rxq=4 --txq=4 --portmask=%s --nb-cores=4 --nb-ports=1" % portMask)
             self.port_config()
-- 
2.17.1


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

* [dts] [PATCH V1 4/6] tests/TestSuite_port_representor:add cvl nic supported
  2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
                   ` (2 preceding siblings ...)
  2021-01-06  5:41 ` [dts] [PATCH V1 3/6] tests/TestSuite_generic_filter:add " Xie wei
@ 2021-01-06  5:41 ` Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 5/6] tests/TestSuite_scatter:add " Xie wei
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Xie wei @ 2021-01-06  5:41 UTC (permalink / raw)
  To: dts; +Cc: Xie wei

add cvl nic supported

Signed-off-by: Xie wei <weix.xie@intel.com>
---
 tests/TestSuite_port_representor.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_port_representor.py b/tests/TestSuite_port_representor.py
index 209272c3..e2fe0dc8 100644
--- a/tests/TestSuite_port_representor.py
+++ b/tests/TestSuite_port_representor.py
@@ -51,7 +51,7 @@ class TestPortRepresentor(TestCase):
         Prerequisite steps for each test suite.
         """
         self.verify(self.nic in ["fortville_eagle", "fortville_spirit",
-                                 "fortville_spirit_single", "fortville_25g", "carlsville"], "NIC Unsupported: " + str(self.nic))
+                                 "fortville_spirit_single", "fortville_25g", "carlsville", "columbiaville_25g", "columbiaville_100g"], "NIC Unsupported: " + str(self.nic))
         self.dut_ports = self.dut.get_ports(self.nic)
         self.verify(len(self.dut_ports) >= 1, "Insufficient ports")
 
-- 
2.17.1


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

* [dts] [PATCH V1 5/6] tests/TestSuite_scatter:add cvl nic supported
  2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
                   ` (3 preceding siblings ...)
  2021-01-06  5:41 ` [dts] [PATCH V1 4/6] tests/TestSuite_port_representor:add " Xie wei
@ 2021-01-06  5:41 ` Xie wei
  2021-01-06  5:41 ` [dts] [PATCH V1 6/6] conf/test_case_checklist:add " Xie wei
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 9+ messages in thread
From: Xie wei @ 2021-01-06  5:41 UTC (permalink / raw)
  To: dts; +Cc: Xie wei

add cvl nic supported

Signed-off-by: Xie wei <weix.xie@intel.com>
---
 tests/TestSuite_scatter.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/TestSuite_scatter.py b/tests/TestSuite_scatter.py
index d462fdbe..0600052d 100644
--- a/tests/TestSuite_scatter.py
+++ b/tests/TestSuite_scatter.py
@@ -66,7 +66,7 @@ class TestScatter(TestCase):
         if self.nic in ["magnolia_park", "niantic", "sageville", "fortpark", "fortville_eagle",
                         "fortville_spirit", "fortville_spirit_single", "fortville_25g", "x722_37d2",
                         "redrockcanyou", "atwood", "boulderrapid",
-                        "ironpond", "twinpond", "springfountain", "fortpark_TLV","fortpark_BASE-T", "sagepond", "carlsville"]:
+                        "ironpond", "twinpond", "springfountain", "fortpark_TLV","fortpark_BASE-T", "sagepond", "carlsville","columbiaville_25","columbiaville_100g"]:
             self.mbsize = 2048
         else:
             self.mbsize = 1024
-- 
2.17.1


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

* [dts] [PATCH V1 6/6] conf/test_case_checklist:add cvl nic supported
  2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
                   ` (4 preceding siblings ...)
  2021-01-06  5:41 ` [dts] [PATCH V1 5/6] tests/TestSuite_scatter:add " Xie wei
@ 2021-01-06  5:41 ` Xie wei
  2021-01-06  6:32 ` [dts] [PATCH V1 0/6] add " Zhao, HaiyangX
  2021-01-07  5:02 ` Tu, Lijuan
  7 siblings, 0 replies; 9+ messages in thread
From: Xie wei @ 2021-01-06  5:41 UTC (permalink / raw)
  To: dts; +Cc: Xie wei

generic_filter/128_queues this case only support ixgbe nic.

Signed-off-by: Xie wei <weix.xie@intel.com>
---
 conf/test_case_checklist.json | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/conf/test_case_checklist.json b/conf/test_case_checklist.json
index 79100e2a..91892ae1 100644
--- a/conf/test_case_checklist.json
+++ b/conf/test_case_checklist.json
@@ -11,6 +11,8 @@
                 "fortville_spirit",
                 "fortville_spirit_single",
                 "fortville_25g",
+		"columbiaville_25g",
+		"columbiaville_100g",
                 "springville",
                 "ironpond",
                 "springfountain",
-- 
2.17.1


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

* Re: [dts] [PATCH V1 0/6] add cvl nic supported
  2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
                   ` (5 preceding siblings ...)
  2021-01-06  5:41 ` [dts] [PATCH V1 6/6] conf/test_case_checklist:add " Xie wei
@ 2021-01-06  6:32 ` Zhao, HaiyangX
  2021-01-07  5:02 ` Tu, Lijuan
  7 siblings, 0 replies; 9+ messages in thread
From: Zhao, HaiyangX @ 2021-01-06  6:32 UTC (permalink / raw)
  To: Xie, WeiX, dts; +Cc: Xie, WeiX

Acked-by: Haiyang Zhao <haiyangx.zhao@intel.com>

Best Regards,
Zhao Haiyang

> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Xie wei
> Sent: Wednesday, January 6, 2021 13:41
> To: dts@dpdk.org
> Cc: Xie, WeiX <weix.xie@intel.com>
> Subject: [dts] [PATCH V1 0/6] add cvl nic supported


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

* Re: [dts] [PATCH V1 0/6] add cvl nic supported
  2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
                   ` (6 preceding siblings ...)
  2021-01-06  6:32 ` [dts] [PATCH V1 0/6] add " Zhao, HaiyangX
@ 2021-01-07  5:02 ` Tu, Lijuan
  7 siblings, 0 replies; 9+ messages in thread
From: Tu, Lijuan @ 2021-01-07  5:02 UTC (permalink / raw)
  To: Xie, WeiX, dts; +Cc: Xie, WeiX

> add cvl nic supported for some NIC PF suites.
> 
> Xie wei (6):
>   tests/TestSuite_flow_classify:add cvl nic supported
>   tests/TestSuite_fortville_rss_input:add cvl nic supported
>   tests/TestSuite_generic_filter:add cvl nic supported
>   tests/TestSuite_port_representor:add cvl nic supported
>   tests/TestSuite_scatter:add cvl nic supported
>   conf/test_case_checklist:add cvl nic supported

Applied thanks

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

end of thread, other threads:[~2021-01-07  5:02 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-06  5:41 [dts] [PATCH V1 0/6] add cvl nic supported Xie wei
2021-01-06  5:41 ` [dts] [PATCH V1 1/6] tests/TestSuite_flow_classify:add " Xie wei
2021-01-06  5:41 ` [dts] [PATCH V1 2/6] tests/TestSuite_fortville_rss_input:add " Xie wei
2021-01-06  5:41 ` [dts] [PATCH V1 3/6] tests/TestSuite_generic_filter:add " Xie wei
2021-01-06  5:41 ` [dts] [PATCH V1 4/6] tests/TestSuite_port_representor:add " Xie wei
2021-01-06  5:41 ` [dts] [PATCH V1 5/6] tests/TestSuite_scatter:add " Xie wei
2021-01-06  5:41 ` [dts] [PATCH V1 6/6] conf/test_case_checklist:add " Xie wei
2021-01-06  6:32 ` [dts] [PATCH V1 0/6] add " Zhao, HaiyangX
2021-01-07  5:02 ` 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).