From 46c7d0d1ab610701b91ac9ba465e63f51e80ee06 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 7 Mar 2016 17:56:58 +0000 Subject: kernel: remove linux 4.3 support Signed-off-by: Felix Fietkau SVN-Revision: 48955 --- .../patches-4.3/103-packet_allow_empty_payload.patch | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 target/linux/generic/patches-4.3/103-packet_allow_empty_payload.patch (limited to 'target/linux/generic/patches-4.3/103-packet_allow_empty_payload.patch') diff --git a/target/linux/generic/patches-4.3/103-packet_allow_empty_payload.patch b/target/linux/generic/patches-4.3/103-packet_allow_empty_payload.patch deleted file mode 100644 index ce37d5b360..0000000000 --- a/target/linux/generic/patches-4.3/103-packet_allow_empty_payload.patch +++ /dev/null @@ -1,17 +0,0 @@ -Fix a regression in the af_packet code that was breaking PPPoE - -pppd sends packets with only a header and no payload. - -Signed-off-by: Felix Fietkau - ---- a/net/packet/af_packet.c -+++ b/net/packet/af_packet.c -@@ -2329,7 +2329,7 @@ static void tpacket_destruct_skb(struct - static bool ll_header_truncated(const struct net_device *dev, int len) - { - /* net device doesn't like empty head */ -- if (unlikely(len <= dev->hard_header_len)) { -+ if (unlikely(len < dev->hard_header_len)) { - net_warn_ratelimited("%s: packet size is too short (%d <= %d)\n", - current->comm, len, dev->hard_header_len); - return true; -- cgit v1.2.3