]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
ipv4: Raise tcp PMTU probe mss base size
authorFan Du <fan.du@intel.com>
Fri, 6 Mar 2015 03:18:22 +0000 (11:18 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 6 Mar 2015 19:57:41 +0000 (14:57 -0500)
Quotes from RFC4821 7.2.  Selecting Initial Values

   It is RECOMMENDED that search_low be initially set to an MTU size
   that is likely to work over a very wide range of environments.  Given
   today's technologies, a value of 1024 bytes is probably safe enough.
   The initial value for search_low SHOULD be configurable.

Moreover, set a small value will introduce extra time for the search
to converge. So set the initial probe base mss size to 1024 Bytes.

Signed-off-by: Fan Du <fan.du@intel.com>
Acked-by: John Heffner <johnwheffner@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/tcp.h

index f87599d5af8236148dff21cb4d1ff1c708ed1c8a..834089b0cffc745088a112f9e9b1c3b3cf0c4051 100644 (file)
@@ -65,7 +65,7 @@ void tcp_time_wait(struct sock *sk, int state, int timeo);
 #define TCP_MIN_MSS            88U
 
 /* The least MTU to use for probing */
-#define TCP_BASE_MSS           512
+#define TCP_BASE_MSS           1024
 
 /* After receiving this amount of duplicate ACKs fast retransmit starts. */
 #define TCP_FASTRETRANS_THRESH 3