summaryrefslogtreecommitdiff
path: root/patches/0090-remove-GRO_CONSUMED.patch
blob: a2bf2cc62128c36399c8dfaefb34f3491249a15e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
GRO_CONSUMED was added in kernel commit 25393d3fc055 ("net: Prepare gro 
for packet consuming gro callbacks") in kernel 4.11. Just remove it for 
older kernel versions.

--- a/drivers/net/wireless/ath/wil6210/txrx.c
+++ b/drivers/net/wireless/ath/wil6210/txrx.c
@@ -750,7 +750,9 @@ void wil_netif_rx_any(struct sk_buff *sk
 		[GRO_HELD]		= "GRO_HELD",
 		[GRO_NORMAL]		= "GRO_NORMAL",
 		[GRO_DROP]		= "GRO_DROP",
+#if LINUX_VERSION_IS_GEQ(4,11,0)
 		[GRO_CONSUMED]		= "GRO_CONSUMED",
+#endif /* > 4.11 */
 	};
 
 	wil->txrx_ops.get_netif_rx_params(skb, &cid, &security);