aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/tcp_output.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv4/tcp_output.c')
-rw-r--r--net/ipv4/tcp_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c
index 90270cbdf42c..debf23581606 100644
--- a/net/ipv4/tcp_output.c
+++ b/net/ipv4/tcp_output.c
@@ -1057,7 +1057,7 @@ static unsigned int tcp_mss_split_point(struct sock *sk, struct sk_buff *skb,
1057 1057
1058 needed = min(skb->len, window); 1058 needed = min(skb->len, window);
1059 1059
1060 if (skb == tcp_write_queue_tail(sk) && cwnd_len <= needed) 1060 if (cwnd_len <= needed)
1061 return cwnd_len; 1061 return cwnd_len;
1062 1062
1063 return needed - needed % mss_now; 1063 return needed - needed % mss_now;