diff options
Diffstat (limited to 'net/ipv4/tcp_output.c')
-rw-r--r-- | net/ipv4/tcp_output.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/tcp_output.c b/net/ipv4/tcp_output.c index e65c114feea2..dda42f0bd7a3 100644 --- a/net/ipv4/tcp_output.c +++ b/net/ipv4/tcp_output.c | |||
@@ -1334,7 +1334,7 @@ static int tcp_tso_should_defer(struct sock *sk, struct sk_buff *skb) | |||
1334 | 1334 | ||
1335 | /* Defer for less than two clock ticks. */ | 1335 | /* Defer for less than two clock ticks. */ |
1336 | if (tp->tso_deferred && | 1336 | if (tp->tso_deferred && |
1337 | ((jiffies << 1) >> 1) - (tp->tso_deferred >> 1) > 1) | 1337 | (((u32)jiffies << 1) >> 1) - (tp->tso_deferred >> 1) > 1) |
1338 | goto send_now; | 1338 | goto send_now; |
1339 | 1339 | ||
1340 | in_flight = tcp_packets_in_flight(tp); | 1340 | in_flight = tcp_packets_in_flight(tp); |