tcp: Make use of before macro in tcp_input.c
Make use of tcp before macro. Signed-off-by: Arnd Hannemann <hannemann@nets.rwth-aachen.de> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
02651d20a3
commit
d7ee147d4f
1 changed files with 1 additions and 1 deletions
|
@ -2298,7 +2298,7 @@ static inline int tcp_packet_delayed(struct tcp_sock *tp)
|
|||
{
|
||||
return !tp->retrans_stamp ||
|
||||
(tp->rx_opt.saw_tstamp && tp->rx_opt.rcv_tsecr &&
|
||||
(__s32)(tp->rx_opt.rcv_tsecr - tp->retrans_stamp) < 0);
|
||||
before(tp->rx_opt.rcv_tsecr, tp->retrans_stamp));
|
||||
}
|
||||
|
||||
/* Undo procedures. */
|
||||
|
|
Loading…
Reference in a new issue