Lines Matching defs:node
355 * @sk_bind2_node: bind node in the bhash2 table
700 static inline struct sock *sk_entry(const struct hlist_node *node)
702 return hlist_entry(node, struct sock, sk_node);
748 static inline void sk_node_init(struct hlist_node *node)
750 node->pprev = NULL;
890 #define sk_nulls_for_each(__sk, node, list) \
891 hlist_nulls_for_each_entry(__sk, node, list, sk_nulls_node)
892 #define sk_nulls_for_each_rcu(__sk, node, list) \
893 hlist_nulls_for_each_entry_rcu(__sk, node, list, sk_nulls_node)
896 #define sk_nulls_for_each_from(__sk, node) \
897 if (__sk && ({ node = &(__sk)->sk_nulls_node; 1; })) \
898 hlist_nulls_for_each_entry_from(__sk, node, sk_nulls_node)
1368 struct list_head node;