|
@@ -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);
|