diff options
author | Enrico Weigelt <info@metux.net> | 2019-06-06 00:09:05 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-06-06 02:57:23 +0300 |
commit | 88e235b80c2ad9117e153f2651857142d2d65db9 (patch) | |
tree | 1b5d34e5c6ad597d8124193b585bf46144933d58 /net/ipv4/inet_hashtables.c | |
parent | b90f5aa4d6268e81dd1fd51e5ef89d2892bf040d (diff) | |
download | linux-88e235b80c2ad9117e153f2651857142d2d65db9.tar.xz |
net: ipv4: drop unneeded likely() call around IS_ERR()
IS_ERR() already calls unlikely(), so this extra unlikely() call
around IS_ERR() is not needed.
Signed-off-by: Enrico Weigelt <info@metux.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/inet_hashtables.c')
-rw-r--r-- | net/ipv4/inet_hashtables.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c index 942265d65eb3..af28f332ba89 100644 --- a/net/ipv4/inet_hashtables.c +++ b/net/ipv4/inet_hashtables.c @@ -320,7 +320,7 @@ struct sock *__inet_lookup_listener(struct net *net, saddr, sport, htonl(INADDR_ANY), hnum, dif, sdif); done: - if (unlikely(IS_ERR(result))) + if (IS_ERR(result)) return NULL; return result; } |