blob: 6f935018ea056a2ba87d12961aeb3c2fd6d673b8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_LIST_H
2#define _LINUX_LIST_H
3
Chris Metcalfde5d9bf2010-07-02 13:41:14 -04004#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/stddef.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -07006#include <linux/poison.h>
Linus Torvaldse66eed62011-05-19 14:15:29 -07007#include <linux/const.h>
Masahiro Yamada8b21d9c2014-10-13 15:51:30 -07008#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Simple doubly linked list implementation.
12 *
13 * Some of the internal functions ("__xxx") are useful when
14 * manipulating whole lists rather than single entries, as
15 * sometimes we already know the next/prev entries and we can
16 * generate better code by using them directly rather than
17 * using the generic single-entry routines.
18 */
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define LIST_HEAD_INIT(name) { &(name), &(name) }
21
22#define LIST_HEAD(name) \
23 struct list_head name = LIST_HEAD_INIT(name)
24
Zach Brown490d6ab2006-02-03 03:03:56 -080025static inline void INIT_LIST_HEAD(struct list_head *list)
26{
Paul E. McKenney2f073842015-10-12 16:56:42 -070027 WRITE_ONCE(list->next, list);
Zach Brown490d6ab2006-02-03 03:03:56 -080028 list->prev = list;
29}
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/*
32 * Insert a new entry between two known consecutive entries.
33 *
34 * This is only for internal list manipulation where we know
35 * the prev/next entries already!
36 */
Dave Jones199a9af2006-09-29 01:59:00 -070037#ifndef CONFIG_DEBUG_LIST
Linus Torvalds1da177e2005-04-16 15:20:36 -070038static inline void __list_add(struct list_head *new,
39 struct list_head *prev,
40 struct list_head *next)
41{
42 next->prev = new;
43 new->next = next;
44 new->prev = prev;
Paul E. McKenney1c97be62015-09-20 22:02:17 -070045 WRITE_ONCE(prev->next, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046}
Dave Jones199a9af2006-09-29 01:59:00 -070047#else
48extern void __list_add(struct list_head *new,
49 struct list_head *prev,
50 struct list_head *next);
51#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53/**
54 * list_add - add a new entry
55 * @new: new entry to be added
56 * @head: list head to add it after
57 *
58 * Insert a new entry after the specified head.
59 * This is good for implementing stacks.
60 */
61static inline void list_add(struct list_head *new, struct list_head *head)
62{
63 __list_add(new, head, head->next);
64}
Dave Jones199a9af2006-09-29 01:59:00 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066
67/**
68 * list_add_tail - add a new entry
69 * @new: new entry to be added
70 * @head: list head to add it before
71 *
72 * Insert a new entry before the specified head.
73 * This is useful for implementing queues.
74 */
75static inline void list_add_tail(struct list_head *new, struct list_head *head)
76{
77 __list_add(new, head->prev, head);
78}
79
80/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 * Delete a list entry by making the prev/next entries
82 * point to each other.
83 *
84 * This is only for internal list manipulation where we know
85 * the prev/next entries already!
86 */
87static inline void __list_del(struct list_head * prev, struct list_head * next)
88{
89 next->prev = prev;
Paul E. McKenney7f5f8732015-09-18 08:45:22 -070090 WRITE_ONCE(prev->next, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -070091}
92
93/**
94 * list_del - deletes entry from list.
95 * @entry: the element to delete from the list.
Robert P. J. Day72fd4a32007-02-10 01:45:59 -080096 * Note: list_empty() on entry does not return true after this, the entry is
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * in an undefined state.
98 */
Dave Jones199a9af2006-09-29 01:59:00 -070099#ifndef CONFIG_DEBUG_LIST
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800100static inline void __list_del_entry(struct list_head *entry)
101{
102 __list_del(entry->prev, entry->next);
103}
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105static inline void list_del(struct list_head *entry)
106{
107 __list_del(entry->prev, entry->next);
108 entry->next = LIST_POISON1;
109 entry->prev = LIST_POISON2;
110}
Dave Jones199a9af2006-09-29 01:59:00 -0700111#else
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800112extern void __list_del_entry(struct list_head *entry);
Dave Jones199a9af2006-09-29 01:59:00 -0700113extern void list_del(struct list_head *entry);
114#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
116/**
Oleg Nesterov54e73772006-06-23 02:05:54 -0700117 * list_replace - replace old entry by new one
118 * @old : the element to be replaced
119 * @new : the new element to insert
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800120 *
121 * If @old was empty, it will be overwritten.
Oleg Nesterov54e73772006-06-23 02:05:54 -0700122 */
123static inline void list_replace(struct list_head *old,
124 struct list_head *new)
125{
126 new->next = old->next;
127 new->next->prev = new;
128 new->prev = old->prev;
129 new->prev->next = new;
130}
131
132static inline void list_replace_init(struct list_head *old,
133 struct list_head *new)
134{
135 list_replace(old, new);
136 INIT_LIST_HEAD(old);
137}
138
Robert P. J. Day45f8bde2007-01-26 00:57:09 -0800139/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 * list_del_init - deletes entry from list and reinitialize it.
141 * @entry: the element to delete from the list.
142 */
143static inline void list_del_init(struct list_head *entry)
144{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800145 __list_del_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146 INIT_LIST_HEAD(entry);
147}
148
149/**
150 * list_move - delete from one list and add as another's head
151 * @list: the entry to move
152 * @head: the head that will precede our entry
153 */
154static inline void list_move(struct list_head *list, struct list_head *head)
155{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800156 __list_del_entry(list);
Daniel Walker78db2ad2007-05-12 16:28:35 -0700157 list_add(list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158}
159
160/**
161 * list_move_tail - delete from one list and add as another's tail
162 * @list: the entry to move
163 * @head: the head that will follow our entry
164 */
165static inline void list_move_tail(struct list_head *list,
166 struct list_head *head)
167{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800168 __list_del_entry(list);
Daniel Walker78db2ad2007-05-12 16:28:35 -0700169 list_add_tail(list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170}
171
172/**
Shailabh Nagare8f4d972006-07-14 00:24:35 -0700173 * list_is_last - tests whether @list is the last entry in list @head
174 * @list: the entry to test
175 * @head: the head of the list
176 */
177static inline int list_is_last(const struct list_head *list,
178 const struct list_head *head)
179{
180 return list->next == head;
181}
182
183/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 * list_empty - tests whether a list is empty
185 * @head: the list to test.
186 */
187static inline int list_empty(const struct list_head *head)
188{
Paul E. McKenney1658d352015-09-20 17:03:16 -0700189 return READ_ONCE(head->next) == head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190}
191
192/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700193 * list_empty_careful - tests whether a list is empty and not being modified
194 * @head: the list to test
195 *
196 * Description:
197 * tests whether a list is empty _and_ checks that no other CPU might be
198 * in the process of modifying either member (next or prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 *
200 * NOTE: using list_empty_careful() without synchronization
201 * can only be safe if the only activity that can happen
202 * to the list entry is list_del_init(). Eg. it cannot be used
203 * if another CPU could re-list_add() it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 */
205static inline int list_empty_careful(const struct list_head *head)
206{
207 struct list_head *next = head->next;
208 return (next == head) && (next == head->prev);
209}
210
Masami Hiramatsu99602572008-04-28 02:14:27 -0700211/**
Frederic Weisbecker5908cdc2010-01-09 20:53:14 +0100212 * list_rotate_left - rotate the list to the left
213 * @head: the head of the list
214 */
215static inline void list_rotate_left(struct list_head *head)
216{
217 struct list_head *first;
218
219 if (!list_empty(head)) {
220 first = head->next;
221 list_move_tail(first, head);
222 }
223}
224
225/**
Masami Hiramatsu99602572008-04-28 02:14:27 -0700226 * list_is_singular - tests whether a list has just one entry.
227 * @head: the list to test.
228 */
229static inline int list_is_singular(const struct list_head *head)
230{
231 return !list_empty(head) && (head->next == head->prev);
232}
233
Luis R. Rodriguez00e8a4d2008-08-06 13:28:54 -0700234static inline void __list_cut_position(struct list_head *list,
235 struct list_head *head, struct list_head *entry)
236{
237 struct list_head *new_first = entry->next;
238 list->next = head->next;
239 list->next->prev = list;
240 list->prev = entry;
241 entry->next = list;
242 head->next = new_first;
243 new_first->prev = head;
244}
245
246/**
247 * list_cut_position - cut a list into two
248 * @list: a new list to add all removed entries
249 * @head: a list with entries
250 * @entry: an entry within head, could be the head itself
251 * and if so we won't cut the list
252 *
253 * This helper moves the initial part of @head, up to and
254 * including @entry, from @head to @list. You should
255 * pass on @entry an element you know is on @head. @list
256 * should be an empty list or a list you do not care about
257 * losing its data.
258 *
259 */
260static inline void list_cut_position(struct list_head *list,
261 struct list_head *head, struct list_head *entry)
262{
263 if (list_empty(head))
264 return;
265 if (list_is_singular(head) &&
266 (head->next != entry && head != entry))
267 return;
268 if (entry == head)
269 INIT_LIST_HEAD(list);
270 else
271 __list_cut_position(list, head, entry);
272}
273
Sasha Levinfc7fab72019-05-16 21:30:49 -0400274/**
275 * list_cut_before - cut a list into two, before given entry
276 * @list: a new list to add all removed entries
277 * @head: a list with entries
278 * @entry: an entry within head, could be the head itself
279 *
280 * This helper moves the initial part of @head, up to but
281 * excluding @entry, from @head to @list. You should pass
282 * in @entry an element you know is on @head. @list should
283 * be an empty list or a list you do not care about losing
284 * its data.
285 * If @entry == @head, all entries on @head are moved to
286 * @list.
287 */
288static inline void list_cut_before(struct list_head *list,
289 struct list_head *head,
290 struct list_head *entry)
291{
292 if (head->next == entry) {
293 INIT_LIST_HEAD(list);
294 return;
295 }
296 list->next = head->next;
297 list->next->prev = list;
298 list->prev = entry->prev;
299 list->prev->next = list;
300 head->next = entry;
301 entry->prev = head;
302}
303
Robert P. J. Day95d8c362008-04-29 00:59:29 -0700304static inline void __list_splice(const struct list_head *list,
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700305 struct list_head *prev,
306 struct list_head *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307{
308 struct list_head *first = list->next;
309 struct list_head *last = list->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700311 first->prev = prev;
312 prev->next = first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700314 last->next = next;
315 next->prev = last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318/**
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700319 * list_splice - join two lists, this is designed for stacks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 * @list: the new list to add.
321 * @head: the place to add it in the first list.
322 */
Robert P. J. Day95d8c362008-04-29 00:59:29 -0700323static inline void list_splice(const struct list_head *list,
324 struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 if (!list_empty(list))
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700327 __list_splice(list, head, head->next);
328}
329
330/**
331 * list_splice_tail - join two lists, each list being a queue
332 * @list: the new list to add.
333 * @head: the place to add it in the first list.
334 */
335static inline void list_splice_tail(struct list_head *list,
336 struct list_head *head)
337{
338 if (!list_empty(list))
339 __list_splice(list, head->prev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
342/**
343 * list_splice_init - join two lists and reinitialise the emptied list.
344 * @list: the new list to add.
345 * @head: the place to add it in the first list.
346 *
347 * The list at @list is reinitialised
348 */
349static inline void list_splice_init(struct list_head *list,
350 struct list_head *head)
351{
352 if (!list_empty(list)) {
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700353 __list_splice(list, head, head->next);
354 INIT_LIST_HEAD(list);
355 }
356}
357
358/**
Randy Dunlap6724cce2008-08-08 13:56:20 -0700359 * list_splice_tail_init - join two lists and reinitialise the emptied list
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700360 * @list: the new list to add.
361 * @head: the place to add it in the first list.
362 *
Randy Dunlap6724cce2008-08-08 13:56:20 -0700363 * Each of the lists is a queue.
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700364 * The list at @list is reinitialised
365 */
366static inline void list_splice_tail_init(struct list_head *list,
367 struct list_head *head)
368{
369 if (!list_empty(list)) {
370 __list_splice(list, head->prev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 INIT_LIST_HEAD(list);
372 }
373}
374
375/**
376 * list_entry - get the struct for this entry
377 * @ptr: the &struct list_head pointer.
378 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400379 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 */
381#define list_entry(ptr, type, member) \
382 container_of(ptr, type, member)
383
384/**
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700385 * list_first_entry - get the first element from a list
386 * @ptr: the list head to take the element from.
387 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400388 * @member: the name of the list_head within the struct.
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700389 *
390 * Note, that list is expected to be not empty.
391 */
392#define list_first_entry(ptr, type, member) \
393 list_entry((ptr)->next, type, member)
394
395/**
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800396 * list_last_entry - get the last element from a list
397 * @ptr: the list head to take the element from.
398 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400399 * @member: the name of the list_head within the struct.
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800400 *
401 * Note, that list is expected to be not empty.
402 */
403#define list_last_entry(ptr, type, member) \
404 list_entry((ptr)->prev, type, member)
405
406/**
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000407 * list_first_entry_or_null - get the first element from a list
408 * @ptr: the list head to take the element from.
409 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400410 * @member: the name of the list_head within the struct.
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000411 *
412 * Note that if the list is empty, it returns NULL.
413 */
Chris Wilson12adfd82016-07-23 19:27:50 +0100414#define list_first_entry_or_null(ptr, type, member) ({ \
415 struct list_head *head__ = (ptr); \
416 struct list_head *pos__ = READ_ONCE(head__->next); \
417 pos__ != head__ ? list_entry(pos__, type, member) : NULL; \
418})
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000419
420/**
Oleg Nesterov008208c2013-11-12 15:10:01 -0800421 * list_next_entry - get the next element in list
422 * @pos: the type * to cursor
Andrey Utkin3943f422014-11-14 05:09:55 +0400423 * @member: the name of the list_head within the struct.
Oleg Nesterov008208c2013-11-12 15:10:01 -0800424 */
425#define list_next_entry(pos, member) \
426 list_entry((pos)->member.next, typeof(*(pos)), member)
427
428/**
429 * list_prev_entry - get the prev element in list
430 * @pos: the type * to cursor
Andrey Utkin3943f422014-11-14 05:09:55 +0400431 * @member: the name of the list_head within the struct.
Oleg Nesterov008208c2013-11-12 15:10:01 -0800432 */
433#define list_prev_entry(pos, member) \
434 list_entry((pos)->member.prev, typeof(*(pos)), member)
435
436/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 * list_for_each - iterate over a list
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700438 * @pos: the &struct list_head to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 * @head: the head for your list.
440 */
441#define list_for_each(pos, head) \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700442 for (pos = (head)->next; pos != (head); pos = pos->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443
444/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * list_for_each_prev - iterate over a list backwards
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700446 * @pos: the &struct list_head to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * @head: the head for your list.
448 */
449#define list_for_each_prev(pos, head) \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700450 for (pos = (head)->prev; pos != (head); pos = pos->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
452/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700453 * list_for_each_safe - iterate over a list safe against removal of list entry
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700454 * @pos: the &struct list_head to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * @n: another &struct list_head to use as temporary storage
456 * @head: the head for your list.
457 */
458#define list_for_each_safe(pos, n, head) \
459 for (pos = (head)->next, n = pos->next; pos != (head); \
460 pos = n, n = pos->next)
461
462/**
Randy Dunlap8f731f72007-10-18 23:39:28 -0700463 * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry
Denis V. Lunev37c42522007-10-16 23:29:53 -0700464 * @pos: the &struct list_head to use as a loop cursor.
465 * @n: another &struct list_head to use as temporary storage
466 * @head: the head for your list.
467 */
468#define list_for_each_prev_safe(pos, n, head) \
469 for (pos = (head)->prev, n = pos->prev; \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700470 pos != (head); \
Denis V. Lunev37c42522007-10-16 23:29:53 -0700471 pos = n, n = pos->prev)
472
473/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 * list_for_each_entry - iterate over list of given type
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700475 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400477 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 */
479#define list_for_each_entry(pos, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800480 for (pos = list_first_entry(head, typeof(*pos), member); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800481 &pos->member != (head); \
482 pos = list_next_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483
484/**
485 * list_for_each_entry_reverse - iterate backwards over list of given type.
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700486 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400488 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 */
490#define list_for_each_entry_reverse(pos, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800491 for (pos = list_last_entry(head, typeof(*pos), member); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800492 &pos->member != (head); \
493 pos = list_prev_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800496 * list_prepare_entry - prepare a pos entry for use in list_for_each_entry_continue()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * @pos: the type * to use as a start point
498 * @head: the head of the list
Andrey Utkin3943f422014-11-14 05:09:55 +0400499 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700500 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800501 * Prepares a pos entry for use as a start point in list_for_each_entry_continue().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 */
503#define list_prepare_entry(pos, head, member) \
504 ((pos) ? : list_entry(head, typeof(*pos), member))
505
506/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700507 * list_for_each_entry_continue - continue iteration over list of given type
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700508 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400510 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700511 *
512 * Continue to iterate over list of given type, continuing after
513 * the current position.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 */
515#define list_for_each_entry_continue(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800516 for (pos = list_next_entry(pos, member); \
517 &pos->member != (head); \
518 pos = list_next_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
520/**
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700521 * list_for_each_entry_continue_reverse - iterate backwards from the given point
522 * @pos: the type * to use as a loop cursor.
523 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400524 * @member: the name of the list_head within the struct.
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700525 *
526 * Start to iterate over list of given type backwards, continuing after
527 * the current position.
528 */
529#define list_for_each_entry_continue_reverse(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800530 for (pos = list_prev_entry(pos, member); \
531 &pos->member != (head); \
532 pos = list_prev_entry(pos, member))
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700533
534/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700535 * list_for_each_entry_from - iterate over list of given type from the current point
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700536 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800537 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400538 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700539 *
540 * Iterate over list of given type, continuing from current position.
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800541 */
542#define list_for_each_entry_from(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800543 for (; &pos->member != (head); \
544 pos = list_next_entry(pos, member))
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800545
546/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700548 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 * @n: another type * to use as temporary storage
550 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400551 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 */
553#define list_for_each_entry_safe(pos, n, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800554 for (pos = list_first_entry(head, typeof(*pos), member), \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800555 n = list_next_entry(pos, member); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700556 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800557 pos = n, n = list_next_entry(n, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800560 * list_for_each_entry_safe_continue - continue list iteration safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700561 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700562 * @n: another type * to use as temporary storage
563 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400564 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700565 *
566 * Iterate over list of given type, continuing after current point,
567 * safe against removal of list entry.
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700568 */
569#define list_for_each_entry_safe_continue(pos, n, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800570 for (pos = list_next_entry(pos, member), \
571 n = list_next_entry(pos, member); \
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700572 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800573 pos = n, n = list_next_entry(n, member))
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700574
575/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800576 * list_for_each_entry_safe_from - iterate over list from current point safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700577 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800578 * @n: another type * to use as temporary storage
579 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400580 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700581 *
582 * Iterate over list of given type from current point, safe against
583 * removal of list entry.
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800584 */
585#define list_for_each_entry_safe_from(pos, n, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800586 for (n = list_next_entry(pos, member); \
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800587 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800588 pos = n, n = list_next_entry(n, member))
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800589
590/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800591 * list_for_each_entry_safe_reverse - iterate backwards over list safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700592 * @pos: the type * to use as a loop cursor.
David Howells0ad42352006-01-09 20:51:31 -0800593 * @n: another type * to use as temporary storage
594 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400595 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700596 *
597 * Iterate backwards over list of given type, safe against removal
598 * of list entry.
David Howells0ad42352006-01-09 20:51:31 -0800599 */
600#define list_for_each_entry_safe_reverse(pos, n, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800601 for (pos = list_last_entry(head, typeof(*pos), member), \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800602 n = list_prev_entry(pos, member); \
David Howells0ad42352006-01-09 20:51:31 -0800603 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800604 pos = n, n = list_prev_entry(n, member))
David Howells0ad42352006-01-09 20:51:31 -0800605
npiggin@suse.de57439f82010-06-24 13:02:14 +1000606/**
607 * list_safe_reset_next - reset a stale list_for_each_entry_safe loop
608 * @pos: the loop cursor used in the list_for_each_entry_safe loop
609 * @n: temporary storage used in list_for_each_entry_safe
Andrey Utkin3943f422014-11-14 05:09:55 +0400610 * @member: the name of the list_head within the struct.
npiggin@suse.de57439f82010-06-24 13:02:14 +1000611 *
612 * list_safe_reset_next is not safe to use in general if the list may be
613 * modified concurrently (eg. the lock is dropped in the loop body). An
614 * exception to this is if the cursor element (pos) is pinned in the list,
615 * and list_safe_reset_next is called after re-taking the lock and before
616 * completing the current iteration of the loop body.
617 */
618#define list_safe_reset_next(pos, n, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800619 n = list_next_entry(pos, member)
npiggin@suse.de57439f82010-06-24 13:02:14 +1000620
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621/*
622 * Double linked lists with a single pointer list head.
623 * Mostly useful for hash tables where the two pointer list head is
624 * too wasteful.
625 * You lose the ability to access the tail in O(1).
626 */
627
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628#define HLIST_HEAD_INIT { .first = NULL }
629#define HLIST_HEAD(name) struct hlist_head name = { .first = NULL }
630#define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
Zach Brown490d6ab2006-02-03 03:03:56 -0800631static inline void INIT_HLIST_NODE(struct hlist_node *h)
632{
633 h->next = NULL;
634 h->pprev = NULL;
635}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636
637static inline int hlist_unhashed(const struct hlist_node *h)
638{
639 return !h->pprev;
640}
641
642static inline int hlist_empty(const struct hlist_head *h)
643{
Paul E. McKenney1658d352015-09-20 17:03:16 -0700644 return !READ_ONCE(h->first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
646
647static inline void __hlist_del(struct hlist_node *n)
648{
649 struct hlist_node *next = n->next;
650 struct hlist_node **pprev = n->pprev;
Paul E. McKenney7f5f8732015-09-18 08:45:22 -0700651
652 WRITE_ONCE(*pprev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653 if (next)
654 next->pprev = pprev;
655}
656
657static inline void hlist_del(struct hlist_node *n)
658{
659 __hlist_del(n);
660 n->next = LIST_POISON1;
661 n->pprev = LIST_POISON2;
662}
663
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664static inline void hlist_del_init(struct hlist_node *n)
665{
Akinobu Mitada753be2006-04-28 15:21:23 -0700666 if (!hlist_unhashed(n)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667 __hlist_del(n);
668 INIT_HLIST_NODE(n);
669 }
670}
671
672static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
673{
674 struct hlist_node *first = h->first;
675 n->next = first;
676 if (first)
677 first->pprev = &n->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700678 WRITE_ONCE(h->first, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 n->pprev = &h->first;
680}
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682/* next must be != NULL */
683static inline void hlist_add_before(struct hlist_node *n,
684 struct hlist_node *next)
685{
686 n->pprev = next->pprev;
687 n->next = next;
688 next->pprev = &n->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700689 WRITE_ONCE(*(n->pprev), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Ken Helias1d023282014-08-06 16:09:16 -0700692static inline void hlist_add_behind(struct hlist_node *n,
693 struct hlist_node *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
Ken Heliasbc18dd32014-08-06 16:09:14 -0700695 n->next = prev->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700696 WRITE_ONCE(prev->next, n);
Ken Heliasbc18dd32014-08-06 16:09:14 -0700697 n->pprev = &prev->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Ken Heliasbc18dd32014-08-06 16:09:14 -0700699 if (n->next)
700 n->next->pprev = &n->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701}
702
Al Viro756acc22010-10-23 15:23:40 -0400703/* after that we'll appear to be on some hlist and hlist_del will work */
704static inline void hlist_add_fake(struct hlist_node *n)
705{
706 n->pprev = &n->next;
707}
708
Josef Bacikcbedaac2015-03-12 08:19:11 -0400709static inline bool hlist_fake(struct hlist_node *h)
710{
711 return h->pprev == &h->next;
712}
713
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200714/*
Thomas Gleixner15dba1e2016-07-04 09:50:27 +0000715 * Check whether the node is the only node of the head without
716 * accessing head:
717 */
718static inline bool
719hlist_is_singular_node(struct hlist_node *n, struct hlist_head *h)
720{
721 return !n->next && n->pprev == &h->first;
722}
723
724/*
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200725 * Move a list from one list head to another. Fixup the pprev
726 * reference of the first entry if it exists.
727 */
728static inline void hlist_move_list(struct hlist_head *old,
729 struct hlist_head *new)
730{
731 new->first = old->first;
732 if (new->first)
733 new->first->pprev = &new->first;
734 old->first = NULL;
735}
736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737#define hlist_entry(ptr, type, member) container_of(ptr,type,member)
738
739#define hlist_for_each(pos, head) \
Linus Torvalds75d65a42011-05-19 13:50:07 -0700740 for (pos = (head)->first; pos ; pos = pos->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742#define hlist_for_each_safe(pos, n, head) \
743 for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \
744 pos = n)
745
Sasha Levinb67bfe02013-02-27 17:06:00 -0800746#define hlist_entry_safe(ptr, type, member) \
Paul E. McKenneyf65846a2013-03-09 07:38:41 -0800747 ({ typeof(ptr) ____ptr = (ptr); \
748 ____ptr ? hlist_entry(____ptr, type, member) : NULL; \
749 })
Sasha Levinb67bfe02013-02-27 17:06:00 -0800750
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751/**
752 * hlist_for_each_entry - iterate over list of given type
Sasha Levinb67bfe02013-02-27 17:06:00 -0800753 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 * @head: the head for your list.
755 * @member: the name of the hlist_node within the struct.
756 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800757#define hlist_for_each_entry(pos, head, member) \
758 for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\
759 pos; \
760 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761
762/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700763 * hlist_for_each_entry_continue - iterate over a hlist continuing after current point
Sasha Levinb67bfe02013-02-27 17:06:00 -0800764 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 * @member: the name of the hlist_node within the struct.
766 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800767#define hlist_for_each_entry_continue(pos, member) \
768 for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member);\
769 pos; \
770 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
772/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700773 * hlist_for_each_entry_from - iterate over a hlist continuing from current point
Sasha Levinb67bfe02013-02-27 17:06:00 -0800774 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775 * @member: the name of the hlist_node within the struct.
776 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800777#define hlist_for_each_entry_from(pos, member) \
778 for (; pos; \
779 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
781/**
782 * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
Sasha Levinb67bfe02013-02-27 17:06:00 -0800783 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 * @n: another &struct hlist_node to use as temporary storage
785 * @head: the head for your list.
786 * @member: the name of the hlist_node within the struct.
787 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800788#define hlist_for_each_entry_safe(pos, n, head, member) \
789 for (pos = hlist_entry_safe((head)->first, typeof(*pos), member);\
790 pos && ({ n = pos->member.next; 1; }); \
791 pos = hlist_entry_safe(n, typeof(*pos), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793#endif