init_net.ipv4.sysctl_tcp_wmem[2] = max(64*1024, max_wshare);
 
        init_net.ipv4.sysctl_tcp_rmem[0] = SK_MEM_QUANTUM;
-       init_net.ipv4.sysctl_tcp_rmem[1] = 87380;
-       init_net.ipv4.sysctl_tcp_rmem[2] = max(87380, max_rshare);
+       init_net.ipv4.sysctl_tcp_rmem[1] = 131072;
+       init_net.ipv4.sysctl_tcp_rmem[2] = max(131072, max_rshare);
 
        pr_info("Hash tables configured (established %u bind %u)\n",
                tcp_hashinfo.ehash_mask + 1, tcp_hashinfo.bhash_size);
 
        }
 }
 
-/* 3. Tuning rcvbuf, when connection enters established state. */
-static void tcp_fixup_rcvbuf(struct sock *sk)
-{
-       u32 mss = tcp_sk(sk)->advmss;
-       int rcvmem;
-
-       rcvmem = 2 * SKB_TRUESIZE(mss + MAX_TCP_HEADER) *
-                tcp_default_init_rwnd(mss);
-
-       /* Dynamic Right Sizing (DRS) has 2 to 3 RTT latency
-        * Allow enough cushion so that sender is not limited by our window
-        */
-       if (sock_net(sk)->ipv4.sysctl_tcp_moderate_rcvbuf)
-               rcvmem <<= 2;
-
-       if (sk->sk_rcvbuf < rcvmem)
-               sk->sk_rcvbuf = min(rcvmem, sock_net(sk)->ipv4.sysctl_tcp_rmem[2]);
-}
-
-/* 4. Try to fixup all. It is made immediately after connection enters
+/* 3. Try to fixup all. It is made immediately after connection enters
  *    established state.
  */
 void tcp_init_buffer_space(struct sock *sk)
        struct tcp_sock *tp = tcp_sk(sk);
        int maxwin;
 
-       if (!(sk->sk_userlocks & SOCK_RCVBUF_LOCK))
-               tcp_fixup_rcvbuf(sk);
        if (!(sk->sk_userlocks & SOCK_SNDBUF_LOCK))
                tcp_sndbuf_expand(sk);
 
        tp->snd_cwnd_stamp = tcp_jiffies32;
 }
 
-/* 5. Recalculate window clamp after socket hit its memory bounds. */
+/* 4. Recalculate window clamp after socket hit its memory bounds. */
 static void tcp_clamp_window(struct sock *sk)
 {
        struct tcp_sock *tp = tcp_sk(sk);
 
        inet_csk_clear_xmit_timer(sk, ICSK_TIME_DACK);
 }
 
-
-u32 tcp_default_init_rwnd(u32 mss)
-{
-       /* Initial receive window should be twice of TCP_INIT_CWND to
-        * enable proper sending of new unsent data during fast recovery
-        * (RFC 3517, Section 4, NextSeg() rule (2)). Further place a
-        * limit when mss is larger than 1460.
-        */
-       u32 init_rwnd = TCP_INIT_CWND * 2;
-
-       if (mss > 1460)
-               init_rwnd = max((1460 * init_rwnd) / mss, 2U);
-       return init_rwnd;
-}
-
 /* Determine a window scaling and initial window to offer.
  * Based on the assumption that the given amount of space
  * will be offered. Store the results in the tp structure.
        if (sock_net(sk)->ipv4.sysctl_tcp_workaround_signed_windows)
                (*rcv_wnd) = min(space, MAX_TCP_WINDOW);
        else
-               (*rcv_wnd) = space;
+               (*rcv_wnd) = min_t(u32, space, U16_MAX);
+
+       if (init_rcv_wnd)
+               *rcv_wnd = min(*rcv_wnd, init_rcv_wnd * mss);
 
        (*rcv_wscale) = 0;
        if (wscale_ok) {
                        (*rcv_wscale)++;
                }
        }
-
-       if (!init_rcv_wnd) /* Use default unless specified otherwise */
-               init_rcv_wnd = tcp_default_init_rwnd(mss);
-       *rcv_wnd = min(*rcv_wnd, init_rcv_wnd * mss);
-
        /* Set the clamp no higher than max representable value */
        (*window_clamp) = min_t(__u32, U16_MAX << (*rcv_wscale), *window_clamp);
 }