|
@@ -236,7 +236,8 @@ void tcp_select_initial_window(int __space, __u32 mss,
|
|
|
/* Set window scaling on max possible window
|
|
|
* See RFC1323 for an explanation of the limit to 14
|
|
|
*/
|
|
|
- space = max_t(u32, sysctl_tcp_rmem[2], sysctl_rmem_max);
|
|
|
+ space = max_t(u32, space, sysctl_tcp_rmem[2]);
|
|
|
+ space = max_t(u32, space, sysctl_rmem_max);
|
|
|
space = min_t(u32, space, *window_clamp);
|
|
|
while (space > 65535 && (*rcv_wscale) < 14) {
|
|
|
space >>= 1;
|