DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload
@ 2019-09-20  8:36 Ting Xu
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
                   ` (2 more replies)
  0 siblings, 3 replies; 12+ messages in thread
From: Ting Xu @ 2019-09-20  8:36 UTC (permalink / raw)
  To: dev
  Cc: wenzhuo.lu, jingjing.wu, xiaolong.ye, qiming.yang, john.mcnamara,
	marko.kovacevic, olivier.matz, qi.z.zhang

In this patchset, minor modifications are made in ice pmd and
mbuf to enable GTP tx checksum offload in CVL. Add the GTP
tunnel type flag.

Ting Xu (2):
  lib/mbuf: add GTP tunnel type flag
  net/ice: add GTP type in tunneling parse

 doc/guides/rel_notes/release_19_11.rst | 5 +++++
 drivers/net/ice/ice_rxtx.c             | 1 +
 lib/librte_mbuf/rte_mbuf.h             | 2 ++
 3 files changed, 8 insertions(+)

-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag
  2019-09-20  8:36 [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload Ting Xu
@ 2019-09-20  8:36 ` Ting Xu
  2019-10-18  8:38   ` Olivier Matz
                     ` (3 more replies)
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 2/2] net/ice: add GTP " Ting Xu
  2019-10-17  1:37 ` [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload Zhang, Qi Z
  2 siblings, 4 replies; 12+ messages in thread
From: Ting Xu @ 2019-09-20  8:36 UTC (permalink / raw)
  To: dev
  Cc: wenzhuo.lu, jingjing.wu, xiaolong.ye, qiming.yang, john.mcnamara,
	marko.kovacevic, olivier.matz, qi.z.zhang

Add GTP tunnel type flag in mbuf for future use in GTP
checksum offload.

Signed-off-by: Ting Xu <ting.xu@intel.com>
---
 lib/librte_mbuf/rte_mbuf.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h
index 98225ec80..0a5d67d9a 100644
--- a/lib/librte_mbuf/rte_mbuf.h
+++ b/lib/librte_mbuf/rte_mbuf.h
@@ -251,6 +251,8 @@ extern "C" {
 /** TX packet with MPLS-in-UDP RFC 7510 header. */
 #define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)
 #define PKT_TX_TUNNEL_VXLAN_GPE (0x6ULL << 45)
+#define PKT_TX_TUNNEL_GTP       (0x7ULL << 45)
+
 /**
  * Generic IP encapsulated tunnel type, used for TSO and checksum offload.
  * It can be used for tunnels which are not standards or listed above.
-- 
2.17.1


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

* [dpdk-dev] [PATCH v1 2/2] net/ice: add GTP type in tunneling parse
  2019-09-20  8:36 [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload Ting Xu
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
@ 2019-09-20  8:36 ` Ting Xu
  2019-10-17  1:37 ` [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload Zhang, Qi Z
  2 siblings, 0 replies; 12+ messages in thread
From: Ting Xu @ 2019-09-20  8:36 UTC (permalink / raw)
  To: dev
  Cc: wenzhuo.lu, jingjing.wu, xiaolong.ye, qiming.yang, john.mcnamara,
	marko.kovacevic, olivier.matz, qi.z.zhang

Add GTP tunnel type in ice pmd tunneling parameters parse
to enable checksum offload.

Signed-off-by: Ting Xu <ting.xu@intel.com>
---
 doc/guides/rel_notes/release_19_11.rst | 5 +++++
 drivers/net/ice/ice_rxtx.c             | 1 +
 2 files changed, 6 insertions(+)

diff --git a/doc/guides/rel_notes/release_19_11.rst b/doc/guides/rel_notes/release_19_11.rst
index 8490d897c..c456b5050 100644
--- a/doc/guides/rel_notes/release_19_11.rst
+++ b/doc/guides/rel_notes/release_19_11.rst
@@ -56,6 +56,11 @@ New Features
      Also, make sure to start the actual text at the margin.
      =========================================================
 
+* **Updated the Intel ice driver.**
+
+  Updated the Intel ice driver with new features and improvements, including:
+
+  * Enabled Tx GTP checksum offload.
 
 Removed Items
 -------------
diff --git a/drivers/net/ice/ice_rxtx.c b/drivers/net/ice/ice_rxtx.c
index 0282b5375..8105ff741 100644
--- a/drivers/net/ice/ice_rxtx.c
+++ b/drivers/net/ice/ice_rxtx.c
@@ -1764,6 +1764,7 @@ ice_parse_tunneling_params(uint64_t ol_flags,
 		/* for non UDP / GRE tunneling, set to 00b */
 		break;
 	case PKT_TX_TUNNEL_VXLAN:
+	case PKT_TX_TUNNEL_GTP:
 	case PKT_TX_TUNNEL_GENEVE:
 		*cd_tunneling |= ICE_TXD_CTX_UDP_TUNNELING;
 		break;
-- 
2.17.1


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

* Re: [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload
  2019-09-20  8:36 [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload Ting Xu
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 2/2] net/ice: add GTP " Ting Xu
@ 2019-10-17  1:37 ` Zhang, Qi Z
  2 siblings, 0 replies; 12+ messages in thread
