Re: [net-next] net: remove MTU limits for dummy and ifb device

2017-09-25 Thread David Miller
From: Zhang Shengju Date: Fri, 22 Sep 2017 23:57:49 +0800 > These two drivers (dummy and ifb) call ether_setup(), after commit > 61e84623ace3 ("net: centralize net_device min/max MTU checking"), the > range of mtu is [min_mtu, max_mtu], which is [68, 1500] by default. > > These two devices shoul

[net-next] net: remove MTU limits for dummy and ifb device

2017-09-22 Thread Zhang Shengju
These two drivers (dummy and ifb) call ether_setup(), after commit 61e84623ace3 ("net: centralize net_device min/max MTU checking"), the range of mtu is [min_mtu, max_mtu], which is [68, 1500] by default. These two devices should not have limits on MTU. This patch set their min_mtu/max_mtu to 0. S