net: add a wrapper sk_entry()
authorLi Zefan <lizf@cn.fujitsu.com>
Mon, 8 Feb 2010 23:18:45 +0000 (23:18 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 10 Feb 2010 19:12:07 +0000 (11:12 -0800)
Signed-off-by: Li Zefan <lizf@cn.fujitsu.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/sock.h

index 3f1a480..c8d4000 100644 (file)
@@ -317,6 +317,11 @@ struct sock {
 /*
  * Hashed lists helper routines
  */
+static inline struct sock *sk_entry(const struct hlist_node *node)
+{
+       return hlist_entry(node, struct sock, sk_node);
+}
+
 static inline struct sock *__sk_head(const struct hlist_head *head)
 {
        return hlist_entry(head->first, struct sock, sk_node);