From: Greg Kroah-Hartman Date: Sun, 14 Nov 2021 12:53:07 +0000 (+0100) Subject: 5.14-stable patches X-Git-Tag: v5.4.160~99 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a8f2828a65d2c3b8359d8c8a1f2582136dc191cc;p=thirdparty%2Fkernel%2Fstable-queue.git 5.14-stable patches added patches: ifb-fix-building-without-config_net_cls_act.patch --- diff --git a/queue-5.14/ifb-fix-building-without-config_net_cls_act.patch b/queue-5.14/ifb-fix-building-without-config_net_cls_act.patch new file mode 100644 index 00000000000..9d258f1ffc2 --- /dev/null +++ b/queue-5.14/ifb-fix-building-without-config_net_cls_act.patch @@ -0,0 +1,38 @@ +From 7444d706be31753f65052c7f6325fc8470cc1789 Mon Sep 17 00:00:00 2001 +From: Arnd Bergmann +Date: Fri, 29 Oct 2021 13:30:51 +0200 +Subject: ifb: fix building without CONFIG_NET_CLS_ACT + +From: Arnd Bergmann + +commit 7444d706be31753f65052c7f6325fc8470cc1789 upstream. + +The driver no longer depends on this option, but it fails to +build if it's disabled because the skb->tc_skip_classify is +hidden behind an #ifdef: + +drivers/net/ifb.c:81:8: error: no member named 'tc_skip_classify' in 'struct sk_buff' + skb->tc_skip_classify = 1; + +Use the same #ifdef around the assignment. + +Fixes: 046178e726c2 ("ifb: Depend on netfilter alternatively to tc") +Signed-off-by: Arnd Bergmann +Signed-off-by: David S. Miller +Signed-off-by: Greg Kroah-Hartman +--- + drivers/net/ifb.c | 2 ++ + 1 file changed, 2 insertions(+) + +--- a/drivers/net/ifb.c ++++ b/drivers/net/ifb.c +@@ -76,7 +76,9 @@ static void ifb_ri_tasklet(struct taskle + + while ((skb = __skb_dequeue(&txp->tq)) != NULL) { + skb->redirected = 0; ++#ifdef CONFIG_NET_CLS_ACT + skb->tc_skip_classify = 1; ++#endif + + u64_stats_update_begin(&txp->tsync); + txp->tx_packets++; diff --git a/queue-5.14/series b/queue-5.14/series index fab4c846996..19d047971a5 100644 --- a/queue-5.14/series +++ b/queue-5.14/series @@ -162,3 +162,4 @@ iio-adc-tsc2046-fix-scan-interval-warning.patch powerpc-85xx-fix-oops-when-mpc85xx_smp_guts_ids-node-cannot-be-found.patch ring-buffer-protect-ring_buffer_reset-from-reentrancy.patch serial-core-fix-initializing-and-restoring-termios-speed.patch +ifb-fix-building-without-config_net_cls_act.patch