blob: 4b129df4d46b5a4c26d970c6a0c385b6c208d9d1 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002#ifndef _LINUX_LIST_H
3#define _LINUX_LIST_H
4
Chris Metcalfde5d9bf2010-07-02 13:41:14 -04005#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006#include <linux/stddef.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -07007#include <linux/poison.h>
Linus Torvaldse66eed62011-05-19 14:15:29 -07008#include <linux/const.h>
Masahiro Yamada8b21d9c2014-10-13 15:51:30 -07009#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070010
11/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Simple doubly linked list implementation.
13 *
14 * Some of the internal functions ("__xxx") are useful when
15 * manipulating whole lists rather than single entries, as
16 * sometimes we already know the next/prev entries and we can
17 * generate better code by using them directly rather than
18 * using the generic single-entry routines.
19 */
20
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#define LIST_HEAD_INIT(name) { &(name), &(name) }
22
23#define LIST_HEAD(name) \
24 struct list_head name = LIST_HEAD_INIT(name)
25
Zach Brown490d6ab2006-02-03 03:03:56 -080026static inline void INIT_LIST_HEAD(struct list_head *list)
27{
Paul E. McKenney2f073842015-10-12 16:56:42 -070028 WRITE_ONCE(list->next, list);
Zach Brown490d6ab2006-02-03 03:03:56 -080029 list->prev = list;
30}
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
Kees Cookd7c81672016-08-17 14:42:08 -070032#ifdef CONFIG_DEBUG_LIST
33extern bool __list_add_valid(struct list_head *new,
34 struct list_head *prev,
35 struct list_head *next);
Kees Cook0cd340d2016-08-17 14:42:10 -070036extern bool __list_del_entry_valid(struct list_head *entry);
Kees Cookd7c81672016-08-17 14:42:08 -070037#else
38static inline bool __list_add_valid(struct list_head *new,
39 struct list_head *prev,
40 struct list_head *next)
41{
42 return true;
43}
Kees Cook0cd340d2016-08-17 14:42:10 -070044static inline bool __list_del_entry_valid(struct list_head *entry)
45{
46 return true;
47}
Kees Cookd7c81672016-08-17 14:42:08 -070048#endif
49
Linus Torvalds1da177e2005-04-16 15:20:36 -070050/*
51 * Insert a new entry between two known consecutive entries.
52 *
53 * This is only for internal list manipulation where we know
54 * the prev/next entries already!
55 */
56static inline void __list_add(struct list_head *new,
57 struct list_head *prev,
58 struct list_head *next)
59{
Kees Cookd7c81672016-08-17 14:42:08 -070060 if (!__list_add_valid(new, prev, next))
61 return;
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 next->prev = new;
64 new->next = next;
65 new->prev = prev;
Paul E. McKenney1c97be62015-09-20 22:02:17 -070066 WRITE_ONCE(prev->next, new);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067}
68
69/**
70 * list_add - add a new entry
71 * @new: new entry to be added
72 * @head: list head to add it after
73 *
74 * Insert a new entry after the specified head.
75 * This is good for implementing stacks.
76 */
77static inline void list_add(struct list_head *new, struct list_head *head)
78{
79 __list_add(new, head, head->next);
80}
Dave Jones199a9af2006-09-29 01:59:00 -070081
Linus Torvalds1da177e2005-04-16 15:20:36 -070082
83/**
84 * list_add_tail - add a new entry
85 * @new: new entry to be added
86 * @head: list head to add it before
87 *
88 * Insert a new entry before the specified head.
89 * This is useful for implementing queues.
90 */
91static inline void list_add_tail(struct list_head *new, struct list_head *head)
92{
93 __list_add(new, head->prev, head);
94}
95
96/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070097 * Delete a list entry by making the prev/next entries
98 * point to each other.
99 *
100 * This is only for internal list manipulation where we know
101 * the prev/next entries already!
102 */
103static inline void __list_del(struct list_head * prev, struct list_head * next)
104{
105 next->prev = prev;
Paul E. McKenney7f5f8732015-09-18 08:45:22 -0700106 WRITE_ONCE(prev->next, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107}
108
109/**
110 * list_del - deletes entry from list.
111 * @entry: the element to delete from the list.
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800112 * Note: list_empty() on entry does not return true after this, the entry is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 * in an undefined state.
114 */
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800115static inline void __list_del_entry(struct list_head *entry)
116{
Kees Cook0cd340d2016-08-17 14:42:10 -0700117 if (!__list_del_entry_valid(entry))
118 return;
119
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800120 __list_del(entry->prev, entry->next);
121}
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123static inline void list_del(struct list_head *entry)
124{
Kees Cook0cd340d2016-08-17 14:42:10 -0700125 __list_del_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 entry->next = LIST_POISON1;
127 entry->prev = LIST_POISON2;
128}
129
130/**
Oleg Nesterov54e73772006-06-23 02:05:54 -0700131 * list_replace - replace old entry by new one
132 * @old : the element to be replaced
133 * @new : the new element to insert
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800134 *
135 * If @old was empty, it will be overwritten.
Oleg Nesterov54e73772006-06-23 02:05:54 -0700136 */
137static inline void list_replace(struct list_head *old,
138 struct list_head *new)
139{
140 new->next = old->next;
141 new->next->prev = new;
142 new->prev = old->prev;
143 new->prev->next = new;
144}
145
146static inline void list_replace_init(struct list_head *old,
147 struct list_head *new)
148{
149 list_replace(old, new);
150 INIT_LIST_HEAD(old);
151}
152
Robert P. J. Day45f8bde2007-01-26 00:57:09 -0800153/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 * list_del_init - deletes entry from list and reinitialize it.
155 * @entry: the element to delete from the list.
156 */
157static inline void list_del_init(struct list_head *entry)
158{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800159 __list_del_entry(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 INIT_LIST_HEAD(entry);
161}
162
163/**
164 * list_move - delete from one list and add as another's head
165 * @list: the entry to move
166 * @head: the head that will precede our entry
167 */
168static inline void list_move(struct list_head *list, struct list_head *head)
169{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800170 __list_del_entry(list);
Daniel Walker78db2ad2007-05-12 16:28:35 -0700171 list_add(list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172}
173
174/**
175 * list_move_tail - delete from one list and add as another's tail
176 * @list: the entry to move
177 * @head: the head that will follow our entry
178 */
179static inline void list_move_tail(struct list_head *list,
180 struct list_head *head)
181{
Linus Torvalds3c18d4d2011-02-18 11:32:28 -0800182 __list_del_entry(list);
Daniel Walker78db2ad2007-05-12 16:28:35 -0700183 list_add_tail(list, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184}
185
186/**
Shailabh Nagare8f4d972006-07-14 00:24:35 -0700187 * list_is_last - tests whether @list is the last entry in list @head
188 * @list: the entry to test
189 * @head: the head of the list
190 */
191static inline int list_is_last(const struct list_head *list,
192 const struct list_head *head)
193{
194 return list->next == head;
195}
196
197/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 * list_empty - tests whether a list is empty
199 * @head: the list to test.
200 */
201static inline int list_empty(const struct list_head *head)
202{
Paul E. McKenney1658d352015-09-20 17:03:16 -0700203 return READ_ONCE(head->next) == head;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
206/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700207 * list_empty_careful - tests whether a list is empty and not being modified
208 * @head: the list to test
209 *
210 * Description:
211 * tests whether a list is empty _and_ checks that no other CPU might be
212 * in the process of modifying either member (next or prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 *
214 * NOTE: using list_empty_careful() without synchronization
215 * can only be safe if the only activity that can happen
216 * to the list entry is list_del_init(). Eg. it cannot be used
217 * if another CPU could re-list_add() it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
219static inline int list_empty_careful(const struct list_head *head)
220{
221 struct list_head *next = head->next;
222 return (next == head) && (next == head->prev);
223}
224
Masami Hiramatsu99602572008-04-28 02:14:27 -0700225/**
Frederic Weisbecker5908cdc2010-01-09 20:53:14 +0100226 * list_rotate_left - rotate the list to the left
227 * @head: the head of the list
228 */
229static inline void list_rotate_left(struct list_head *head)
230{
231 struct list_head *first;
232
233 if (!list_empty(head)) {
234 first = head->next;
235 list_move_tail(first, head);
236 }
237}
238
239/**
Masami Hiramatsu99602572008-04-28 02:14:27 -0700240 * list_is_singular - tests whether a list has just one entry.
241 * @head: the list to test.
242 */
243static inline int list_is_singular(const struct list_head *head)
244{
245 return !list_empty(head) && (head->next == head->prev);
246}
247
Luis R. Rodriguez00e8a4d2008-08-06 13:28:54 -0700248static inline void __list_cut_position(struct list_head *list,
249 struct list_head *head, struct list_head *entry)
250{
251 struct list_head *new_first = entry->next;
252 list->next = head->next;
253 list->next->prev = list;
254 list->prev = entry;
255 entry->next = list;
256 head->next = new_first;
257 new_first->prev = head;
258}
259
260/**
261 * list_cut_position - cut a list into two
262 * @list: a new list to add all removed entries
263 * @head: a list with entries
264 * @entry: an entry within head, could be the head itself
265 * and if so we won't cut the list
266 *
267 * This helper moves the initial part of @head, up to and
268 * including @entry, from @head to @list. You should
269 * pass on @entry an element you know is on @head. @list
270 * should be an empty list or a list you do not care about
271 * losing its data.
272 *
273 */
274static inline void list_cut_position(struct list_head *list,
275 struct list_head *head, struct list_head *entry)
276{
277 if (list_empty(head))
278 return;
279 if (list_is_singular(head) &&
280 (head->next != entry && head != entry))
281 return;
282 if (entry == head)
283 INIT_LIST_HEAD(list);
284 else
285 __list_cut_position(list, head, entry);
286}
287
Robert P. J. Day95d8c362008-04-29 00:59:29 -0700288static inline void __list_splice(const struct list_head *list,
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700289 struct list_head *prev,
290 struct list_head *next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291{
292 struct list_head *first = list->next;
293 struct list_head *last = list->prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700295 first->prev = prev;
296 prev->next = first;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700298 last->next = next;
299 next->prev = last;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300}
301
302/**
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700303 * list_splice - join two lists, this is designed for stacks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 * @list: the new list to add.
305 * @head: the place to add it in the first list.
306 */
Robert P. J. Day95d8c362008-04-29 00:59:29 -0700307static inline void list_splice(const struct list_head *list,
308 struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
310 if (!list_empty(list))
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700311 __list_splice(list, head, head->next);
312}
313
314/**
315 * list_splice_tail - join two lists, each list being a queue
316 * @list: the new list to add.
317 * @head: the place to add it in the first list.
318 */
319static inline void list_splice_tail(struct list_head *list,
320 struct list_head *head)
321{
322 if (!list_empty(list))
323 __list_splice(list, head->prev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
326/**
327 * list_splice_init - join two lists and reinitialise the emptied list.
328 * @list: the new list to add.
329 * @head: the place to add it in the first list.
330 *
331 * The list at @list is reinitialised
332 */
333static inline void list_splice_init(struct list_head *list,
334 struct list_head *head)
335{
336 if (!list_empty(list)) {
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700337 __list_splice(list, head, head->next);
338 INIT_LIST_HEAD(list);
339 }
340}
341
342/**
Randy Dunlap6724cce2008-08-08 13:56:20 -0700343 * list_splice_tail_init - join two lists and reinitialise the emptied list
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700344 * @list: the new list to add.
345 * @head: the place to add it in the first list.
346 *
Randy Dunlap6724cce2008-08-08 13:56:20 -0700347 * Each of the lists is a queue.
Luis R. Rodriguez7d283ae2008-08-06 15:21:26 -0700348 * The list at @list is reinitialised
349 */
350static inline void list_splice_tail_init(struct list_head *list,
351 struct list_head *head)
352{
353 if (!list_empty(list)) {
354 __list_splice(list, head->prev, head);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 INIT_LIST_HEAD(list);
356 }
357}
358
359/**
360 * list_entry - get the struct for this entry
361 * @ptr: the &struct list_head pointer.
362 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400363 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 */
365#define list_entry(ptr, type, member) \
366 container_of(ptr, type, member)
367
368/**
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700369 * list_first_entry - get the first element from a list
370 * @ptr: the list head to take the element from.
371 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400372 * @member: the name of the list_head within the struct.
Pavel Emelianovb5e61812007-05-08 00:30:19 -0700373 *
374 * Note, that list is expected to be not empty.
375 */
376#define list_first_entry(ptr, type, member) \
377 list_entry((ptr)->next, type, member)
378
379/**
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800380 * list_last_entry - get the last element from a list
381 * @ptr: the list head to take the element from.
382 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400383 * @member: the name of the list_head within the struct.
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800384 *
385 * Note, that list is expected to be not empty.
386 */
387#define list_last_entry(ptr, type, member) \
388 list_entry((ptr)->prev, type, member)
389
390/**
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000391 * list_first_entry_or_null - get the first element from a list
392 * @ptr: the list head to take the element from.
393 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400394 * @member: the name of the list_head within the struct.
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000395 *
396 * Note that if the list is empty, it returns NULL.
397 */
Chris Wilson12adfd82016-07-23 19:27:50 +0100398#define list_first_entry_or_null(ptr, type, member) ({ \
399 struct list_head *head__ = (ptr); \
400 struct list_head *pos__ = READ_ONCE(head__->next); \
401 pos__ != head__ ? list_entry(pos__, type, member) : NULL; \
402})
Jiri Pirko6d7581e2013-05-29 05:02:56 +0000403
404/**
Oleg Nesterov008208c2013-11-12 15:10:01 -0800405 * list_next_entry - get the next element in list
406 * @pos: the type * to cursor
Andrey Utkin3943f422014-11-14 05:09:55 +0400407 * @member: the name of the list_head within the struct.
Oleg Nesterov008208c2013-11-12 15:10:01 -0800408 */
409#define list_next_entry(pos, member) \
410 list_entry((pos)->member.next, typeof(*(pos)), member)
411
412/**
413 * list_prev_entry - get the prev element in list
414 * @pos: the type * to cursor
Andrey Utkin3943f422014-11-14 05:09:55 +0400415 * @member: the name of the list_head within the struct.
Oleg Nesterov008208c2013-11-12 15:10:01 -0800416 */
417#define list_prev_entry(pos, member) \
418 list_entry((pos)->member.prev, typeof(*(pos)), member)
419
420/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 * list_for_each - iterate over a list
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700422 * @pos: the &struct list_head to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * @head: the head for your list.
424 */
425#define list_for_each(pos, head) \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700426 for (pos = (head)->next; pos != (head); pos = pos->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 * list_for_each_prev - iterate over a list backwards
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700430 * @pos: the &struct list_head to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 * @head: the head for your list.
432 */
433#define list_for_each_prev(pos, head) \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700434 for (pos = (head)->prev; pos != (head); pos = pos->prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700437 * list_for_each_safe - iterate over a list safe against removal of list entry
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 * @n: another &struct list_head to use as temporary storage
440 * @head: the head for your list.
441 */
442#define list_for_each_safe(pos, n, head) \
443 for (pos = (head)->next, n = pos->next; pos != (head); \
444 pos = n, n = pos->next)
445
446/**
Randy Dunlap8f731f72007-10-18 23:39:28 -0700447 * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry
Denis V. Lunev37c42522007-10-16 23:29:53 -0700448 * @pos: the &struct list_head to use as a loop cursor.
449 * @n: another &struct list_head to use as temporary storage
450 * @head: the head for your list.
451 */
452#define list_for_each_prev_safe(pos, n, head) \
453 for (pos = (head)->prev, n = pos->prev; \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700454 pos != (head); \
Denis V. Lunev37c42522007-10-16 23:29:53 -0700455 pos = n, n = pos->prev)
456
457/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 * list_for_each_entry - iterate over list of given type
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700459 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400461 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 */
463#define list_for_each_entry(pos, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800464 for (pos = list_first_entry(head, typeof(*pos), member); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800465 &pos->member != (head); \
466 pos = list_next_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
468/**
469 * list_for_each_entry_reverse - iterate backwards over list of given type.
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700470 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400472 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 */
474#define list_for_each_entry_reverse(pos, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800475 for (pos = list_last_entry(head, typeof(*pos), member); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800476 &pos->member != (head); \
477 pos = list_prev_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479/**
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800480 * list_prepare_entry - prepare a pos entry for use in list_for_each_entry_continue()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 * @pos: the type * to use as a start point
482 * @head: the head of the list
Andrey Utkin3943f422014-11-14 05:09:55 +0400483 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700484 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -0800485 * Prepares a pos entry for use as a start point in list_for_each_entry_continue().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486 */
487#define list_prepare_entry(pos, head, member) \
488 ((pos) ? : list_entry(head, typeof(*pos), member))
489
490/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700491 * list_for_each_entry_continue - continue iteration over list of given type
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700492 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400494 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700495 *
496 * Continue to iterate over list of given type, continuing after
497 * the current position.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 */
499#define list_for_each_entry_continue(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800500 for (pos = list_next_entry(pos, member); \
501 &pos->member != (head); \
502 pos = list_next_entry(pos, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503
504/**
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700505 * list_for_each_entry_continue_reverse - iterate backwards from the given point
506 * @pos: the type * to use as a loop cursor.
507 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400508 * @member: the name of the list_head within the struct.
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700509 *
510 * Start to iterate over list of given type backwards, continuing after
511 * the current position.
512 */
513#define list_for_each_entry_continue_reverse(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800514 for (pos = list_prev_entry(pos, member); \
515 &pos->member != (head); \
516 pos = list_prev_entry(pos, member))
Pavel Emelyanov768f35912007-09-18 13:20:41 -0700517
518/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700519 * list_for_each_entry_from - iterate over list of given type from the current point
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700520 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800521 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400522 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700523 *
524 * Iterate over list of given type, continuing from current position.
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800525 */
526#define list_for_each_entry_from(pos, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800527 for (; &pos->member != (head); \
528 pos = list_next_entry(pos, member))
Arnaldo Carvalho de Meloe229c2f2006-03-20 17:19:17 -0800529
530/**
Jiri Pirkob8628152017-02-03 10:29:05 +0100531 * list_for_each_entry_from_reverse - iterate backwards over list of given type
532 * from the current point
533 * @pos: the type * to use as a loop cursor.
534 * @head: the head for your list.
535 * @member: the name of the list_head within the struct.
536 *
537 * Iterate backwards over list of given type, continuing from current position.
538 */
539#define list_for_each_entry_from_reverse(pos, head, member) \
540 for (; &pos->member != (head); \
541 pos = list_prev_entry(pos, member))
542
543/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700545 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 * @n: another type * to use as temporary storage
547 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400548 * @member: the name of the list_head within the struct.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 */
550#define list_for_each_entry_safe(pos, n, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800551 for (pos = list_first_entry(head, typeof(*pos), member), \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800552 n = list_next_entry(pos, member); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800554 pos = n, n = list_next_entry(n, member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555
556/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800557 * list_for_each_entry_safe_continue - continue list iteration safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700558 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700559 * @n: another type * to use as temporary storage
560 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400561 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700562 *
563 * Iterate over list of given type, continuing after current point,
564 * safe against removal of list entry.
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700565 */
566#define list_for_each_entry_safe_continue(pos, n, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800567 for (pos = list_next_entry(pos, member), \
568 n = list_next_entry(pos, member); \
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700569 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800570 pos = n, n = list_next_entry(n, member))
Arnaldo Carvalho de Melo74459dc2005-08-09 20:15:51 -0700571
572/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800573 * list_for_each_entry_safe_from - iterate over list from current point safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700574 * @pos: the type * to use as a loop cursor.
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800575 * @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 from current point, safe against
580 * removal of list entry.
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800581 */
582#define list_for_each_entry_safe_from(pos, n, head, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800583 for (n = list_next_entry(pos, member); \
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800584 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800585 pos = n, n = list_next_entry(n, member))
Arnaldo Carvalho de Melod8dcffe2006-03-20 17:18:05 -0800586
587/**
Ben Hutchings9a86e2b2010-03-05 13:43:17 -0800588 * list_for_each_entry_safe_reverse - iterate backwards over list safe against removal
Randy Dunlap8e3a67a2006-06-25 05:47:43 -0700589 * @pos: the type * to use as a loop cursor.
David Howells0ad42352006-01-09 20:51:31 -0800590 * @n: another type * to use as temporary storage
591 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400592 * @member: the name of the list_head within the struct.
Randy Dunlapfe96e572006-06-25 05:47:42 -0700593 *
594 * Iterate backwards over list of given type, safe against removal
595 * of list entry.
David Howells0ad42352006-01-09 20:51:31 -0800596 */
597#define list_for_each_entry_safe_reverse(pos, n, head, member) \
Oleg Nesterov93be3c22013-11-12 15:10:03 -0800598 for (pos = list_last_entry(head, typeof(*pos), member), \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800599 n = list_prev_entry(pos, member); \
David Howells0ad42352006-01-09 20:51:31 -0800600 &pos->member != (head); \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800601 pos = n, n = list_prev_entry(n, member))
David Howells0ad42352006-01-09 20:51:31 -0800602
npiggin@suse.de57439f82010-06-24 13:02:14 +1000603/**
604 * list_safe_reset_next - reset a stale list_for_each_entry_safe loop
605 * @pos: the loop cursor used in the list_for_each_entry_safe loop
606 * @n: temporary storage used in list_for_each_entry_safe
Andrey Utkin3943f422014-11-14 05:09:55 +0400607 * @member: the name of the list_head within the struct.
npiggin@suse.de57439f82010-06-24 13:02:14 +1000608 *
609 * list_safe_reset_next is not safe to use in general if the list may be
610 * modified concurrently (eg. the lock is dropped in the loop body). An
611 * exception to this is if the cursor element (pos) is pinned in the list,
612 * and list_safe_reset_next is called after re-taking the lock and before
613 * completing the current iteration of the loop body.
614 */
615#define list_safe_reset_next(pos, n, member) \
Oleg Nesterov8120e2e2013-11-12 15:10:02 -0800616 n = list_next_entry(pos, member)
npiggin@suse.de57439f82010-06-24 13:02:14 +1000617
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618/*
619 * Double linked lists with a single pointer list head.
620 * Mostly useful for hash tables where the two pointer list head is
621 * too wasteful.
622 * You lose the ability to access the tail in O(1).
623 */
624
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625#define HLIST_HEAD_INIT { .first = NULL }
626#define HLIST_HEAD(name) struct hlist_head name = { .first = NULL }
627#define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
Zach Brown490d6ab2006-02-03 03:03:56 -0800628static inline void INIT_HLIST_NODE(struct hlist_node *h)
629{
630 h->next = NULL;
631 h->pprev = NULL;
632}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633
634static inline int hlist_unhashed(const struct hlist_node *h)
635{
636 return !h->pprev;
637}
638
639static inline int hlist_empty(const struct hlist_head *h)
640{
Paul E. McKenney1658d352015-09-20 17:03:16 -0700641 return !READ_ONCE(h->first);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642}
643
644static inline void __hlist_del(struct hlist_node *n)
645{
646 struct hlist_node *next = n->next;
647 struct hlist_node **pprev = n->pprev;
Paul E. McKenney7f5f8732015-09-18 08:45:22 -0700648
649 WRITE_ONCE(*pprev, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 if (next)
651 next->pprev = pprev;
652}
653
654static inline void hlist_del(struct hlist_node *n)
655{
656 __hlist_del(n);
657 n->next = LIST_POISON1;
658 n->pprev = LIST_POISON2;
659}
660
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661static inline void hlist_del_init(struct hlist_node *n)
662{
Akinobu Mitada753be2006-04-28 15:21:23 -0700663 if (!hlist_unhashed(n)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 __hlist_del(n);
665 INIT_HLIST_NODE(n);
666 }
667}
668
669static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h)
670{
671 struct hlist_node *first = h->first;
672 n->next = first;
673 if (first)
674 first->pprev = &n->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700675 WRITE_ONCE(h->first, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 n->pprev = &h->first;
677}
678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679/* next must be != NULL */
680static inline void hlist_add_before(struct hlist_node *n,
681 struct hlist_node *next)
682{
683 n->pprev = next->pprev;
684 n->next = next;
685 next->pprev = &n->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700686 WRITE_ONCE(*(n->pprev), n);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687}
688
Ken Helias1d023282014-08-06 16:09:16 -0700689static inline void hlist_add_behind(struct hlist_node *n,
690 struct hlist_node *prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691{
Ken Heliasbc18dd32014-08-06 16:09:14 -0700692 n->next = prev->next;
Paul E. McKenney1c97be62015-09-20 22:02:17 -0700693 WRITE_ONCE(prev->next, n);
Ken Heliasbc18dd32014-08-06 16:09:14 -0700694 n->pprev = &prev->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Ken Heliasbc18dd32014-08-06 16:09:14 -0700696 if (n->next)
697 n->next->pprev = &n->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
Al Viro756acc22010-10-23 15:23:40 -0400700/* after that we'll appear to be on some hlist and hlist_del will work */
701static inline void hlist_add_fake(struct hlist_node *n)
702{
703 n->pprev = &n->next;
704}
705
Josef Bacikcbedaac2015-03-12 08:19:11 -0400706static inline bool hlist_fake(struct hlist_node *h)
707{
708 return h->pprev == &h->next;
709}
710
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200711/*
Thomas Gleixner15dba1e2016-07-04 09:50:27 +0000712 * Check whether the node is the only node of the head without
713 * accessing head:
714 */
715static inline bool
716hlist_is_singular_node(struct hlist_node *n, struct hlist_head *h)
717{
718 return !n->next && n->pprev == &h->first;
719}
720
721/*
Vegard Nossum673d62cc2008-08-31 23:39:21 +0200722 * Move a list from one list head to another. Fixup the pprev
723 * reference of the first entry if it exists.
724 */
725static inline void hlist_move_list(struct hlist_head *old,
726 struct hlist_head *new)
727{
728 new->first = old->first;
729 if (new->first)
730 new->first->pprev = &new->first;
731 old->first = NULL;
732}
733
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734#define hlist_entry(ptr, type, member) container_of(ptr,type,member)
735
736#define hlist_for_each(pos, head) \
Linus Torvalds75d65a42011-05-19 13:50:07 -0700737 for (pos = (head)->first; pos ; pos = pos->next)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739#define hlist_for_each_safe(pos, n, head) \
740 for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \
741 pos = n)
742
Sasha Levinb67bfe02013-02-27 17:06:00 -0800743#define hlist_entry_safe(ptr, type, member) \
Paul E. McKenneyf65846a2013-03-09 07:38:41 -0800744 ({ typeof(ptr) ____ptr = (ptr); \
745 ____ptr ? hlist_entry(____ptr, type, member) : NULL; \
746 })
Sasha Levinb67bfe02013-02-27 17:06:00 -0800747
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748/**
749 * hlist_for_each_entry - iterate over list of given type
Sasha Levinb67bfe02013-02-27 17:06:00 -0800750 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 * @head: the head for your list.
752 * @member: the name of the hlist_node within the struct.
753 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800754#define hlist_for_each_entry(pos, head, member) \
755 for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\
756 pos; \
757 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758
759/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700760 * hlist_for_each_entry_continue - iterate over a hlist continuing after current point
Sasha Levinb67bfe02013-02-27 17:06:00 -0800761 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 * @member: the name of the hlist_node within the struct.
763 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800764#define hlist_for_each_entry_continue(pos, member) \
765 for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member);\
766 pos; \
767 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
769/**
Randy Dunlapfe96e572006-06-25 05:47:42 -0700770 * hlist_for_each_entry_from - iterate over a hlist continuing from current point
Sasha Levinb67bfe02013-02-27 17:06:00 -0800771 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 * @member: the name of the hlist_node within the struct.
773 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800774#define hlist_for_each_entry_from(pos, member) \
775 for (; pos; \
776 pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777
778/**
779 * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry
Sasha Levinb67bfe02013-02-27 17:06:00 -0800780 * @pos: the type * to use as a loop cursor.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 * @n: another &struct hlist_node to use as temporary storage
782 * @head: the head for your list.
783 * @member: the name of the hlist_node within the struct.
784 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800785#define hlist_for_each_entry_safe(pos, n, head, member) \
786 for (pos = hlist_entry_safe((head)->first, typeof(*pos), member);\
787 pos && ({ n = pos->member.next; 1; }); \
788 pos = hlist_entry_safe(n, typeof(*pos), member))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790#endif