]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
USB: Gadget Ethernet: Re-enable Jumbo frames.
authorJohn Greb <h3x4m3r0n@gmail.com>
Sun, 6 May 2018 20:01:57 +0000 (20:01 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Feb 2021 13:00:34 +0000 (14:00 +0100)
commit eea52743eb5654ec6f52b0e8b4aefec952543697 upstream

Fixes: <b3e3893e1253> ("net: use core MTU range checking")
which patched only one of two functions used to setup the
USB Gadget Ethernet driver, causing a serious performance
regression in the ability to increase mtu size above 1500.

Signed-off-by: John Greb <h3x4m3r0n@gmail.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
Signed-off-by: Sudip Mukherjee <sudipm.mukherjee@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/function/u_ether.c

index 716edd593a994ac71a8c303c969a178a3ca4db76..0b24c365d988e66b4669f73918dc7a1ce6f5f791 100644 (file)
@@ -850,6 +850,10 @@ struct net_device *gether_setup_name_default(const char *netname)
        net->ethtool_ops = &ops;
        SET_NETDEV_DEVTYPE(net, &gadget_type);
 
+       /* MTU range: 14 - 15412 */
+       net->min_mtu = ETH_HLEN;
+       net->max_mtu = GETHER_MAX_ETH_FRAME_LEN;
+
        return net;
 }
 EXPORT_SYMBOL_GPL(gether_setup_name_default);