From: Zhang, Qi Z @ 2019-10-17  1:37 UTC (permalink / raw)
  To: Xu, Ting, dev
  Cc: Lu, Wenzhuo, Wu, Jingjing, Ye, Xiaolong, Yang, Qiming, Mcnamara,
	John, Kovacevic, Marko, olivier.matz



> -----Original Message-----
> From: Xu, Ting
> Sent: Friday, September 20, 2019 4:36 PM
> To: dev@dpdk.org
> Cc: Lu, Wenzhuo <wenzhuo.lu@intel.com>; Wu, Jingjing
> <jingjing.wu@intel.com>; Ye, Xiaolong <xiaolong.ye@intel.com>; Yang, Qiming
> <qiming.yang@intel.com>; Mcnamara, John <john.mcnamara@intel.com>;
> Kovacevic, Marko <marko.kovacevic@intel.com>; olivier.matz@6wind.com;
> Zhang, Qi Z <qi.z.zhang@intel.com>
> Subject: [PATCH v1 0/2] net/ice: enable GTP checksum offload
> 
> In this patchset, minor modifications are made in ice pmd and mbuf to enable
> GTP tx checksum offload in CVL. Add the GTP tunnel type flag.
> 
> Ting Xu (2):
>   lib/mbuf: add GTP tunnel type flag
>   net/ice: add GTP type in tunneling parse
> 
>  doc/guides/rel_notes/release_19_11.rst | 5 +++++
>  drivers/net/ice/ice_rxtx.c             | 1 +
>  lib/librte_mbuf/rte_mbuf.h             | 2 ++
>  3 files changed, 8 insertions(+)
> 
> --
> 2.17.1

Acked-by: Qi Zhang <qi.z.zhang@intel.com>



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

