test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V1] tests/ipfrag: align the change in DPDK
@ 2019-05-30  4:43 Wenjie Li
  2019-06-10  1:47 ` Zhu, ShuaiX
  0 siblings, 1 reply; 3+ messages in thread
From: Wenjie Li @ 2019-05-30  4:43 UTC (permalink / raw)
  To: dts; +Cc: Wenjie Li

From: "Wenjie Li" <wenjiex.a.li@intel.com>

align changes in dpdk a7c528e5d71ff3f56: 
"
  net: add rte prefix to IP structure
  Add 'rte_' prefix to structures:
  - rename struct ipv4_hdr as struct rte_ipv4_hdr.
  - rename struct ipv6_hdr as struct rte_ipv6_hdr.
"

Signed-off-by: Wenjie Li <wenjiex.a.li@intel.com>
---
 tests/TestSuite_ipfrag.py | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)

diff --git a/tests/TestSuite_ipfrag.py b/tests/TestSuite_ipfrag.py
index 38a27e9..c148d2a 100644
--- a/tests/TestSuite_ipfrag.py
+++ b/tests/TestSuite_ipfrag.py
@@ -42,14 +42,14 @@ from settings import HEADER_SIZE
 from packet import Packet
 
 lpm_table_ipv4 = [
-    "{IPv4(100,10,0,0), 16, P1}",
-    "{IPv4(100,20,0,0), 16, P1}",
-    "{IPv4(100,30,0,0), 16, P0}",
-    "{IPv4(100,40,0,0), 16, P0}",
-    "{IPv4(100,50,0,0), 16, P1}",
-    "{IPv4(100,60,0,0), 16, P1}",
-    "{IPv4(100,70,0,0), 16, P0}",
-    "{IPv4(100,80,0,0), 16, P0}",
+    "{RTE_IPv4(100,10,0,0), 16, P1}",
+    "{RTE_IPv4(100,20,0,0), 16, P1}",
+    "{RTE_IPv4(100,30,0,0), 16, P0}",
+    "{RTE_IPv4(100,40,0,0), 16, P0}",
+    "{RTE_IPv4(100,50,0,0), 16, P1}",
+    "{RTE_IPv4(100,60,0,0), 16, P1}",
+    "{RTE_IPv4(100,70,0,0), 16, P0}",
+    "{RTE_IPv4(100,80,0,0), 16, P0}",
 ]
 
 lpm_table_ipv6 = [
-- 
2.17.2


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

* Re: [dts] [PATCH V1] tests/ipfrag: align the change in DPDK
  2019-05-30  4:43 [dts] [PATCH V1] tests/ipfrag: align the change in DPDK Wenjie Li
@ 2019-06-10  1:47 ` Zhu, ShuaiX
  2019-06-19  5:44   ` Wu, ChangqingX
  0 siblings, 1 reply; 3+ messages in thread
From: Zhu, ShuaiX @ 2019-06-10  1:47 UTC (permalink / raw)
  To: Li, WenjieX A, dts; +Cc: Li, WenjieX A, Zhu, ShuaiX

Testde-by: Zhu, ShuaiX <shuaix.zhu@intel.com>

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Wenjie Li
> Sent: Thursday, May 30, 2019 12:44 PM
> To: dts@dpdk.org
> Cc: Li, WenjieX A <wenjiex.a.li@intel.com>
> Subject: [dts] [PATCH V1] tests/ipfrag: align the change in DPDK
> 
> From: "Wenjie Li" <wenjiex.a.li@intel.com>
> 
> align changes in dpdk a7c528e5d71ff3f56:
> "
>   net: add rte prefix to IP structure
>   Add 'rte_' prefix to structures:
>   - rename struct ipv4_hdr as struct rte_ipv4_hdr.
>   - rename struct ipv6_hdr as struct rte_ipv6_hdr.
> "
> 
> Signed-off-by: Wenjie Li <wenjiex.a.li@intel.com>
> ---
>  tests/TestSuite_ipfrag.py | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/tests/TestSuite_ipfrag.py b/tests/TestSuite_ipfrag.py index
> 38a27e9..c148d2a 100644
> --- a/tests/TestSuite_ipfrag.py
> +++ b/tests/TestSuite_ipfrag.py
> @@ -42,14 +42,14 @@ from settings import HEADER_SIZE  from packet
> import Packet
> 
>  lpm_table_ipv4 = [
> -    "{IPv4(100,10,0,0), 16, P1}",
> -    "{IPv4(100,20,0,0), 16, P1}",
> -    "{IPv4(100,30,0,0), 16, P0}",
> -    "{IPv4(100,40,0,0), 16, P0}",
> -    "{IPv4(100,50,0,0), 16, P1}",
> -    "{IPv4(100,60,0,0), 16, P1}",
> -    "{IPv4(100,70,0,0), 16, P0}",
> -    "{IPv4(100,80,0,0), 16, P0}",
> +    "{RTE_IPv4(100,10,0,0), 16, P1}",
> +    "{RTE_IPv4(100,20,0,0), 16, P1}",
> +    "{RTE_IPv4(100,30,0,0), 16, P0}",
> +    "{RTE_IPv4(100,40,0,0), 16, P0}",
> +    "{RTE_IPv4(100,50,0,0), 16, P1}",
> +    "{RTE_IPv4(100,60,0,0), 16, P1}",
> +    "{RTE_IPv4(100,70,0,0), 16, P0}",
> +    "{RTE_IPv4(100,80,0,0), 16, P0}",
>  ]
> 
>  lpm_table_ipv6 = [
> --
> 2.17.2


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

* Re: [dts] [PATCH V1] tests/ipfrag: align the change in DPDK
  2019-06-10  1:47 ` Zhu, ShuaiX
