diff options
author | Thomas Graf <tgraf@suug.ch> | 2005-08-20 20:25:52 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2005-08-29 19:02:57 -0400 |
commit | e9c604227391308b185aa6b14c7f93b0a0c2e51b (patch) | |
tree | 7562b6a91b5dacd25e19086a354cde1a281471af /net/ipv4/ip_input.c | |
parent | 58615242417638794a5ba299c49e3fbd6f47c2a3 (diff) |
[IPV4]: Avoid common branch misprediction while checking csum in ip_rcv()
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ip_input.c')
-rw-r--r-- | net/ipv4/ip_input.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ip_input.c b/net/ipv4/ip_input.c index 322b082ede1e..6a06e15694dc 100644 --- a/net/ipv4/ip_input.c +++ b/net/ipv4/ip_input.c | |||
@@ -400,7 +400,7 @@ int ip_rcv(struct sk_buff *skb, struct net_device *dev, struct packet_type *pt, | |||
400 | 400 | ||
401 | iph = skb->nh.iph; | 401 | iph = skb->nh.iph; |
402 | 402 | ||
403 | if (ip_fast_csum((u8 *)iph, iph->ihl) != 0) | 403 | if (unlikely(ip_fast_csum((u8 *)iph, iph->ihl))) |
404 | goto inhdr_error; | 404 | goto inhdr_error; |
405 | 405 | ||
406 | len = ntohs(iph->tot_len); | 406 | len = ntohs(iph->tot_len); |