Commit c4146644 authored by Li Zefan's avatar Li Zefan Committed by David S. Miller

net: add a wrapper sk_entry()

Signed-off-by: default avatarLi Zefan <lizf@cn.fujitsu.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 66655de6
...@@ -317,6 +317,11 @@ struct sock { ...@@ -317,6 +317,11 @@ struct sock {
/* /*
* Hashed lists helper routines * 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) static inline struct sock *__sk_head(const struct hlist_head *head)
{ {
return hlist_entry(head->first, struct sock, sk_node); return hlist_entry(head->first, struct sock, sk_node);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment