aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2013-03-27 13:52:49 -0400
committerDavid S. Miller <davem@davemloft.net>2013-03-27 13:52:49 -0400
commite2a553dbf18a5177fdebe29495c32a8e7fd3a4db (patch)
tree5ccb3d498325a7aaf93f49549eca03cb7861ca1c /net/ipv4
parent7559d97993ae7d552c96313155286f372cf4cf7c (diff)
parenta8c45289f215e137825bf9630d0abb41c1dc41ff (diff)
Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: include/net/ipip.h The changes made to ipip.h in 'net' were already included in 'net-next' before that header was moved to another location. Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r--net/ipv4/tcp_input.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c
index b2b36196b342..6d9ca35f0c35 100644
--- a/net/ipv4/tcp_input.c
+++ b/net/ipv4/tcp_input.c
@@ -1858,11 +1858,8 @@ void tcp_enter_loss(struct sock *sk, int how)
1858 if (tcp_is_reno(tp)) 1858 if (tcp_is_reno(tp))
1859 tcp_reset_reno_sack(tp); 1859 tcp_reset_reno_sack(tp);
1860 1860
1861 if (!how) { 1861 tp->undo_marker = tp->snd_una;
1862 /* Push undo marker, if it was plain RTO and nothing 1862 if (how) {
1863 * was retransmitted. */
1864 tp->undo_marker = tp->snd_una;
1865 } else {
1866 tp->sacked_out = 0; 1863 tp->sacked_out = 0;
1867 tp->fackets_out = 0; 1864 tp->fackets_out = 0;
1868 } 1865 }