[V2,8/8] tests/vf_rss: remove ip fragment packets

Message ID 20220525111934.106784-8-songx.jiale@intel.com (mailing list archive)
State Accepted
Headers
Series [V2,1/8] tests/ice_advanced_iavf_rss: remove ip fragment packets |

Checks

Context Check Description
ci/Intel-dts-doc-test success Testing OK
ci/Intel-dts-format-test success Testing OK
ci/Intel-dts-pylama-test success Testing OK
ci/Intel-dts-suite-test fail Testing issues

Commit Message

Jiale, SongX May 25, 2022, 11:19 a.m. UTC
  modify the script to adapt to the change of dpdk function.
remove ip fragment packets, dpdk no longer supports ip fragment default RSS.

According to dpdk commit f8d541da518 ("net/iavf: remove support for IP fragment default RSS").

Signed-off-by: Jiale Song <songx.jiale@intel.com>
---
 tests/TestSuite_vf_rss.py | 2 --
 1 file changed, 2 deletions(-)
  

Comments

Tu, Lijuan May 28, 2022, 9:23 a.m. UTC | #1
On Wed, 25 May 2022 19:19:34 +0800, Jiale Song <songx.jiale@intel.com> wrote:
> modify the script to adapt to the change of dpdk function.
> remove ip fragment packets, dpdk no longer supports ip fragment default RSS.
> 
> According to dpdk commit f8d541da518 ("net/iavf: remove support for IP fragment default RSS").
> 
> Signed-off-by: Jiale Song <songx.jiale@intel.com>

Acked-by: Lijuan Tu <lijuan.tu@intel.com>
Series applied, thanks
  

Patch

diff --git a/tests/TestSuite_vf_rss.py b/tests/TestSuite_vf_rss.py
index 65995df1..a5314b13 100644
--- a/tests/TestSuite_vf_rss.py
+++ b/tests/TestSuite_vf_rss.py
@@ -392,12 +392,10 @@  class TestVfRss(TestCase):
         self.vm0_ports_socket = self.vm_dut_0.get_numa_id(vm0dutPorts[0])
         iptypes = {
             "ipv4-other": "ip",
-            "ipv4-frag": "ip",
             "ipv4-udp": "udp",
             "ipv4-tcp": "tcp",
             "ipv4-sctp": "sctp",
             "ipv6-other": "ip",
-            "ipv6-frag": "ip",
             "ipv6-udp": "udp",
             "ipv6-tcp": "tcp",
             "ipv6-sctp": "sctp",