Message ID | 20221007225743.1633333-1-eric.dumazet@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | b64085b00044bdf3cd1c9825e9ef5b2e0feae91a |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net] macvlan: enforce a consistent minimal mtu | expand |
Hello: This patch was applied to netdev/net.git (master) by David S. Miller <davem@davemloft.net>: On Fri, 7 Oct 2022 15:57:43 -0700 you wrote: > From: Eric Dumazet <edumazet@google.com> > > macvlan should enforce a minimal mtu of 68, even at link creation. > > This patch avoids the current behavior (which could lead to crashes > in ipv6 stack if the link is brought up) > > [...] Here is the summary with links: - [net] macvlan: enforce a consistent minimal mtu https://git.kernel.org/netdev/net/c/b64085b00044 You are awesome, thank you!
diff --git a/drivers/net/macvlan.c b/drivers/net/macvlan.c index 713e3354cb2eb14cbf4009e67858c261508a037b..8f8f73099de8d8308b45b7e3bf9179e8311182ee 100644 --- a/drivers/net/macvlan.c +++ b/drivers/net/macvlan.c @@ -1192,7 +1192,7 @@ void macvlan_common_setup(struct net_device *dev) { ether_setup(dev); - dev->min_mtu = 0; + /* ether_setup() has set dev->min_mtu to ETH_MIN_MTU. */ dev->max_mtu = ETH_MAX_MTU; dev->priv_flags &= ~IFF_TX_SKB_SHARING; netif_keep_dst(dev);