• Home
  • Raw
  • Download

Lines Matching refs:head

896 struct list_head *seq_list_start(struct list_head *head, loff_t pos)  in seq_list_start()  argument
900 list_for_each(lh, head) in seq_list_start()
908 struct list_head *seq_list_start_head(struct list_head *head, loff_t pos) in seq_list_start_head() argument
911 return head; in seq_list_start_head()
913 return seq_list_start(head, pos - 1); in seq_list_start_head()
917 struct list_head *seq_list_next(void *v, struct list_head *head, loff_t *ppos) in seq_list_next() argument
923 return lh == head ? NULL : lh; in seq_list_next()
934 struct hlist_node *seq_hlist_start(struct hlist_head *head, loff_t pos) in seq_hlist_start() argument
938 hlist_for_each(node, head) in seq_hlist_start()
953 struct hlist_node *seq_hlist_start_head(struct hlist_head *head, loff_t pos) in seq_hlist_start_head() argument
958 return seq_hlist_start(head, pos - 1); in seq_hlist_start_head()
970 struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head, in seq_hlist_next() argument
977 return head->first; in seq_hlist_next()
994 struct hlist_node *seq_hlist_start_rcu(struct hlist_head *head, in seq_hlist_start_rcu() argument
999 __hlist_for_each_rcu(node, head) in seq_hlist_start_rcu()
1018 struct hlist_node *seq_hlist_start_head_rcu(struct hlist_head *head, in seq_hlist_start_head_rcu() argument
1024 return seq_hlist_start_rcu(head, pos - 1); in seq_hlist_start_head_rcu()
1041 struct hlist_head *head, in seq_hlist_next_rcu() argument
1048 return rcu_dereference(head->first); in seq_hlist_next_rcu()
1063 seq_hlist_start_percpu(struct hlist_head __percpu *head, int *cpu, loff_t pos) in seq_hlist_start_percpu() argument
1068 hlist_for_each(node, per_cpu_ptr(head, *cpu)) { in seq_hlist_start_percpu()
1087 seq_hlist_next_percpu(void *v, struct hlist_head __percpu *head, in seq_hlist_next_percpu() argument
1099 struct hlist_head *bucket = per_cpu_ptr(head, *cpu); in seq_hlist_next_percpu()