]> git.ipfire.org Git - thirdparty/kernel/stable-queue.git/commitdiff
5.10-stable patches
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 26 Jul 2021 16:51:34 +0000 (18:51 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 26 Jul 2021 16:51:34 +0000 (18:51 +0200)
added patches:
skbuff-fix-build-with-skb-extensions-disabled.patch

queue-5.10/series
queue-5.10/skbuff-fix-build-with-skb-extensions-disabled.patch [new file with mode: 0644]

index 2a0275760caec200f9a3a90355ebbae95aeb7e37..caeb3168c77ba08eaa292426353befcf3e7a5f18 100644 (file)
@@ -165,3 +165,4 @@ usb-ehci-prevent-missed-ehci-interrupts-with-edge-triggered-msi.patch
 drm-i915-gvt-clear-d3_entered-on-elsp-cmd-submission.patch
 sfc-ensure-correct-number-of-xdp-queues.patch
 xhci-add-xhci_get_virt_ep-helper.patch
+skbuff-fix-build-with-skb-extensions-disabled.patch
diff --git a/queue-5.10/skbuff-fix-build-with-skb-extensions-disabled.patch b/queue-5.10/skbuff-fix-build-with-skb-extensions-disabled.patch
new file mode 100644 (file)
index 0000000..2e5107b
--- /dev/null
@@ -0,0 +1,45 @@
+From 9615fe36b31d926f1c5107013b772dc226a6a7ca Mon Sep 17 00:00:00 2001
+From: Florian Fainelli <f.fainelli@gmail.com>
+Date: Wed, 7 Jul 2021 21:10:51 -0700
+Subject: skbuff: Fix build with SKB extensions disabled
+
+From: Florian Fainelli <f.fainelli@gmail.com>
+
+commit 9615fe36b31d926f1c5107013b772dc226a6a7ca upstream.
+
+We will fail to build with CONFIG_SKB_EXTENSIONS disabled after
+8550ff8d8c75 ("skbuff: Release nfct refcount on napi stolen or re-used
+skbs") since there is an unconditionally use of skb_ext_find() without
+an appropriate stub. Simply build the code conditionally and properly
+guard against both COFNIG_SKB_EXTENSIONS as well as
+CONFIG_NET_TC_SKB_EXT being disabled.
+
+Fixes: Fixes: 8550ff8d8c75 ("skbuff: Release nfct refcount on napi stolen or re-used skbs")
+Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
+Reviewed-by: Roi Dayan <roid@nvidia.com>
+Reviewed-by: Eric Dumazet <edumazet@google.com>
+Signed-off-by: David S. Miller <davem@davemloft.net>
+Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
+---
+ net/core/dev.c |    3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+--- a/net/core/dev.c
++++ b/net/core/dev.c
+@@ -5872,7 +5872,7 @@ static struct list_head *gro_list_prepar
+                                      maclen);
+               diffs |= skb_get_nfct(p) ^ skb_get_nfct(skb);
+-
++#if IS_ENABLED(CONFIG_SKB_EXTENSIONS) && IS_ENABLED(CONFIG_NET_TC_SKB_EXT)
+               if (!diffs) {
+                       struct tc_skb_ext *skb_ext = skb_ext_find(skb, TC_SKB_EXT);
+                       struct tc_skb_ext *p_ext = skb_ext_find(p, TC_SKB_EXT);
+@@ -5881,6 +5881,7 @@ static struct list_head *gro_list_prepar
+                       if (!diffs && unlikely(skb_ext))
+                               diffs |= p_ext->chain ^ skb_ext->chain;
+               }
++#endif
+               NAPI_GRO_CB(p)->same_flow = !diffs;
+       }