diff options
author | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-02 18:55:55 +0200 |
---|---|---|
committer | Álvaro Fernández Rojas <noltari@gmail.com> | 2019-08-02 18:55:55 +0200 |
commit | 00813d4dd976cc823fa089840ff2f4a10dd6cd0c (patch) | |
tree | 8f2c74a928c9ea0eceb64809d9039db824ae6663 /target/linux/brcm2708/patches-4.14/950-0317-ifb-fix-packets-checksum.patch | |
parent | 19226502bf6393706defe7f049c587b32c9b4f33 (diff) | |
download | upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.tar.gz upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.tar.bz2 upstream-00813d4dd976cc823fa089840ff2f4a10dd6cd0c.zip |
brcm2708: remove linux 4.14 support
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Diffstat (limited to 'target/linux/brcm2708/patches-4.14/950-0317-ifb-fix-packets-checksum.patch')
-rw-r--r-- | target/linux/brcm2708/patches-4.14/950-0317-ifb-fix-packets-checksum.patch | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/target/linux/brcm2708/patches-4.14/950-0317-ifb-fix-packets-checksum.patch b/target/linux/brcm2708/patches-4.14/950-0317-ifb-fix-packets-checksum.patch deleted file mode 100644 index 43203bc414..0000000000 --- a/target/linux/brcm2708/patches-4.14/950-0317-ifb-fix-packets-checksum.patch +++ /dev/null @@ -1,31 +0,0 @@ -From 258289e9f25dae86004eea357177ac9c372addc7 Mon Sep 17 00:00:00 2001 -From: Jon Maxwell <jmaxwell37@gmail.com> -Date: Fri, 25 May 2018 07:38:29 +1000 -Subject: [PATCH 317/454] ifb: fix packets checksum - -commit b1d2e4e03f92734ff524f96c4b2287133de7a4a3 upstream. - -Fixup the checksum for CHECKSUM_COMPLETE when pulling skbs on RX path. -Otherwise we get splats when tc mirred is used to redirect packets to ifb. - -Before fix: - -nic: hw csum failure - -Signed-off-by: Jon Maxwell <jmaxwell37@gmail.com> -Signed-off-by: David S. Miller <davem@davemloft.net> ---- - drivers/net/ifb.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - ---- a/drivers/net/ifb.c -+++ b/drivers/net/ifb.c -@@ -102,7 +102,7 @@ static void ifb_ri_tasklet(unsigned long - if (!skb->tc_from_ingress) { - dev_queue_xmit(skb); - } else { -- skb_pull(skb, skb->mac_len); -+ skb_pull_rcsum(skb, skb->mac_len); - netif_receive_skb(skb); - } - } |