diff options
Diffstat (limited to 'net/ipv4/tcp_ipv4.c')
| -rw-r--r-- | net/ipv4/tcp_ipv4.c | 7 | 
1 files changed, 1 insertions, 6 deletions
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c index 30ef0c8f5e92..b710958393e6 100644 --- a/net/ipv4/tcp_ipv4.c +++ b/net/ipv4/tcp_ipv4.c @@ -1144,14 +1144,9 @@ static void tcp_v4_reqsk_send_ack(const struct sock *sk, struct sk_buff *skb,  #endif  	} -	/* RFC 7323 2.3 -	 * The window field (SEG.WND) of every outgoing segment, with the -	 * exception of <SYN> segments, MUST be right-shifted by -	 * Rcv.Wind.Shift bits: -	 */  	tcp_v4_send_ack(sk, skb, seq,  			tcp_rsk(req)->rcv_nxt, -			req->rsk_rcv_wnd >> inet_rsk(req)->rcv_wscale, +			tcp_synack_window(req) >> inet_rsk(req)->rcv_wscale,  			tcp_rsk_tsval(tcp_rsk(req)),  			READ_ONCE(req->ts_recent),  			0, &key,  | 
