diff options
Diffstat (limited to 'net/ipv4/tcp_output.c')
| -rw-r--r-- | net/ipv4/tcp_output.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 63170e29754..58f69acd3d2 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c @@ -1581,7 +1581,7 @@ static int tcp_tso_should_defer(struct sock *sk, struct sk_buff *skb)  		 * frame, so if we have space for more than 3 frames  		 * then send now.  		 */ -		if (limit > tcp_max_burst(tp) * tp->mss_cache) +		if (limit > tcp_max_tso_deferred_mss(tp) * tp->mss_cache)  			goto send_now;  	}  |