summaryrefslogtreecommitdiffstats
path: root/linux-drd/0013-net-Start-with-correct-mac_len-in-skb_network_protoc...
diff options
context:
space:
mode:
authorGravatar Tom Willemse2014-06-02 09:04:19 +0200
committerGravatar Tom Willemse2014-06-02 09:04:19 +0200
commitbdf6f641a4e645b13a6f08157072e4d5408191ef (patch)
treeb0030edd223ed99a8500fbc4af9d1382315d8c6e /linux-drd/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
parent27d892a43be9d4326821442abc4451375de2ac87 (diff)
downloadpkgbuilds-bdf6f641a4e645b13a6f08157072e4d5408191ef.tar.gz
pkgbuilds-bdf6f641a4e645b13a6f08157072e4d5408191ef.zip
Update nvidia-drd to 337.19
Diffstat (limited to 'linux-drd/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch')
-rw-r--r--linux-drd/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/linux-drd/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch b/linux-drd/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
deleted file mode 100644
index 2840f19..0000000
--- a/linux-drd/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/net/core/dev.c b/net/core/dev.c
-index 45fa2f1..6088927 100644
---- a/net/core/dev.c
-+++ b/net/core/dev.c
-@@ -2289,7 +2289,7 @@ EXPORT_SYMBOL(skb_checksum_help);
- __be16 skb_network_protocol(struct sk_buff *skb, int *depth)
- {
- __be16 type = skb->protocol;
-- int vlan_depth = ETH_HLEN;
-+ int vlan_depth = skb->mac_len;
-
- /* Tunnel gso handlers can set protocol to ethernet. */
- if (type == htons(ETH_P_TEB)) {