net: usb: smsc75xx: fix mtu
authorStephane Fillod <fillods@users.sf.net>
Sun, 15 Apr 2012 11:38:29 +0000 (11:38 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 17 Apr 2012 03:54:22 +0000 (23:54 -0400)
Make smsc75xx recalculate the hard_mtu after adjusting the
hard_header_len.

Without this, usbnet adjusts the MTU down to 1492 bytes, and the host is
unable to receive standard 1500-byte frames from the device.

Inspired by same fix on cdc_eem 78fb72f7936c01d5b426c03a691eca082b03f2b9.

Tested on ARM/Omap3 with EVB-LAN7500-LC.

Signed-off-by: Stephane Fillod <fillods@users.sf.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/usb/smsc75xx.c

index 187d01ccb97367099b04ce40f8b44fe2824293d5..a2349483cd2ab1d36ac9eb5a192215ad23d93ba2 100644 (file)
@@ -1051,6 +1051,7 @@ static int smsc75xx_bind(struct usbnet *dev, struct usb_interface *intf)
        dev->net->ethtool_ops = &smsc75xx_ethtool_ops;
        dev->net->flags |= IFF_MULTICAST;
        dev->net->hard_header_len += SMSC75XX_TX_OVERHEAD;
+       dev->hard_mtu = dev->net->mtu + dev->net->hard_header_len;
        return 0;
 }