diff options
Diffstat (limited to 'net/ipv4/tcp_output.c')
-rw-r--r-- | net/ipv4/tcp_output.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index 030fc69ea217..546f385a405f 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
@@ -80,6 +80,10 @@ static void update_send_head(struct sock *sk, struct sk_buff *skb) | |||
80 | tcp_advance_send_head(sk, skb); | 80 | tcp_advance_send_head(sk, skb); |
81 | tp->snd_nxt = TCP_SKB_CB(skb)->end_seq; | 81 | tp->snd_nxt = TCP_SKB_CB(skb)->end_seq; |
82 | tcp_packets_out_inc(sk, skb); | 82 | tcp_packets_out_inc(sk, skb); |
83 | |||
84 | /* Don't override Nagle indefinately with F-RTO */ | ||
85 | if (tp->frto_counter == 2) | ||
86 | tp->frto_counter = 3; | ||
83 | } | 87 | } |
84 | 88 | ||
85 | /* SND.NXT, if window was not shrunk. | 89 | /* SND.NXT, if window was not shrunk. |