• Home
  • Raw
  • Download

Lines Matching refs:head

903 struct list_head *seq_list_start(struct list_head *head, loff_t pos)  in seq_list_start()  argument
907 list_for_each(lh, head) in seq_list_start()
915 struct list_head *seq_list_start_head(struct list_head *head, loff_t pos) in seq_list_start_head() argument
918 return head; in seq_list_start_head()
920 return seq_list_start(head, pos - 1); in seq_list_start_head()
924 struct list_head *seq_list_next(void *v, struct list_head *head, loff_t *ppos) in seq_list_next() argument
930 return lh == head ? NULL : lh; in seq_list_next()
934 struct list_head *seq_list_start_rcu(struct list_head *head, loff_t pos) in seq_list_start_rcu() argument
938 list_for_each_rcu(lh, head) in seq_list_start_rcu()
946 struct list_head *seq_list_start_head_rcu(struct list_head *head, loff_t pos) in seq_list_start_head_rcu() argument
949 return head; in seq_list_start_head_rcu()
951 return seq_list_start_rcu(head, pos - 1); in seq_list_start_head_rcu()
955 struct list_head *seq_list_next_rcu(void *v, struct list_head *head, in seq_list_next_rcu() argument
962 return lh == head ? NULL : lh; in seq_list_next_rcu()
973 struct hlist_node *seq_hlist_start(struct hlist_head *head, loff_t pos) in seq_hlist_start() argument
977 hlist_for_each(node, head) in seq_hlist_start()
992 struct hlist_node *seq_hlist_start_head(struct hlist_head *head, loff_t pos) in seq_hlist_start_head() argument
997 return seq_hlist_start(head, pos - 1); in seq_hlist_start_head()
1009 struct hlist_node *seq_hlist_next(void *v, struct hlist_head *head, in seq_hlist_next() argument
1016 return head->first; in seq_hlist_next()
1033 struct hlist_node *seq_hlist_start_rcu(struct hlist_head *head, in seq_hlist_start_rcu() argument
1038 __hlist_for_each_rcu(node, head) in seq_hlist_start_rcu()
1057 struct hlist_node *seq_hlist_start_head_rcu(struct hlist_head *head, in seq_hlist_start_head_rcu() argument
1063 return seq_hlist_start_rcu(head, pos - 1); in seq_hlist_start_head_rcu()
1080 struct hlist_head *head, in seq_hlist_next_rcu() argument
1087 return rcu_dereference(head->first); in seq_hlist_next_rcu()
1102 seq_hlist_start_percpu(struct hlist_head __percpu *head, int *cpu, loff_t pos) in seq_hlist_start_percpu() argument
1107 hlist_for_each(node, per_cpu_ptr(head, *cpu)) { in seq_hlist_start_percpu()
1126 seq_hlist_next_percpu(void *v, struct hlist_head __percpu *head, in seq_hlist_next_percpu() argument
1138 struct hlist_head *bucket = per_cpu_ptr(head, *cpu); in seq_hlist_next_percpu()