# This is a BitKeeper generated diff -Nru style patch. # # ChangeSet # 2004/09/30 12:42:29-07:00 davem@nuts.davemloft.net # [TCP]: Check correct sequence number for URG in tcp_tso_acked(). # # Noticed by Herbert Xu. # # Signed-off-by: David S. Miller # # net/ipv4/tcp_input.c # 2004/09/30 12:41:57-07:00 davem@nuts.davemloft.net +1 -1 # [TCP]: Check correct sequence number for URG in tcp_tso_acked(). # diff -Nru a/net/ipv4/tcp_input.c b/net/ipv4/tcp_input.c --- a/net/ipv4/tcp_input.c 2004-09-30 21:02:47 -07:00 +++ b/net/ipv4/tcp_input.c 2004-09-30 21:02:47 -07:00 @@ -2410,7 +2410,7 @@ packets_acked); if (sacked & TCPCB_URG) { if (tp->urg_mode && - !before(orig_seq, tp->snd_up)) + !before(seq, tp->snd_up)) tp->urg_mode = 0; } } else if (*seq_rtt < 0)