Hi all, Today's linux-next merge of the net-next tree got a conflict in: net/ipv4/tcp.c between commit: 04c03114be82 ("tcp: clear icsk_backoff in tcp_write_queue_purge()") from the net tree and commit: 3a9a57f63794 ("tcp: move snd_cwnd & snd_cwnd_cnt init to tcp_disconnect()") from the net-next tree. I fixed it up (see below) and can carry the fix as necessary. This is now fixed as far as linux-next is concerned, but any non trivial conflicts should be mentioned to your upstream maintainer when your tree is submitted for merging. You may also want to consider cooperating with the maintainer of the conflicting tree to minimise any particularly complex conflicts. -- Cheers, Stephen Rothwell diff --cc net/ipv4/tcp.c index cf3c5095c10e,cab6b2f2f61d..000000000000 --- a/net/ipv4/tcp.c +++ b/net/ipv4/tcp.c @@@ -2577,9 -2595,11 +2596,10 @@@ int tcp_disconnect(struct sock *sk, in tp->write_seq += tp->max_window + 2; if (tp->write_seq == 0) tp->write_seq = 1; - tp->snd_cwnd = 2; - icsk->icsk_backoff = 0; icsk->icsk_probes_out = 0; + icsk->icsk_rto = TCP_TIMEOUT_INIT; tp->snd_ssthresh = TCP_INFINITE_SSTHRESH; + tp->snd_cwnd = TCP_INIT_CWND; tp->snd_cwnd_cnt = 0; tp->window_clamp = 0; tp->delivered_ce = 0;