@ 2019-06-19  5:44   ` Wu, ChangqingX
  0 siblings, 0 replies; 3+ messages in thread
From: Wu, ChangqingX @ 2019-06-19  5:44 UTC (permalink / raw)
  To: dts, Tu, Lijuan; +Cc: Li, WenjieX A, Zhu, ShuaiX

Hi,
Would you help to merge this patch, it has a greater impact on our daily result

Thanks.
changqingx

-----Original Message-----
From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Zhu, ShuaiX
Sent: Monday, June 10, 2019 9:48 AM
To: Li, WenjieX A <wenjiex.a.li@intel.com>; dts@dpdk.org
Cc: Li, WenjieX A <wenjiex.a.li@intel.com>; Zhu, ShuaiX <shuaix.zhu@intel.com>
Subject: Re: [dts] [PATCH V1] tests/ipfrag: align the change in DPDK

Testde-by: Zhu, ShuaiX <shuaix.zhu@intel.com>

> -----Original Message-----
> From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Wenjie Li
> Sent: Thursday, May 30, 2019 12:44 PM
> To: dts@dpdk.org
> Cc: Li, WenjieX A <wenjiex.a.li@intel.com>
> Subject: [dts] [PATCH V1] tests/ipfrag: align the change in DPDK
> 
> From: "Wenjie Li" <wenjiex.a.li@intel.com>
> 
> align changes in dpdk a7c528e5d71ff3f56:
> "
>   net: add rte prefix to IP structure
>   Add 'rte_' prefix to structures:
>   - rename struct ipv4_hdr as struct rte_ipv4_hdr.
>   - rename struct ipv6_hdr as struct rte_ipv6_hdr.
> "
> 
> Signed-off-by: Wenjie Li <wenjiex.a.li@intel.com>
> ---
>  tests/TestSuite_ipfrag.py | 16 ++++++++--------
>  1 file changed, 8 insertions(+), 8 deletions(-)
> 
> diff --git a/tests/TestSuite_ipfrag.py b/tests/TestSuite_ipfrag.py 
> index 38a27e9..c148d2a 100644
> --- a/tests/TestSuite_ipfrag.py
> +++ b/tests/TestSuite_ipfrag.py
> @@ -42,14 +42,14 @@ from settings import HEADER_SIZE  from packet 
> import Packet
> 
>  lpm_table_ipv4 = [
> -    "{IPv4(100,10,0,0), 16, P1}",
> -    "{IPv4(100,20,0,0), 16, P1}",
> -    "{IPv4(100,30,0,0), 16, P0}",
> -    "{IPv4(100,40,0,0), 16, P0}",
> -    "{IPv4(100,50,0,0), 16, P1}",
> -    "{IPv4(100,60,0,0), 16, P1}",
> -    "{IPv4(100,70,0,0), 16, P0}",
> -    "{IPv4(100,80,0,0), 16, P0}",
> +    "{RTE_IPv4(100,10,0,0), 16, P1}",
> +    "{RTE_IPv4(100,20,0,0), 16, P1}",
> +    "{RTE_IPv4(100,30,0,0), 16, P0}",
> +    "{RTE_IPv4(100,40,0,0), 16, P0}",
> +    "{RTE_IPv4(100,50,0,0), 16, P1}",
> +    "{RTE_IPv4(100,60,0,0), 16, P1}",
> +    "{RTE_IPv4(100,70,0,0), 16, P0}",
> +    "{RTE_IPv4(100,80,0,0), 16, P0}",
>  ]
> 
>  lpm_table_ipv6 = [
> --
> 2.17.2


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

end of thread, other threads:[~2019-06-19  5:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-30  4:43 [dts] [PATCH V1] tests/ipfrag: align the change in DPDK Wenjie Li
2019-06-10  1:47 ` Zhu, ShuaiX
2019-06-19  5:44   ` Wu, ChangqingX

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).