aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Dumazet <[email protected]>2012-05-28 22:31:41 +0000
committerDavid S. Miller <[email protected]>2012-05-29 17:30:07 -0400
commit9dae31009b1a00d926c6fe032d5a88099620adc3 (patch)
tree97cd6bd5a843cd1ca2faee3a28ed99f09e749357
parenta0c6ffbcfe600606b2d913dded4dc6b37b3bbbfd (diff)
asix: allow full size 8021Q frames to be received
asix driver drops 8021Q full size frames because it doesn't take into account VLAN header size. Tested on AX88772 adapter. Signed-off-by: Eric Dumazet <[email protected]> CC: Greg Kroah-Hartman <[email protected]> CC: Allan Chou <[email protected]> CC: Trond Wuellner <[email protected]> CC: Grant Grundler <[email protected]> CC: Paul Stewart <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--drivers/net/usb/asix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/usb/asix.c b/drivers/net/usb/asix.c
index 71e2b0523bc2..3ae80eccd0ef 100644
--- a/drivers/net/usb/asix.c
+++ b/drivers/net/usb/asix.c
@@ -35,6 +35,7 @@
#include <linux/crc32.h>
#include <linux/usb/usbnet.h>
#include <linux/slab.h>
+#include <linux/if_vlan.h>
#define DRIVER_VERSION "22-Dec-2011"
#define DRIVER_NAME "asix"
@@ -321,7 +322,7 @@ static int asix_rx_fixup(struct usbnet *dev, struct sk_buff *skb)
return 0;
}
- if ((size > dev->net->mtu + ETH_HLEN) ||
+ if ((size > dev->net->mtu + ETH_HLEN + VLAN_HLEN) ||
(size + offset > skb->len)) {
netdev_err(dev->net, "asix_rx_fixup() Bad RX Length %d\n",
size);