From: David S. Miller Date: Wed, 24 Nov 2010 19:47:22 +0000 (-0800) Subject: tcp: Make TCP_MAXSEG minimum more correct. X-Git-Tag: firefly_0821_release~9833^2~71^2^2~97 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=60352f160a1a9d430f119a40924b0c3338ed5449;p=firefly-linux-kernel-4.4.55.git tcp: Make TCP_MAXSEG minimum more correct. [ Upstream commit c39508d6f118308355468314ff414644115a07f3 ] Use TCP_MIN_MSS instead of constant 64. Reported-by: Min Zhang Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/ipv4/tcp.c b/net/ipv4/tcp.c index 0e185e802d7d..6adb1abf05e0 100644 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@ -2246,7 +2246,7 @@ static int do_tcp_setsockopt(struct sock *sk, int level, /* Values greater than interface MTU won't take effect. However * at the point when this call is done we typically don't yet * know which interface is going to be used */ - if (val < 64 || val > MAX_TCP_WINDOW) { + if (val < TCP_MIN_MSS || val > MAX_TCP_WINDOW) { err = -EINVAL; break; }