Skip to content
Snippets Groups Projects
Commit 30a3ae30 authored by Herbert Xu's avatar Herbert Xu Committed by David S. Miller
Browse files

tcp: Optimise len/mss comparison


Instead of checking len > mss || len == 0, we can accomplish
both by checking (len - 1) > mss using the unsigned wraparound.
At nearly a million times a second, this might just help.

Signed-off-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 4a9a2968
No related branches found
No related tags found
No related merge requests found
......@@ -2566,7 +2566,7 @@ struct sk_buff **tcp_gro_receive(struct sk_buff **head, struct sk_buff *skb)
mss = skb_shinfo(p)->gso_size;
flush |= (len > mss) | !len;
flush |= (len - 1) >= mss;
flush |= (ntohl(th2->seq) + skb_gro_len(p)) ^ ntohl(th->seq);
if (flush || skb_gro_receive(head, skb)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment