cxgbe(4): Allow the interface MTU to be set as high as the actual
hardware limit. Submitted by: jpaetzel@ Differential Revision: https://reviews.freebsd.org/D8237
This commit is contained in:
parent
786a65db12
commit
3ee632a828
@ -1567,7 +1567,7 @@ cxgbe_ioctl(struct ifnet *ifp, unsigned long cmd, caddr_t data)
|
||||
switch (cmd) {
|
||||
case SIOCSIFMTU:
|
||||
mtu = ifr->ifr_mtu;
|
||||
if ((mtu < ETHERMIN) || (mtu > ETHERMTU_JUMBO))
|
||||
if (mtu < ETHERMIN || mtu > MAX_MTU)
|
||||
return (EINVAL);
|
||||
|
||||
rc = begin_synchronized_op(sc, vi, SLEEP_OK | INTR_OK, "t4mtu");
|
||||
|
Loading…
Reference in New Issue
Block a user