* Re: [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
@ 2019-10-18  8:38   ` Olivier Matz
  2019-10-21  2:38     ` Xu, Ting
  2019-10-21  9:59   ` [dpdk-dev] [PATCH v2 0/2] support GTP Tx checksum offload Ting Xu
                     ` (2 subsequent siblings)
  3 siblings, 1 reply; 12+ messages in thread
From: Olivier Matz @ 2019-10-18  8:38 UTC (permalink / raw)
  To: Ting Xu
  Cc: dev, wenzhuo.lu, jingjing.wu, xiaolong.ye, qiming.yang,
	john.mcnamara, marko.kovacevic, qi.z.zhang

Hi,

On Fri, Sep 20, 2019 at 08:36:23AM +0000, Ting Xu wrote:
> Add GTP tunnel type flag in mbuf for future use in GTP
> checksum offload.
> 
> Signed-off-by: Ting Xu <ting.xu@intel.com>
> ---
>  lib/librte_mbuf/rte_mbuf.h | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h
> index 98225ec80..0a5d67d9a 100644
> --- a/lib/librte_mbuf/rte_mbuf.h
> +++ b/lib/librte_mbuf/rte_mbuf.h
> @@ -251,6 +251,8 @@ extern "C" {
>  /** TX packet with MPLS-in-UDP RFC 7510 header. */
>  #define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)
>  #define PKT_TX_TUNNEL_VXLAN_GPE (0x6ULL << 45)
> +#define PKT_TX_TUNNEL_GTP       (0x7ULL << 45)
> +
>  /**
>   * Generic IP encapsulated tunnel type, used for TSO and checksum offload.
>   * It can be used for tunnels which are not standards or listed above.

Some updates are missing, for instance in rte_get_tx_ol_flag_name().
Please look what was done for other flags.

Please, can you describe in more details what is expected in the packet
header?

Thanks,
Olivier

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

* Re: [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag
  2019-10-18  8:38   ` Olivier Matz
@ 2019-10-21  2:38     ` Xu, Ting
  0 siblings, 0 replies; 12+ messages in thread
From: Xu, Ting @ 2019-10-21  2:38 UTC (permalink / raw)
  To: Olivier Matz
  Cc: dev, Lu, Wenzhuo, Wu,  Jingjing, Ye, Xiaolong, Yang, Qiming,
	Mcnamara, John, Kovacevic, Marko, Zhang, Qi Z

Hi, Olivier,

Thanks for advice. I will modify codes according to your comments.
As for the packet header, I define a simplified GTP header in patch: app/testpmd: enable GTP header parse and Tx checksum offload, in order to help forward GTP packet in testpmd.
I just moved some codes to rte_ether.h according to Ferruh's comments in that patch, which may need your review as well.

Thanks.

-----Original Message-----
From: Olivier Matz [mailto:olivier.matz@6wind.com] 
Sent: Friday, October 18, 2019 4:38 PM
To: Xu, Ting <ting.xu@intel.com>
Cc: dev@dpdk.org; Lu, Wenzhuo <wenzhuo.lu@intel.com>; Wu, Jingjing <jingjing.wu@intel.com>; Ye, Xiaolong <xiaolong.ye@intel.com>; Yang, Qiming <qiming.yang@intel.com>; Mcnamara, John <john.mcnamara@intel.com>; Kovacevic, Marko <marko.kovacevic@intel.com>; Zhang, Qi Z <qi.z.zhang@intel.com>
Subject: Re: [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag

Hi,

On Fri, Sep 20, 2019 at 08:36:23AM +0000, Ting Xu wrote:
> Add GTP tunnel type flag in mbuf for future use in GTP checksum 
> offload.
> 
> Signed-off-by: Ting Xu <ting.xu@intel.com>
> ---
>  lib/librte_mbuf/rte_mbuf.h | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h 
> index 98225ec80..0a5d67d9a 100644
> --- a/lib/librte_mbuf/rte_mbuf.h
> +++ b/lib/librte_mbuf/rte_mbuf.h
> @@ -251,6 +251,8 @@ extern "C" {
>  /** TX packet with MPLS-in-UDP RFC 7510 header. */  #define 
> PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)  #define 
> PKT_TX_TUNNEL_VXLAN_GPE (0x6ULL << 45)
> +#define PKT_TX_TUNNEL_GTP       (0x7ULL << 45)
> +
>  /**
>   * Generic IP encapsulated tunnel type, used for TSO and checksum offload.
>   * It can be used for tunnels which are not standards or listed above.

Some updates are missing, for instance in rte_get_tx_ol_flag_name().
Please look what was done for other flags.

Please, can you describe in more details what is expected in the packet header?

Thanks,
Olivier

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

* [dpdk-dev] [PATCH v2 0/2] support GTP Tx checksum offload
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
  2019-10-18  8:38   ` Olivier Matz
@ 2019-10-21  9:59   ` Ting Xu
  2019-10-23 14:56     ` Ferruh Yigit
  2019-10-21 10:00   ` [dpdk-dev] [PATCH v2 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
  2019-10-21 10:00   ` [dpdk-dev] [PATCH v2 2/2] net/ice: add GTP tunnel type in tunneling parse Ting Xu
  3 siblings, 1 reply; 12+ messages in thread
From: Ting Xu @ 2019-10-21  9:59 UTC (permalink / raw)
  To: dev; +Cc: wenzhuo.lu, qiming.yang, john.mcnamara, marko.kovacevic, olivier.matz

In this patchset, minor modifications are made in ice pmd and
mbuf to support GTP Tx checksum offload in CVL. Add the GTP
tunnel type flag in mbuf.

v2: modify codes according to comments. Add flag name in
rte_mbuf.c.

Ting Xu (2):
  lib/mbuf: add GTP tunnel type flag
  net/ice: add GTP tunnel type in tunneling parse

 doc/guides/rel_notes/release_19_11.rst | 1 +
 drivers/net/ice/ice_rxtx.c             | 1 +
 lib/librte_mbuf/rte_mbuf.c             | 2 ++
 lib/librte_mbuf/rte_mbuf.h             | 2 ++
 4 files changed, 6 insertions(+)

-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 1/2] lib/mbuf: add GTP tunnel type flag
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
  2019-10-18  8:38   ` Olivier Matz
  2019-10-21  9:59   ` [dpdk-dev] [PATCH v2 0/2] support GTP Tx checksum offload Ting Xu
@ 2019-10-21 10:00   ` Ting Xu
  2019-10-23 14:56     ` Ferruh Yigit
  2019-10-21 10:00   ` [dpdk-dev] [PATCH v2 2/2] net/ice: add GTP tunnel type in tunneling parse Ting Xu
  3 siblings, 1 reply; 12+ messages in thread
From: Ting Xu @ 2019-10-21 10:00 UTC (permalink / raw)
  To: dev; +Cc: wenzhuo.lu, qiming.yang, john.mcnamara, marko.kovacevic, olivier.matz

Add GTP tunnel type flag in mbuf for future use in GTP
Tx checksum offload.

Signed-off-by: Ting Xu <ting.xu@intel.com>
---
 lib/librte_mbuf/rte_mbuf.c | 2 ++
 lib/librte_mbuf/rte_mbuf.h | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/lib/librte_mbuf/rte_mbuf.c b/lib/librte_mbuf/rte_mbuf.c
index 0236fba76..952f3c52c 100644
--- a/lib/librte_mbuf/rte_mbuf.c
+++ b/lib/librte_mbuf/rte_mbuf.c
@@ -591,6 +591,7 @@ const char *rte_get_tx_ol_flag_name(uint64_t mask)
 	case PKT_TX_OUTER_IPV4: return "PKT_TX_OUTER_IPV4";
 	case PKT_TX_OUTER_IPV6: return "PKT_TX_OUTER_IPV6";
 	case PKT_TX_TUNNEL_VXLAN: return "PKT_TX_TUNNEL_VXLAN";
+	case PKT_TX_TUNNEL_GTP: return "PKT_TX_TUNNEL_GTP";
 	case PKT_TX_TUNNEL_GRE: return "PKT_TX_TUNNEL_GRE";
 	case PKT_TX_TUNNEL_IPIP: return "PKT_TX_TUNNEL_IPIP";
 	case PKT_TX_TUNNEL_GENEVE: return "PKT_TX_TUNNEL_GENEVE";
@@ -627,6 +628,7 @@ rte_get_tx_ol_flag_list(uint64_t mask, char *buf, size_t buflen)
 		{ PKT_TX_OUTER_IPV4, PKT_TX_OUTER_IPV4, NULL },
 		{ PKT_TX_OUTER_IPV6, PKT_TX_OUTER_IPV6, NULL },
 		{ PKT_TX_TUNNEL_VXLAN, PKT_TX_TUNNEL_MASK, NULL },
+		{ PKT_TX_TUNNEL_GTP, PKT_TX_TUNNEL_MASK, NULL },
 		{ PKT_TX_TUNNEL_GRE, PKT_TX_TUNNEL_MASK, NULL },
 		{ PKT_TX_TUNNEL_IPIP, PKT_TX_TUNNEL_MASK, NULL },
 		{ PKT_TX_TUNNEL_GENEVE, PKT_TX_TUNNEL_MASK, NULL },
diff --git a/lib/librte_mbuf/rte_mbuf.h b/lib/librte_mbuf/rte_mbuf.h
index fb0849ac1..ce1e22544 100644
--- a/lib/librte_mbuf/rte_mbuf.h
+++ b/lib/librte_mbuf/rte_mbuf.h
@@ -251,6 +251,8 @@ extern "C" {
 /** TX packet with MPLS-in-UDP RFC 7510 header. */
 #define PKT_TX_TUNNEL_MPLSINUDP (0x5ULL << 45)
 #define PKT_TX_TUNNEL_VXLAN_GPE (0x6ULL << 45)
+#define PKT_TX_TUNNEL_GTP       (0x7ULL << 45)
+
 /**
  * Generic IP encapsulated tunnel type, used for TSO and checksum offload.
  * It can be used for tunnels which are not standards or listed above.
-- 
2.17.1


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

* [dpdk-dev] [PATCH v2 2/2] net/ice: add GTP tunnel type in tunneling parse
  2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
                     ` (2 preceding siblings ...)
  2019-10-21 10:00   ` [dpdk-dev] [PATCH v2 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
@ 2019-10-21 10:00   ` Ting Xu
  2019-10-23 14:56     ` Ferruh Yigit
  3 siblings, 1 reply; 12+ messages in thread
From: Ting Xu @ 2019-10-21 10:00 UTC (permalink / raw)
  To: dev; +Cc: wenzhuo.lu, qiming.yang, john.mcnamara, marko.kovacevic, olivier.matz

Add GTP tunnel type in ice pmd tunneling parameters parse
to enable Tx checksum offload.

Signed-off-by: Ting Xu <ting.xu@intel.com>
---
 doc/guides/rel_notes/release_19_11.rst | 1 +
 drivers/net/ice/ice_rxtx.c             | 1 +
 2 files changed, 2 insertions(+)

diff --git a/doc/guides/rel_notes/release_19_11.rst b/doc/guides/rel_notes/release_19_11.rst
index 88086b795..d61604c10 100644
--- a/doc/guides/rel_notes/release_19_11.rst
+++ b/doc/guides/rel_notes/release_19_11.rst
@@ -104,6 +104,7 @@ New Features
   * Generic filter enhancement
     - Supported pipeline mode.
     - Supported new packet type like PPPoE for switch filter.
+  * Added support for GTP Tx checksum offload.
 
 * **Updated iavf PMD.**
 
diff --git a/drivers/net/ice/ice_rxtx.c b/drivers/net/ice/ice_rxtx.c
index d4c801fc8..8d4820d3c 100644
--- a/drivers/net/ice/ice_rxtx.c
+++ b/drivers/net/ice/ice_rxtx.c
@@ -2163,6 +2163,7 @@ ice_parse_tunneling_params(uint64_t ol_flags,
 		/* for non UDP / GRE tunneling, set to 00b */
 		break;
 	case PKT_TX_TUNNEL_VXLAN:
+	case PKT_TX_TUNNEL_GTP:
 	case PKT_TX_TUNNEL_GENEVE:
 		*cd_tunneling |= ICE_TXD_CTX_UDP_TUNNELING;
 		break;
-- 
2.17.1


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

* Re: [dpdk-dev] [PATCH v2 1/2] lib/mbuf: add GTP tunnel type flag
  2019-10-21 10:00   ` [dpdk-dev] [PATCH v2 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
@ 2019-10-23 14:56     ` Ferruh Yigit
  0 siblings, 0 replies; 12+ messages in thread
From: Ferruh Yigit @ 2019-10-23 14:56 UTC (permalink / raw)
  To: Ting Xu, dev
  Cc: wenzhuo.lu, qiming.yang, john.mcnamara, marko.kovacevic, olivier.matz

On 10/21/2019 11:00 AM, Ting Xu wrote:
> Add GTP tunnel type flag in mbuf for future use in GTP
> Tx checksum offload.
> 
> Signed-off-by: Ting Xu <ting.xu@intel.com>

Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

@Olivier, change looks straightforward and there is a testpmd patch depends
this, merging without waiting your ack, please shout if something is wrong.

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

* Re: [dpdk-dev] [PATCH v2 2/2] net/ice: add GTP tunnel type in tunneling parse
  2019-10-21 10:00   ` [dpdk-dev] [PATCH v2 2/2] net/ice: add GTP tunnel type in tunneling parse Ting Xu
@ 2019-10-23 14:56     ` Ferruh Yigit
  0 siblings, 0 replies; 12+ messages in thread
From: Ferruh Yigit @ 2019-10-23 14:56 UTC (permalink / raw)
  To: Ting Xu, dev
  Cc: wenzhuo.lu, qiming.yang, john.mcnamara, marko.kovacevic, olivier.matz

On 10/21/2019 11:00 AM, Ting Xu wrote:
> Add GTP tunnel type in ice pmd tunneling parameters parse
> to enable Tx checksum offload.
> 
> Signed-off-by: Ting Xu <ting.xu@intel.com>

Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

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

* Re: [dpdk-dev] [PATCH v2 0/2] support GTP Tx checksum offload
  2019-10-21  9:59   ` [dpdk-dev] [PATCH v2 0/2] support GTP Tx checksum offload Ting Xu
@ 2019-10-23 14:56     ` Ferruh Yigit
  0 siblings, 0 replies; 12+ messages in thread
From: Ferruh Yigit @ 2019-10-23 14:56 UTC (permalink / raw)
  To: Ting Xu, dev
  Cc: wenzhuo.lu, qiming.yang, john.mcnamara, marko.kovacevic, olivier.matz

On 10/21/2019 10:59 AM, Ting Xu wrote:
> In this patchset, minor modifications are made in ice pmd and
> mbuf to support GTP Tx checksum offload in CVL. Add the GTP
> tunnel type flag in mbuf.
> 
> v2: modify codes according to comments. Add flag name in
> rte_mbuf.c.
> 
> Ting Xu (2):
>   lib/mbuf: add GTP tunnel type flag
>   net/ice: add GTP tunnel type in tunneling parse

Series applied to dpdk-next-net/master, thanks.

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

end of thread, other threads:[~2019-10-23 14:56 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-09-20  8:36 [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload Ting Xu
2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
2019-10-18  8:38   ` Olivier Matz
2019-10-21  2:38     ` Xu, Ting
2019-10-21  9:59   ` [dpdk-dev] [PATCH v2 0/2] support GTP Tx checksum offload Ting Xu
2019-10-23 14:56     ` Ferruh Yigit
2019-10-21 10:00   ` [dpdk-dev] [PATCH v2 1/2] lib/mbuf: add GTP tunnel type flag Ting Xu
2019-10-23 14:56     ` Ferruh Yigit
2019-10-21 10:00   ` [dpdk-dev] [PATCH v2 2/2] net/ice: add GTP tunnel type in tunneling parse Ting Xu
2019-10-23 14:56     ` Ferruh Yigit
2019-09-20  8:36 ` [dpdk-dev] [PATCH v1 2/2] net/ice: add GTP " Ting Xu
2019-10-17  1:37 ` [dpdk-dev] [PATCH v1 0/2] net/ice: enable GTP checksum offload Zhang, Qi Z

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