diff options
| author | David S. Miller <davem@davemloft.net> | 2013-02-08 18:02:14 -0500 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2013-02-08 18:02:14 -0500 | 
| commit | fd5023111cf720db890ef34f305ac5d427e690a0 (patch) | |
| tree | 4d21e9a02bfbdafe5fc598af0755db791238dbe7 /net/ipv4/tcp_input.c | |
| parent | 8b9a4d56866e0dca6ae886ed9bff777e50d0b70c (diff) | |
| parent | 836dc9e3fbbab0c30aa6e664417225f5c1fb1c39 (diff) | |
| download | olio-linux-3.10-fd5023111cf720db890ef34f305ac5d427e690a0.tar.xz olio-linux-3.10-fd5023111cf720db890ef34f305ac5d427e690a0.zip  | |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Synchronize with 'net' in order to sort out some l2tp, wireless, and
ipv6 GRE fixes that will be built on top of in 'net-next'.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/tcp_input.c')
| -rw-r--r-- | net/ipv4/tcp_input.c | 8 | 
1 files changed, 6 insertions, 2 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c index f56bd1082f5..ea678b62e94 100644 --- a/net/ipv4/tcp_input.c +++ b/net/ipv4/tcp_input.c @@ -3476,8 +3476,7 @@ static bool tcp_process_frto(struct sock *sk, int flag)  	    ((tp->frto_counter >= 2) && (flag & FLAG_RETRANS_DATA_ACKED)))  		tp->undo_marker = 0; -	if (!before(tp->snd_una, tp->frto_highmark) || -	    !tcp_packets_in_flight(tp)) { +	if (!before(tp->snd_una, tp->frto_highmark)) {  		tcp_enter_frto_loss(sk, (tp->frto_counter == 1 ? 2 : 3), flag);  		return true;  	} @@ -3497,6 +3496,11 @@ static bool tcp_process_frto(struct sock *sk, int flag)  		}  	} else {  		if (!(flag & FLAG_DATA_ACKED) && (tp->frto_counter == 1)) { +			if (!tcp_packets_in_flight(tp)) { +				tcp_enter_frto_loss(sk, 2, flag); +				return true; +			} +  			/* Prevent sending of new data. */  			tp->snd_cwnd = min(tp->snd_cwnd,  					   tcp_packets_in_flight(tp));  |