Re: [PATCH net-next] ipv4: ipv4_default_advmss() should use route mtu

2017-10-20 Thread David Miller
From: Eric Dumazet Date: Wed, 18 Oct 2017 17:02:03 -0700 > From: Eric Dumazet > > ipv4_default_advmss() incorrectly uses the device MTU instead > of the route provided one. IPv6 has the proper behavior, > lets harmonize the two protocols. > > Signed-off-by: Eric Dumazet Applied.

[PATCH net-next] ipv4: ipv4_default_advmss() should use route mtu

2017-10-18 Thread Eric Dumazet
From: Eric Dumazet ipv4_default_advmss() incorrectly uses the device MTU instead of the route provided one. IPv6 has the proper behavior, lets harmonize the two protocols. Signed-off-by: Eric Dumazet --- net/ipv4/route.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ne