diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2005-04-20 01:27:09 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-04-20 01:27:09 -0400 |
commit | fd92833a52b972aafacced959f4a3f7541936a9b (patch) | |
tree | 78d8e11eca4d84b91f5be4a28ad81ba523f9dc65 /net/ipv6/addrconf.c | |
parent | c4d541106bc5d0a2134aaf9e8735eee3c70b0db2 (diff) |
[IPV6]: Fix a branch prediction
From: Tushar Gohad <tgohad@mvista.com>
Signed-off-by: Hideaki YOSHIFUJI <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/addrconf.c')
-rw-r--r-- | net/ipv6/addrconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index 5ffde14ddc09..7196ac2f2d16 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c | |||
@@ -571,7 +571,7 @@ ipv6_add_addr(struct inet6_dev *idev, const struct in6_addr *addr, int pfxlen, | |||
571 | out2: | 571 | out2: |
572 | read_unlock_bh(&addrconf_lock); | 572 | read_unlock_bh(&addrconf_lock); |
573 | 573 | ||
574 | if (unlikely(err == 0)) | 574 | if (likely(err == 0)) |
575 | notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa); | 575 | notifier_call_chain(&inet6addr_chain, NETDEV_UP, ifa); |
576 | else { | 576 | else { |
577 | kfree(ifa); | 577 | kfree(ifa); |