summaryrefslogtreecommitdiff
path: root/kernels/linux-libre-pae/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
diff options
context:
space:
mode:
authorAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-06-03 20:49:37 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-06-03 20:49:37 -0300
commit65e43c50eb646f01ca53fd6e4f601329b9262c88 (patch)
tree5696639964d59d4e9b6b4d7e762be26203516d62 /kernels/linux-libre-pae/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
parent8ddbba3b99414afc8c51b2702b21b1f03f99fff3 (diff)
linux-libre-{pae,xen}-3.14.5-1: updating version
Diffstat (limited to 'kernels/linux-libre-pae/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch')
-rw-r--r--kernels/linux-libre-pae/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/kernels/linux-libre-pae/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch b/kernels/linux-libre-pae/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
deleted file mode 100644
index 2840f190c..000000000
--- a/kernels/linux-libre-pae/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)) {