OSDN Git Service

sock: use hlist_entry_safe
authorGeliang Tang <geliangtang@gmail.com>
Fri, 20 Jan 2017 14:27:04 +0000 (22:27 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 20 Jan 2017 16:38:45 +0000 (11:38 -0500)
Use hlist_entry_safe() instead of open-coding it.

Signed-off-by: Geliang Tang <geliangtang@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sock.h

index 389a0a6..7144750 100644 (file)
@@ -544,8 +544,7 @@ static inline struct sock *sk_nulls_head(const struct hlist_nulls_head *head)
 
 static inline struct sock *sk_next(const struct sock *sk)
 {
-       return sk->sk_node.next ?
-               hlist_entry(sk->sk_node.next, struct sock, sk_node) : NULL;
+       return hlist_entry_safe(sk->sk_node.next, struct sock, sk_node);
 }
 
 static inline struct sock *sk_nulls_next(const struct sock *sk)