summaryrefslogtreecommitdiff
path: root/libre/linux-libre/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-04-28 19:15:42 -0300
committerAndré Fabian Silva Delgado <emulatorman@parabola.nu>2014-04-28 19:15:42 -0300
commit44c19d76159111c76a1bf24fe52c767d447193a2 (patch)
tree31008b8785dba159c3cb35d126ccfcad6040bc65 /libre/linux-libre/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
parent4ec82fd2d3a786cf36be8e6684f75b6287e31e34 (diff)
downloadabslibre-44c19d76159111c76a1bf24fe52c767d447193a2.tar.gz
abslibre-44c19d76159111c76a1bf24fe52c767d447193a2.tar.bz2
abslibre-44c19d76159111c76a1bf24fe52c767d447193a2.zip
linux-libre-3.14.2-1: updating version
* added fixes for i810 hang, uefi xsdt issue, saa7134, tun speed
Diffstat (limited to 'libre/linux-libre/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch')
-rw-r--r--libre/linux-libre/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/libre/linux-libre/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch b/libre/linux-libre/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
new file mode 100644
index 000000000..2840f190c
--- /dev/null
+++ b/libre/linux-libre/0013-net-Start-with-correct-mac_len-in-skb_network_protocol.patch
@@ -0,0 +1,13 @@
+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)) {