[dpdk-stable] patch 'net/ice/base: fix binary order for GTPU filter' has been queued to stable release 19.11.3

luca.boccassi at gmail.com luca.boccassi at gmail.com
Tue May 19 15:02:49 CEST 2020


Hi,

FYI, your patch has been queued to stable release 19.11.3

Note it hasn't been pushed to http://dpdk.org/browse/dpdk-stable yet.
It will be pushed if I get no objections before 05/21/20. So please
shout if anyone has objections.

Also note that after the patch there's a diff of the upstream commit vs the
patch applied to the branch. This will indicate if there was any rebasing
needed to apply to the stable branch. If there were code changes for rebasing
(ie: not only metadata diffs), please double check that the rebase was
correctly done.

Thanks.

Luca Boccassi

---
>From 3e51abed667ad99e305f3665114fd1a653fe1e7a Mon Sep 17 00:00:00 2001
From: Qi Zhang <qi.z.zhang at intel.com>
Date: Mon, 30 Mar 2020 19:45:37 +0800
Subject: [PATCH] net/ice/base: fix binary order for GTPU filter

[ upstream commit b965ec9e99d7726d24fdcf41defbbac02f21f4e2 ]

Take network order for gtpu fdir filter.

Fixes: b5c274f4e2ad ("net/ice/base: support FDIR for GTPU QFI field")

Signed-off-by: Ting Xu <ting.xu at intel.com>
Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr at intel.com>
Signed-off-by: Qi Zhang <qi.z.zhang at intel.com>
Acked-by: Qiming Yang <qiming.yang at intel.com>
---
 drivers/net/ice/base/ice_fdir.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/net/ice/base/ice_fdir.h b/drivers/net/ice/base/ice_fdir.h
index c811f7606d..5b37705844 100644
--- a/drivers/net/ice/base/ice_fdir.h
+++ b/drivers/net/ice/base/ice_fdir.h
@@ -151,9 +151,9 @@ struct ice_fdir_v6 {
 struct ice_fdir_udp_gtp {
 	u8 flags;
 	u8 msg_type;
-	u16 rsrvd_len;
-	u32 teid;
-	u16 rsrvd_seq_nbr;
+	__be16 rsrvd_len;
+	__be32 teid;
+	__be16 rsrvd_seq_nbr;
 	u8 rsrvd_n_pdu_nbr;
 	u8 rsrvd_next_ext_type;
 	u8 rsvrd_ext_len;
-- 
2.20.1

---
  Diff of the applied patch vs upstream commit (please double-check if non-empty:
---
--- -	2020-05-19 14:04:45.976711080 +0100
+++ 0034-net-ice-base-fix-binary-order-for-GTPU-filter.patch	2020-05-19 14:04:44.172647575 +0100
@@ -1,12 +1,13 @@
-From b965ec9e99d7726d24fdcf41defbbac02f21f4e2 Mon Sep 17 00:00:00 2001
+From 3e51abed667ad99e305f3665114fd1a653fe1e7a Mon Sep 17 00:00:00 2001
 From: Qi Zhang <qi.z.zhang at intel.com>
 Date: Mon, 30 Mar 2020 19:45:37 +0800
 Subject: [PATCH] net/ice/base: fix binary order for GTPU filter
 
+[ upstream commit b965ec9e99d7726d24fdcf41defbbac02f21f4e2 ]
+
 Take network order for gtpu fdir filter.
 
 Fixes: b5c274f4e2ad ("net/ice/base: support FDIR for GTPU QFI field")
-Cc: stable at dpdk.org
 
 Signed-off-by: Ting Xu <ting.xu at intel.com>
 Signed-off-by: Paul M Stillwell Jr <paul.m.stillwell.jr at intel.com>
@@ -17,10 +18,10 @@
  1 file changed, 3 insertions(+), 3 deletions(-)
 
 diff --git a/drivers/net/ice/base/ice_fdir.h b/drivers/net/ice/base/ice_fdir.h
-index 21a83fd6c4..e52104e9a0 100644
+index c811f7606d..5b37705844 100644
 --- a/drivers/net/ice/base/ice_fdir.h
 +++ b/drivers/net/ice/base/ice_fdir.h
-@@ -148,9 +148,9 @@ struct ice_fdir_v6 {
+@@ -151,9 +151,9 @@ struct ice_fdir_v6 {
  struct ice_fdir_udp_gtp {
  	u8 flags;
  	u8 msg_type;


More information about the stable mailing list