Hi, On Thu, Dec 07, 2017 at 03:03:35AM -0500, Michael Chan wrote: > --- a/drivers/net/ethernet/qlogic/qede/qede_ethtool.c > +++ b/drivers/net/ethernet/qlogic/qede/qede_ethtool.c > @@ -940,6 +940,9 @@ int qede_change_mtu(struct net_device *ndev, int new_mtu) > DP_VERBOSE(edev, (NETIF_MSG_IFUP | NETIF_MSG_IFDOWN), > "Configuring MTU size of %d\n", new_mtu); > > + if (new_mtu > PAGE_SIZE)
I don't know the specs for this card but if it needs to fit the whole packet in a page, maybe it should consider the ethernet header size in such checks? Marcelo