blob: 3ef3ade9930e00bdbd6b8c77b0b39e5951439644 [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
Kees Cook791e53f2016-08-17 14:42:08 -070031#ifdef CONFIG_DEBUG_LIST
32extern bool __list_add_valid(struct list_head *new,
33 struct list_head *prev,
34 struct list_head *next);
Kees Cookca48e8c2016-08-17 14:42:10 -070035extern bool __list_del_entry_valid(struct list_head *entry);
Kees Cook791e53f2016-08-17 14:42:08 -070036#else
37static inline bool __list_add_valid(struct list_head *new,
38 struct list_head *prev,
39 struct list_head *next)
40{
41 return true;
42}
Kees Cookca48e8c2016-08-17 14:42:10 -070043static inline bool __list_del_entry_valid(struct list_head *entry)
44{
45 return true;
46}
Kees Cook791e53f2016-08-17 14:42:08 -070047#endif
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049/*
50 * Insert a new entry between two known consecutive entries.
51 *
52 * This is only for internal list manipulation where we know
53 * the prev/next entries already!
54 */
55static inline void __list_add(struct list_head *new,
56 struct list_head *prev,
57 struct list_head *next)
58{
Kees Cook791e53f2016-08-17 14:42:08 -070059 if (!__list_add_valid(new, prev, next))
60 return;
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062 next->prev = new;
63 new->next = next;
64 new->prev = prev;
Paul E. McKenney1c97be62015-09-20 22:02:17 -070065 WRITE_ONCE(prev->next, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -070066}
67
68/**
69 * list_add - add a new entry
70 * @new: new entry to be added
71 * @head: list head to add it after
72 *
73 * Insert a new entry after the specified head.
74 * This is good for implementing stacks.
75 */
76static inline void list_add(struct list_head *new, struct list_head *head)
77{
78 __list_add(new, head, head->next);
79}
Dave Jones199a9af2006-09-29 01:59:00 -070080
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/**
83 * list_add_tail - add a new entry
84 * @new: new entry to be added
85 * @head: list head to add it before
86 *
87 * Insert a new entry before the specified head.
88 * This is useful for implementing queues.
89 */
90static inline void list_add_tail(struct list_head *new, struct list_head *head)
91{
92 __list_add(new, head->prev, head);
93}
94
95/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 * Delete a list entry by making the prev/next entries
97 * point to each other.
98 *
99 * This is only for internal list manipulation where we know
100 * the prev/next entries already!
101 */
102static inline void __list_del(struct list_head * prev, struct list_head * next)
103{
104 next->prev = prev;
Paul E. McKenney7f5f8732015-09-18 08:45:22 -0700105 WRITE_ONCE(prev->next, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
108/**
109 * list_del - deletes entry from list.
110 * @entry: the element to delete from the list.
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800111 * Note: list_empty() on entry does not return true after this, the entry is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 * in an undefined state.
113 */
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800114static inline void __list_del_entry(struct list_head *entry)
115{
Kees Cookca48e8c2016-08-17 14:42:10 -0700116 if (!__list_del_entry_valid(entry))
117 return;
118
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800119 __list_del(entry->prev, entry->next);
120}
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122static inline void list_del(struct list_head *entry)
123{
Kees Cookca48e8c2016-08-17 14:42:10 -0700124 __list_del_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 entry->next = LIST_POISON1;
126 entry->prev = LIST_POISON2;
127}
128
129/**
Oleg Nesterov54e73772006-06-23 02:05:54 -0700130 * list_replace - replace old entry by new one
131 * @old : the element to be replaced
132 * @new : the new element to insert
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800133 *
134 * If @old was empty, it will be overwritten.
Oleg Nesterov54e73772006-06-23 02:05:54 -0700135 */
136static inline void list_replace(struct list_head *old,
137 struct list_head *new)
138{
139 new->next = old->next;
140 new->next->prev = new;
141 new->prev = old->prev;
142 new->prev->next = new;
143}
144
145static inline void list_replace_init(struct list_head *old,
146 struct list_head *new)
147{
148 list_replace(old, new);
149 INIT_LIST_HEAD(old);
150}
151
Robert P. J. Day45f8bde2007-01-26 00:57:09 -0800152/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * list_del_init - deletes entry from list and reinitialize it.
154 * @entry: the element to delete from the list.
155 */
156static inline void list_del_init(struct list_head *entry)
157{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800158 __list_del_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 INIT_LIST_HEAD(entry);
160}
161
162/**
163 * list_move - delete from one list and add as another's head
164 * @list: the entry to move
165 * @head: the head that will precede our entry
166 */
167static inline void list_move(struct list_head *list, struct list_head *head)
168{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800169 __list_del_entry(list);
Daniel Walker78db2ad2007-05-12 16:28:35 -0700170 list_add(list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171}
172
173/**
174 * list_move_tail - delete from one list and add as another's tail
175 * @list: the entry to move
176 * @head: the head that will follow our entry
177 */
178static inline void list_move_tail(struct list_head *list,
179 struct list_head *head)
180{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800181 __list_del_entry(list);
Daniel Walker78db2ad2007-05-12 16:28:35 -0700182 list_add_tail(list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183}
184
185/**
Shailabh Nagare8f4d972006-07-14 00:24:35 -0700186 * list_is_last - tests whether @list is the last entry in list @head
187 * @list: the entry to test
188 * @head: the head of the list
189 */
190static inline int list_is_last(const struct list_head *list,
191 const struct list_head *head)
192{
193 return list->next == head;
194}
195
196/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * list_empty - tests whether a list is empty
198 * @head: the list to test.
199 */
200static inline int list_empty(const struct list_head *head)
201{
Paul E. McKenney1658d352015-09-20 17:03:16 -0700202 return READ_ONCE(head->next) == head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203}
204
205/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700206 * list_empty_careful - tests whether a list is empty and not being modified
207 * @head: the list to test
208 *
209 * Description:
210 * tests whether a list is empty _and_ checks that no other CPU might be
211 * in the process of modifying either member (next or prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 *
213 * NOTE: using list_empty_careful() without synchronization
214 * can only be safe if the only activity that can happen
215 * to the list entry is list_del_init(). Eg. it cannot be used
216 * if another CPU could re-list_add() it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217 */
218static inline int list_empty_careful(const struct list_head *head)
219{
220 struct list_head *next = head->next;
221 return (next == head) && (next == head->prev);
222}
223
Masami Hiramatsu99602572008-04-28 02:14:27 -0700224/**
Frederic Weisbecker5908cdc2010-01-09 20:53:14 +0100225 * list_rotate_left - rotate the list to the left
226 * @head: the head of the list
227 */
228static inline void list_rotate_left(struct list_head *head)
229{
230 struct list_head *first;
231
232 if (!list_empty(head)) {
233 first = head->next;
234 list_move_tail(first, head);
235 }
236}
237
238/**
Masami Hiramatsu99602572008-04-28 02:14:27 -0700239 * list_is_singular - tests whether a list has just one entry.
240 * @head: the list to test.
241 */
242static inline int list_is_singular(const struct list_head *head)
243{
244 return !list_empty(head) && (head->next == head->prev);
245}
246
Luis R. Rodriguez00e8a4d2008-08-06 13:28:54 -0700247static inline void __list_cut_position(struct list_head *list,
248 struct list_head *head, struct list_head *entry)
249{
250 struct list_head *new_first = entry->next;
251 list->next = head->next;
252 list->next->prev = list;
253 list->prev = entry;
254 entry->next = list;
255 head->next = new_first;
256 new_first->prev = head;
257}
258
259/**
260 * list_cut_position - cut a list into two
261 * @list: a new list to add all removed entries
262 * @head: a list with entries
263 * @entry: an entry within head, could be the head itself
264 * and if so we won't cut the list
265 *
266 * This helper moves the initial part of @head, up to and
267 * including @entry, from @head to @list. You should
268 * pass on @entry an element you know is on @head. @list
269 * should be an empty list or a list you do not care about
270 * losing its data.
271 *
272 */
273static inline void list_cut_position(struct list_head *list,
274 struct list_head *head, struct list_head *entry)
275{
276 if (list_empty(head))
277 return;
278 if (list_is_singular(head) &&
279 (head->next != entry && head != entry))
280 return;
281 if (entry == head)
282 INIT_LIST_HEAD(list);
283 else
284 __list_cut_position(list, head, entry);
285}
286
Sasha Levinfc7fab72019-05-16 21:30:49 -0400287/**
288 * list_cut_before - cut a list into two, before given entry
289 * @list: a new list to add all removed entries
290 * @head: a list with entries
291 * @entry: an entry within head, could be the head itself
292 *
293 * This helper moves the initial part of @head, up to but
294 * excluding @entry, from @head to @list. You should pass
295 * in @entry an element you know is on @head. @list should
296 * be an empty list or a list you do not care about losing
297 * its data.
298 * If @entry == @head, all entries on @head are moved to
299 * @list.
300 */
301static inline void list_cut_before(struct list_head *list,
302 struct list_head *head,
303 struct list_head *entry)
304{
305 if (head->next == entry) {
306 INIT_LIST_HEAD(list);
307 return;
308 }
309 list->next = head->next;
310 list->next->prev = list;
311 list->prev = entry->prev;
312 list->prev->next = list;
313 head->next = entry;
314 entry->prev = head;
315}
316
Robert P. J. Day95d8c362008-04-29 00:59:29 -0700317static inline void __list_splice(const struct list_head *list,
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700318 struct list_head *prev,
319 struct list_head *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
321 struct list_head *first = list->next;
322 struct list_head *last = list->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700324 first->prev = prev;
325 prev->next = first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700327 last->next = next;
328 next->prev = last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
331/**
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700332 * list_splice - join two lists, this is designed for stacks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 * @list: the new list to add.
334 * @head: the place to add it in the first list.
335 */
Robert P. J. Day95d8c362008-04-29 00:59:29 -0700336static inline void list_splice(const struct list_head *list,
337 struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338{
339 if (!list_empty(list))
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700340 __list_splice(list, head, head->next);
341}
342
343/**
344 * list_splice_tail - join two lists, each list being a queue
345 * @list: the new list to add.
346 * @head: the place to add it in the first list.
347 */
348static inline void list_splice_tail(struct list_head *list,
349 struct list_head *head)
350{
351 if (!list_empty(list))
352 __list_splice(list, head->prev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353}
354
355/**
356 * list_splice_init - join two lists and reinitialise the emptied list.
357 * @list: the new list to add.
358 * @head: the place to add it in the first list.
359 *
360 * The list at @list is reinitialised
361 */
362static inline void list_splice_init(struct list_head *list,
363 struct list_head *head)
364{
365 if (!list_empty(list)) {
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700366 __list_splice(list, head, head->next);
367 INIT_LIST_HEAD(list);
368 }
369}
370
371/**
Randy Dunlap6724cce2008-08-08 13:56:20 -0700372 * list_splice_tail_init - join two lists and reinitialise the emptied list
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700373 * @list: the new list to add.
374 * @head: the place to add it in the first list.
375 *
Randy Dunlap6724cce2008-08-08 13:56:20 -0700376 * Each of the lists is a queue.
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700377 * The list at @list is reinitialised
378 */
379static inline void list_splice_tail_init(struct list_head *list,
380 struct list_head *head)
381{
382 if (!list_empty(list)) {
383 __list_splice(list, head->prev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 INIT_LIST_HEAD(list);
385 }
386}
387
388/**
389 * list_entry - get the struct for this entry
390 * @ptr: the &struct list_head pointer.
391 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400392 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 */
394#define list_entry(ptr, type, member) \
395 container_of(ptr, type, member)
396
397/**
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700398 * list_first_entry - get the first element from a list
399 * @ptr: the list head to take the element from.
400 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400401 * @member: the name of the list_head within the struct.
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700402 *
403 * Note, that list is expected to be not empty.
404 */
405#define list_first_entry(ptr, type, member) \
406 list_entry((ptr)->next, type, member)
407
408/**
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800409 * list_last_entry - get the last element from a list
410 * @ptr: the list head to take the element from.
411 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400412 * @member: the name of the list_head within the struct.
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800413 *
414 * Note, that list is expected to be not empty.
415 */
416#define list_last_entry(ptr, type, member) \
417 list_entry((ptr)->prev, type, member)
418
419/**
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000420 * list_first_entry_or_null - get the first element from a list
421 * @ptr: the list head to take the element from.
422 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400423 * @member: the name of the list_head within the struct.
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000424 *
425 * Note that if the list is empty, it returns NULL.
426 */
Chris Wilson12adfd82016-07-23 19:27:50 +0100427#define list_first_entry_or_null(ptr, type, member) ({ \
428 struct list_head *head__ = (ptr); \
429 struct list_head *pos__ = READ_ONCE(head__->next); \
430 pos__ != head__ ? list_entry(pos__, type, member) : NULL; \
431})
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000432
433/**
Oleg Nesterov008208c2013-11-12 15:10:01 -0800434 * list_next_entry - get the next element in list
435 * @pos: the type * to cursor
Andrey Utkin3943f422014-11-14 05:09:55 +0400436 * @member: the name of the list_head within the struct.
Oleg Nesterov008208c2013-11-12 15:10:01 -0800437 */
438#define list_next_entry(pos, member) \
439 list_entry((pos)->member.next, typeof(*(pos)), member)
440
441/**
442 * list_prev_entry - get the prev element in list
443 * @pos: the type * to cursor
Andrey Utkin3943f422014-11-14 05:09:55 +0400444 * @member: the name of the list_head within the struct.
Oleg Nesterov008208c2013-11-12 15:10:01 -0800445 */
446#define list_prev_entry(pos, member) \
447 list_entry((pos)->member.prev, typeof(*(pos)), member)
448
449/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * list_for_each - iterate over a list
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700451 * @pos: the &struct list_head to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * @head: the head for your list.
453 */
454#define list_for_each(pos, head) \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700455 for (pos = (head)->next; pos != (head); pos = pos->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * list_for_each_prev - iterate over a list backwards
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700459 * @pos: the &struct list_head to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * @head: the head for your list.
461 */
462#define list_for_each_prev(pos, head) \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700463 for (pos = (head)->prev; pos != (head); pos = pos->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
465/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700466 * list_for_each_safe - iterate over a list safe against removal of list entry
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700467 * @pos: the &struct list_head to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468 * @n: another &struct list_head to use as temporary storage
469 * @head: the head for your list.
470 */
471#define list_for_each_safe(pos, n, head) \
472 for (pos = (head)->next, n = pos->next; pos != (head); \
473 pos = n, n = pos->next)
474
475/**
Randy Dunlap8f731f72007-10-18 23:39:28 -0700476 * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry
Denis V. Lunev37c42522007-10-16 23:29:53 -0700477 * @pos: the &struct list_head to use as a loop cursor.
478 * @n: another &struct list_head to use as temporary storage
479 * @head: the head for your list.
480 */
481#define list_for_each_prev_safe(pos, n, head) \
482 for (pos = (head)->prev, n = pos->prev; \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700483 pos != (head); \
Denis V. Lunev37c42522007-10-16 23:29:53 -0700484 pos = n, n = pos->prev)
485
486/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 * list_for_each_entry - iterate over list of given type
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700488 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400490 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 */
492#define list_for_each_entry(pos, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800493 for (pos = list_first_entry(head, typeof(*pos), member); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800494 &pos->member != (head); \
495 pos = list_next_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496
497/**
498 * list_for_each_entry_reverse - iterate backwards over list of given type.
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700499 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400501 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 */
503#define list_for_each_entry_reverse(pos, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800504 for (pos = list_last_entry(head, typeof(*pos), member); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800505 &pos->member != (head); \
506 pos = list_prev_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
508/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800509 * list_prepare_entry - prepare a pos entry for use in list_for_each_entry_continue()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 * @pos: the type * to use as a start point
511 * @head: the head of the list
Andrey Utkin3943f422014-11-14 05:09:55 +0400512 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700513 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800514 * Prepares a pos entry for use as a start point in list_for_each_entry_continue().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515 */
516#define list_prepare_entry(pos, head, member) \
517 ((pos) ? : list_entry(head, typeof(*pos), member))
518
519/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700520 * list_for_each_entry_continue - continue iteration over list of given type
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700521 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400523 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700524 *
525 * Continue to iterate over list of given type, continuing after
526 * the current position.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
528#define list_for_each_entry_continue(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800529 for (pos = list_next_entry(pos, member); \
530 &pos->member != (head); \
531 pos = list_next_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
533/**
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700534 * list_for_each_entry_continue_reverse - iterate backwards from the given point
535 * @pos: the type * to use as a loop cursor.
536 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400537 * @member: the name of the list_head within the struct.
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700538 *
539 * Start to iterate over list of given type backwards, continuing after
540 * the current position.
541 */
542#define list_for_each_entry_continue_reverse(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800543 for (pos = list_prev_entry(pos, member); \
544 &pos->member != (head); \
545 pos = list_prev_entry(pos, member))
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700546
547/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700548 * list_for_each_entry_from - iterate over list of given type from the current point
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700549 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800550 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400551 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700552 *
553 * Iterate over list of given type, continuing from current position.
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800554 */
555#define list_for_each_entry_from(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800556 for (; &pos->member != (head); \
557 pos = list_next_entry(pos, member))
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800558
559/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700561 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -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.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 */
566#define list_for_each_entry_safe(pos, n, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800567 for (pos = list_first_entry(head, typeof(*pos), member), \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800568 n = list_next_entry(pos, member); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800570 pos = n, n = list_next_entry(n, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800573 * list_for_each_entry_safe_continue - continue list iteration safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700574 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700575 * @n: another type * to use as temporary storage
576 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400577 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700578 *
579 * Iterate over list of given type, continuing after current point,
580 * safe against removal of list entry.
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700581 */
582#define list_for_each_entry_safe_continue(pos, n, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800583 for (pos = list_next_entry(pos, member), \
584 n = list_next_entry(pos, member); \
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700585 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800586 pos = n, n = list_next_entry(n, member))
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700587
588/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800589 * list_for_each_entry_safe_from - iterate over list from current point safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700590 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800591 * @n: another type * to use as temporary storage
592 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400593 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700594 *
595 * Iterate over list of given type from current point, safe against
596 * removal of list entry.
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800597 */
598#define list_for_each_entry_safe_from(pos, n, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800599 for (n = list_next_entry(pos, member); \
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800600 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800601 pos = n, n = list_next_entry(n, member))
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800602
603/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800604 * list_for_each_entry_safe_reverse - iterate backwards over list safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700605 * @pos: the type * to use as a loop cursor.
David Howells0ad42352006-01-09 20:51:31 -0800606 * @n: another type * to use as temporary storage
607 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400608 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700609 *
610 * Iterate backwards over list of given type, safe against removal
611 * of list entry.
David Howells0ad42352006-01-09 20:51:31 -0800612 */
613#define list_for_each_entry_safe_reverse(pos, n, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800614 for (pos = list_last_entry(head, typeof(*pos), member), \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800615 n = list_prev_entry(pos, member); \
David Howells0ad42352006-01-09 20:51:31 -0800616 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800617 pos = n, n = list_prev_entry(n, member))
David Howells0ad42352006-01-09 20:51:31 -0800618
npiggin@suse.de57439f82010-06-24 13:02:14 +1000619/**
620 * list_safe_reset_next - reset a stale list_for_each_entry_safe loop
621 * @pos: the loop cursor used in the list_for_each_entry_safe loop
622 * @n: temporary storage used in list_for_each_entry_safe
Andrey Utkin3943f422014-11-14 05:09:55 +0400623 * @member: the name of the list_head within the struct.
npiggin@suse.de57439f82010-06-24 13:02:14 +1000624 *
625 * list_safe_reset_next is not safe to use in general if the list may be
626 * modified concurrently (eg. the lock is dropped in the loop body). An
627 * exception to this is if the cursor element (pos) is pinned in the list,
628 * and list_safe_reset_next is called after re-taking the lock and before
629 * completing the current iteration of the loop body.
630 */
631#define list_safe_reset_next(pos, n, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800632 n = list_next_entry(pos, member)
npiggin@suse.de57439f82010-06-24 13:02:14 +1000633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634/*
635 * Double linked lists with a single pointer list head.
636 * Mostly useful for hash tables where the two pointer list head is
637 * too wasteful.
638 * You lose the ability to access the tail in O(1).
639 */
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641#define HLIST_HEAD_INIT { .first = NULL }
642#define HLIST_HEAD(name) struct hlist_head name = { .first = NULL }
643#define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
Zach Brown490d6ab2006-02-03 03:03:56 -0800644static inline void INIT_HLIST_NODE(struct hlist_node *h)
645{
646 h->next = NULL;
647 h->pprev = NULL;
648}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650static inline int hlist_unhashed(const struct hlist_node *h)
651{
652 return !h->pprev;
653}
654
655static inline int hlist_empty(const struct hlist_head *h)
656{
Paul E. McKenney1658d352015-09-20 17:03:16 -0700657 return !READ_ONCE(h->first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
660static inline void __hlist_del(struct hlist_node *n)
661{
662 struct hlist_node *next = n->next;
663 struct hlist_node **pprev = n->pprev;
Paul E. McKenney7f5f8732015-09-18 08:45:22 -0700664
665 WRITE_ONCE(*pprev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 if (next)
667 next->pprev = pprev;
668}
669
670static inline void hlist_del(struct hlist_node *n)
671{
672 __hlist_del(n);
673 n->next = LIST_POISON1;
674 n->pprev = LIST_POISON2;
675}
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677static inline void hlist_del_init(struct hlist_node *n)
678{
Akinobu Mitada753be2006-04-28 15:21:23 -0700679 if (!hlist_unhashed(n)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 __hlist_del(n);
681 INIT_HLIST_NODE(n);
682 }
683}
684
685static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
686{
687 struct hlist_node *first = h->first;
688 n->next = first;
689 if (first)
690 first->pprev = &n->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700691 WRITE_ONCE(h->first, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 n->pprev = &h->first;
693}
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695/* next must be != NULL */
696static inline void hlist_add_before(struct hlist_node *n,
697 struct hlist_node *next)
698{
699 n->pprev = next->pprev;
700 n->next = next;
701 next->pprev = &n->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700702 WRITE_ONCE(*(n->pprev), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703}
704
Ken Helias1d023282014-08-06 16:09:16 -0700705static inline void hlist_add_behind(struct hlist_node *n,
706 struct hlist_node *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
Ken Heliasbc18dd32014-08-06 16:09:14 -0700708 n->next = prev->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700709 WRITE_ONCE(prev->next, n);
Ken Heliasbc18dd32014-08-06 16:09:14 -0700710 n->pprev = &prev->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Ken Heliasbc18dd32014-08-06 16:09:14 -0700712 if (n->next)
713 n->next->pprev = &n->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
715
Al Viro756acc22010-10-23 15:23:40 -0400716/* after that we'll appear to be on some hlist and hlist_del will work */
717static inline void hlist_add_fake(struct hlist_node *n)
718{
719 n->pprev = &n->next;
720}
721
Josef Bacikcbedaac2015-03-12 08:19:11 -0400722static inline bool hlist_fake(struct hlist_node *h)
723{
724 return h->pprev == &h->next;
725}
726
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200727/*
Thomas Gleixner15dba1e2016-07-04 09:50:27 +0000728 * Check whether the node is the only node of the head without
729 * accessing head:
730 */
731static inline bool
732hlist_is_singular_node(struct hlist_node *n, struct hlist_head *h)
733{
734 return !n->next && n->pprev == &h->first;
735}
736
737/*
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200738 * Move a list from one list head to another. Fixup the pprev
739 * reference of the first entry if it exists.
740 */
741static inline void hlist_move_list(struct hlist_head *old,
742 struct hlist_head *new)
743{
744 new->first = old->first;
745 if (new->first)
746 new->first->pprev = &new->first;
747 old->first = NULL;
748}
749
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750#define hlist_entry(ptr, type, member) container_of(ptr,type,member)
751
752#define hlist_for_each(pos, head) \
Linus Torvalds75d65a42011-05-19 13:50:07 -0700753 for (pos = (head)->first; pos ; pos = pos->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755#define hlist_for_each_safe(pos, n, head) \
756 for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \
757 pos = n)
758
Sasha Levinb67bfe02013-02-27 17:06:00 -0800759#define hlist_entry_safe(ptr, type, member) \
Paul E. McKenneyf65846a2013-03-09 07:38:41 -0800760 ({ typeof(ptr) ____ptr = (ptr); \
761 ____ptr ? hlist_entry(____ptr, type, member) : NULL; \
762 })
Sasha Levinb67bfe02013-02-27 17:06:00 -0800763
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764/**
765 * hlist_for_each_entry - iterate over list of given type
Sasha Levinb67bfe02013-02-27 17:06:00 -0800766 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 * @head: the head for your list.
768 * @member: the name of the hlist_node within the struct.
769 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800770#define hlist_for_each_entry(pos, head, member) \
771 for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\
772 pos; \
773 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
775/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700776 * hlist_for_each_entry_continue - iterate over a hlist continuing after current point
Sasha Levinb67bfe02013-02-27 17:06:00 -0800777 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 * @member: the name of the hlist_node within the struct.
779 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800780#define hlist_for_each_entry_continue(pos, member) \
781 for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member);\
782 pos; \
783 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700786 * hlist_for_each_entry_from - iterate over a hlist continuing from current point
Sasha Levinb67bfe02013-02-27 17:06:00 -0800787 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 * @member: the name of the hlist_node within the struct.
789 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800790#define hlist_for_each_entry_from(pos, member) \
791 for (; pos; \
792 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794/**
795 * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
Sasha Levinb67bfe02013-02-27 17:06:00 -0800796 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 * @n: another &struct hlist_node to use as temporary storage
798 * @head: the head for your list.
799 * @member: the name of the hlist_node within the struct.
800 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800801#define hlist_for_each_entry_safe(pos, n, head, member) \
802 for (pos = hlist_entry_safe((head)->first, typeof(*pos), member);\
803 pos && ({ n = pos->member.next; 1; }); \
804 pos = hlist_entry_safe(n, typeof(*pos), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806#endif