Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | #ifndef _LINUX_LIST_H |
| 2 | #define _LINUX_LIST_H |
| 3 | |
Chris Metcalf | de5d9bf | 2010-07-02 13:41:14 -0400 | [diff] [blame] | 4 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | #include <linux/stddef.h> |
Randy Dunlap | c9cf552 | 2006-06-27 02:53:52 -0700 | [diff] [blame] | 6 | #include <linux/poison.h> |
Linus Torvalds | e66eed6 | 2011-05-19 14:15:29 -0700 | [diff] [blame] | 7 | #include <linux/const.h> |
Masahiro Yamada | 8b21d9c | 2014-10-13 15:51:30 -0700 | [diff] [blame] | 8 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | |
| 10 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 20 | #define LIST_HEAD_INIT(name) { &(name), &(name) } |
| 21 | |
| 22 | #define LIST_HEAD(name) \ |
| 23 | struct list_head name = LIST_HEAD_INIT(name) |
| 24 | |
Zach Brown | 490d6ab | 2006-02-03 03:03:56 -0800 | [diff] [blame] | 25 | static inline void INIT_LIST_HEAD(struct list_head *list) |
| 26 | { |
Paul E. McKenney | 2f07384 | 2015-10-12 16:56:42 -0700 | [diff] [blame] | 27 | WRITE_ONCE(list->next, list); |
Zach Brown | 490d6ab | 2006-02-03 03:03:56 -0800 | [diff] [blame] | 28 | list->prev = list; |
| 29 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
Kees Cook | d7c8167 | 2016-08-17 14:42:08 -0700 | [diff] [blame] | 31 | #ifdef CONFIG_DEBUG_LIST |
| 32 | extern bool __list_add_valid(struct list_head *new, |
| 33 | struct list_head *prev, |
| 34 | struct list_head *next); |
Kees Cook | 0cd340d | 2016-08-17 14:42:10 -0700 | [diff] [blame] | 35 | extern bool __list_del_entry_valid(struct list_head *entry); |
Kees Cook | d7c8167 | 2016-08-17 14:42:08 -0700 | [diff] [blame] | 36 | #else |
| 37 | static 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 Cook | 0cd340d | 2016-08-17 14:42:10 -0700 | [diff] [blame] | 43 | static inline bool __list_del_entry_valid(struct list_head *entry) |
| 44 | { |
| 45 | return true; |
| 46 | } |
Kees Cook | d7c8167 | 2016-08-17 14:42:08 -0700 | [diff] [blame] | 47 | #endif |
| 48 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | /* |
| 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 | */ |
| 55 | static inline void __list_add(struct list_head *new, |
| 56 | struct list_head *prev, |
| 57 | struct list_head *next) |
| 58 | { |
Kees Cook | d7c8167 | 2016-08-17 14:42:08 -0700 | [diff] [blame] | 59 | if (!__list_add_valid(new, prev, next)) |
| 60 | return; |
| 61 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | next->prev = new; |
| 63 | new->next = next; |
| 64 | new->prev = prev; |
Paul E. McKenney | 1c97be6 | 2015-09-20 22:02:17 -0700 | [diff] [blame] | 65 | WRITE_ONCE(prev->next, new); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 66 | } |
| 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 | */ |
| 76 | static inline void list_add(struct list_head *new, struct list_head *head) |
| 77 | { |
| 78 | __list_add(new, head, head->next); |
| 79 | } |
Dave Jones | 199a9af | 2006-09-29 01:59:00 -0700 | [diff] [blame] | 80 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
| 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 | */ |
| 90 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | * 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 | */ |
| 102 | static inline void __list_del(struct list_head * prev, struct list_head * next) |
| 103 | { |
| 104 | next->prev = prev; |
Paul E. McKenney | 7f5f873 | 2015-09-18 08:45:22 -0700 | [diff] [blame] | 105 | WRITE_ONCE(prev->next, next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | } |
| 107 | |
| 108 | /** |
| 109 | * list_del - deletes entry from list. |
| 110 | * @entry: the element to delete from the list. |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 111 | * Note: list_empty() on entry does not return true after this, the entry is |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | * in an undefined state. |
| 113 | */ |
Linus Torvalds | 3c18d4d | 2011-02-18 11:32:28 -0800 | [diff] [blame] | 114 | static inline void __list_del_entry(struct list_head *entry) |
| 115 | { |
Kees Cook | 0cd340d | 2016-08-17 14:42:10 -0700 | [diff] [blame] | 116 | if (!__list_del_entry_valid(entry)) |
| 117 | return; |
| 118 | |
Linus Torvalds | 3c18d4d | 2011-02-18 11:32:28 -0800 | [diff] [blame] | 119 | __list_del(entry->prev, entry->next); |
| 120 | } |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | static inline void list_del(struct list_head *entry) |
| 123 | { |
Kees Cook | 0cd340d | 2016-08-17 14:42:10 -0700 | [diff] [blame] | 124 | __list_del_entry(entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 125 | entry->next = LIST_POISON1; |
| 126 | entry->prev = LIST_POISON2; |
| 127 | } |
| 128 | |
| 129 | /** |
Oleg Nesterov | 54e7377 | 2006-06-23 02:05:54 -0700 | [diff] [blame] | 130 | * 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. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 133 | * |
| 134 | * If @old was empty, it will be overwritten. |
Oleg Nesterov | 54e7377 | 2006-06-23 02:05:54 -0700 | [diff] [blame] | 135 | */ |
| 136 | static 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 | |
| 145 | static 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. Day | 45f8bde | 2007-01-26 00:57:09 -0800 | [diff] [blame] | 152 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | * list_del_init - deletes entry from list and reinitialize it. |
| 154 | * @entry: the element to delete from the list. |
| 155 | */ |
| 156 | static inline void list_del_init(struct list_head *entry) |
| 157 | { |
Linus Torvalds | 3c18d4d | 2011-02-18 11:32:28 -0800 | [diff] [blame] | 158 | __list_del_entry(entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | 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 | */ |
| 167 | static inline void list_move(struct list_head *list, struct list_head *head) |
| 168 | { |
Linus Torvalds | 3c18d4d | 2011-02-18 11:32:28 -0800 | [diff] [blame] | 169 | __list_del_entry(list); |
Daniel Walker | 78db2ad | 2007-05-12 16:28:35 -0700 | [diff] [blame] | 170 | list_add(list, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | } |
| 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 | */ |
| 178 | static inline void list_move_tail(struct list_head *list, |
| 179 | struct list_head *head) |
| 180 | { |
Linus Torvalds | 3c18d4d | 2011-02-18 11:32:28 -0800 | [diff] [blame] | 181 | __list_del_entry(list); |
Daniel Walker | 78db2ad | 2007-05-12 16:28:35 -0700 | [diff] [blame] | 182 | list_add_tail(list, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 183 | } |
| 184 | |
| 185 | /** |
Shailabh Nagar | e8f4d97 | 2006-07-14 00:24:35 -0700 | [diff] [blame] | 186 | * 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 | */ |
| 190 | static 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | * list_empty - tests whether a list is empty |
| 198 | * @head: the list to test. |
| 199 | */ |
| 200 | static inline int list_empty(const struct list_head *head) |
| 201 | { |
Paul E. McKenney | 1658d35 | 2015-09-20 17:03:16 -0700 | [diff] [blame] | 202 | return READ_ONCE(head->next) == head; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 203 | } |
| 204 | |
| 205 | /** |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 206 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | * |
| 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | */ |
| 218 | static 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 Hiramatsu | 9960257 | 2008-04-28 02:14:27 -0700 | [diff] [blame] | 224 | /** |
Frederic Weisbecker | 5908cdc | 2010-01-09 20:53:14 +0100 | [diff] [blame] | 225 | * list_rotate_left - rotate the list to the left |
| 226 | * @head: the head of the list |
| 227 | */ |
| 228 | static 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 Hiramatsu | 9960257 | 2008-04-28 02:14:27 -0700 | [diff] [blame] | 239 | * list_is_singular - tests whether a list has just one entry. |
| 240 | * @head: the list to test. |
| 241 | */ |
| 242 | static inline int list_is_singular(const struct list_head *head) |
| 243 | { |
| 244 | return !list_empty(head) && (head->next == head->prev); |
| 245 | } |
| 246 | |
Luis R. Rodriguez | 00e8a4d | 2008-08-06 13:28:54 -0700 | [diff] [blame] | 247 | static 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 | */ |
| 273 | static 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 | |
Robert P. J. Day | 95d8c36 | 2008-04-29 00:59:29 -0700 | [diff] [blame] | 287 | static inline void __list_splice(const struct list_head *list, |
Luis R. Rodriguez | 7d283ae | 2008-08-06 15:21:26 -0700 | [diff] [blame] | 288 | struct list_head *prev, |
| 289 | struct list_head *next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | { |
| 291 | struct list_head *first = list->next; |
| 292 | struct list_head *last = list->prev; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 293 | |
Luis R. Rodriguez | 7d283ae | 2008-08-06 15:21:26 -0700 | [diff] [blame] | 294 | first->prev = prev; |
| 295 | prev->next = first; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 296 | |
Luis R. Rodriguez | 7d283ae | 2008-08-06 15:21:26 -0700 | [diff] [blame] | 297 | last->next = next; |
| 298 | next->prev = last; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | } |
| 300 | |
| 301 | /** |
Luis R. Rodriguez | 7d283ae | 2008-08-06 15:21:26 -0700 | [diff] [blame] | 302 | * list_splice - join two lists, this is designed for stacks |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | * @list: the new list to add. |
| 304 | * @head: the place to add it in the first list. |
| 305 | */ |
Robert P. J. Day | 95d8c36 | 2008-04-29 00:59:29 -0700 | [diff] [blame] | 306 | static inline void list_splice(const struct list_head *list, |
| 307 | struct list_head *head) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | { |
| 309 | if (!list_empty(list)) |
Luis R. Rodriguez | 7d283ae | 2008-08-06 15:21:26 -0700 | [diff] [blame] | 310 | __list_splice(list, head, head->next); |
| 311 | } |
| 312 | |
| 313 | /** |
| 314 | * list_splice_tail - join two lists, each list being a queue |
| 315 | * @list: the new list to add. |
| 316 | * @head: the place to add it in the first list. |
| 317 | */ |
| 318 | static inline void list_splice_tail(struct list_head *list, |
| 319 | struct list_head *head) |
| 320 | { |
| 321 | if (!list_empty(list)) |
| 322 | __list_splice(list, head->prev, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | /** |
| 326 | * list_splice_init - join two lists and reinitialise the emptied list. |
| 327 | * @list: the new list to add. |
| 328 | * @head: the place to add it in the first list. |
| 329 | * |
| 330 | * The list at @list is reinitialised |
| 331 | */ |
| 332 | static inline void list_splice_init(struct list_head *list, |
| 333 | struct list_head *head) |
| 334 | { |
| 335 | if (!list_empty(list)) { |
Luis R. Rodriguez | 7d283ae | 2008-08-06 15:21:26 -0700 | [diff] [blame] | 336 | __list_splice(list, head, head->next); |
| 337 | INIT_LIST_HEAD(list); |
| 338 | } |
| 339 | } |
| 340 | |
| 341 | /** |
Randy Dunlap | 6724cce | 2008-08-08 13:56:20 -0700 | [diff] [blame] | 342 | * list_splice_tail_init - join two lists and reinitialise the emptied list |
Luis R. Rodriguez | 7d283ae | 2008-08-06 15:21:26 -0700 | [diff] [blame] | 343 | * @list: the new list to add. |
| 344 | * @head: the place to add it in the first list. |
| 345 | * |
Randy Dunlap | 6724cce | 2008-08-08 13:56:20 -0700 | [diff] [blame] | 346 | * Each of the lists is a queue. |
Luis R. Rodriguez | 7d283ae | 2008-08-06 15:21:26 -0700 | [diff] [blame] | 347 | * The list at @list is reinitialised |
| 348 | */ |
| 349 | static inline void list_splice_tail_init(struct list_head *list, |
| 350 | struct list_head *head) |
| 351 | { |
| 352 | if (!list_empty(list)) { |
| 353 | __list_splice(list, head->prev, head); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 354 | INIT_LIST_HEAD(list); |
| 355 | } |
| 356 | } |
| 357 | |
| 358 | /** |
| 359 | * list_entry - get the struct for this entry |
| 360 | * @ptr: the &struct list_head pointer. |
| 361 | * @type: the type of the struct this is embedded in. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 362 | * @member: the name of the list_head within the struct. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | */ |
| 364 | #define list_entry(ptr, type, member) \ |
| 365 | container_of(ptr, type, member) |
| 366 | |
| 367 | /** |
Pavel Emelianov | b5e6181 | 2007-05-08 00:30:19 -0700 | [diff] [blame] | 368 | * list_first_entry - get the first element from a list |
| 369 | * @ptr: the list head to take the element from. |
| 370 | * @type: the type of the struct this is embedded in. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 371 | * @member: the name of the list_head within the struct. |
Pavel Emelianov | b5e6181 | 2007-05-08 00:30:19 -0700 | [diff] [blame] | 372 | * |
| 373 | * Note, that list is expected to be not empty. |
| 374 | */ |
| 375 | #define list_first_entry(ptr, type, member) \ |
| 376 | list_entry((ptr)->next, type, member) |
| 377 | |
| 378 | /** |
Oleg Nesterov | 93be3c2 | 2013-11-12 15:10:03 -0800 | [diff] [blame] | 379 | * list_last_entry - get the last element from a list |
| 380 | * @ptr: the list head to take the element from. |
| 381 | * @type: the type of the struct this is embedded in. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 382 | * @member: the name of the list_head within the struct. |
Oleg Nesterov | 93be3c2 | 2013-11-12 15:10:03 -0800 | [diff] [blame] | 383 | * |
| 384 | * Note, that list is expected to be not empty. |
| 385 | */ |
| 386 | #define list_last_entry(ptr, type, member) \ |
| 387 | list_entry((ptr)->prev, type, member) |
| 388 | |
| 389 | /** |
Jiri Pirko | 6d7581e | 2013-05-29 05:02:56 +0000 | [diff] [blame] | 390 | * list_first_entry_or_null - get the first element from a list |
| 391 | * @ptr: the list head to take the element from. |
| 392 | * @type: the type of the struct this is embedded in. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 393 | * @member: the name of the list_head within the struct. |
Jiri Pirko | 6d7581e | 2013-05-29 05:02:56 +0000 | [diff] [blame] | 394 | * |
| 395 | * Note that if the list is empty, it returns NULL. |
| 396 | */ |
Chris Wilson | 12adfd8 | 2016-07-23 19:27:50 +0100 | [diff] [blame] | 397 | #define list_first_entry_or_null(ptr, type, member) ({ \ |
| 398 | struct list_head *head__ = (ptr); \ |
| 399 | struct list_head *pos__ = READ_ONCE(head__->next); \ |
| 400 | pos__ != head__ ? list_entry(pos__, type, member) : NULL; \ |
| 401 | }) |
Jiri Pirko | 6d7581e | 2013-05-29 05:02:56 +0000 | [diff] [blame] | 402 | |
| 403 | /** |
Oleg Nesterov | 008208c | 2013-11-12 15:10:01 -0800 | [diff] [blame] | 404 | * list_next_entry - get the next element in list |
| 405 | * @pos: the type * to cursor |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 406 | * @member: the name of the list_head within the struct. |
Oleg Nesterov | 008208c | 2013-11-12 15:10:01 -0800 | [diff] [blame] | 407 | */ |
| 408 | #define list_next_entry(pos, member) \ |
| 409 | list_entry((pos)->member.next, typeof(*(pos)), member) |
| 410 | |
| 411 | /** |
| 412 | * list_prev_entry - get the prev element in list |
| 413 | * @pos: the type * to cursor |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 414 | * @member: the name of the list_head within the struct. |
Oleg Nesterov | 008208c | 2013-11-12 15:10:01 -0800 | [diff] [blame] | 415 | */ |
| 416 | #define list_prev_entry(pos, member) \ |
| 417 | list_entry((pos)->member.prev, typeof(*(pos)), member) |
| 418 | |
| 419 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 420 | * list_for_each - iterate over a list |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 421 | * @pos: the &struct list_head to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 422 | * @head: the head for your list. |
| 423 | */ |
| 424 | #define list_for_each(pos, head) \ |
Linus Torvalds | e66eed6 | 2011-05-19 14:15:29 -0700 | [diff] [blame] | 425 | for (pos = (head)->next; pos != (head); pos = pos->next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | |
| 427 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 428 | * list_for_each_prev - iterate over a list backwards |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 429 | * @pos: the &struct list_head to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | * @head: the head for your list. |
| 431 | */ |
| 432 | #define list_for_each_prev(pos, head) \ |
Linus Torvalds | e66eed6 | 2011-05-19 14:15:29 -0700 | [diff] [blame] | 433 | for (pos = (head)->prev; pos != (head); pos = pos->prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 434 | |
| 435 | /** |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 436 | * list_for_each_safe - iterate over a list safe against removal of list entry |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 437 | * @pos: the &struct list_head to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | * @n: another &struct list_head to use as temporary storage |
| 439 | * @head: the head for your list. |
| 440 | */ |
| 441 | #define list_for_each_safe(pos, n, head) \ |
| 442 | for (pos = (head)->next, n = pos->next; pos != (head); \ |
| 443 | pos = n, n = pos->next) |
| 444 | |
| 445 | /** |
Randy Dunlap | 8f731f7 | 2007-10-18 23:39:28 -0700 | [diff] [blame] | 446 | * list_for_each_prev_safe - iterate over a list backwards safe against removal of list entry |
Denis V. Lunev | 37c4252 | 2007-10-16 23:29:53 -0700 | [diff] [blame] | 447 | * @pos: the &struct list_head to use as a loop cursor. |
| 448 | * @n: another &struct list_head to use as temporary storage |
| 449 | * @head: the head for your list. |
| 450 | */ |
| 451 | #define list_for_each_prev_safe(pos, n, head) \ |
| 452 | for (pos = (head)->prev, n = pos->prev; \ |
Linus Torvalds | e66eed6 | 2011-05-19 14:15:29 -0700 | [diff] [blame] | 453 | pos != (head); \ |
Denis V. Lunev | 37c4252 | 2007-10-16 23:29:53 -0700 | [diff] [blame] | 454 | pos = n, n = pos->prev) |
| 455 | |
| 456 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | * list_for_each_entry - iterate over list of given type |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 458 | * @pos: the type * to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 460 | * @member: the name of the list_head within the struct. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | */ |
| 462 | #define list_for_each_entry(pos, head, member) \ |
Oleg Nesterov | 93be3c2 | 2013-11-12 15:10:03 -0800 | [diff] [blame] | 463 | for (pos = list_first_entry(head, typeof(*pos), member); \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 464 | &pos->member != (head); \ |
| 465 | pos = list_next_entry(pos, member)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | |
| 467 | /** |
| 468 | * list_for_each_entry_reverse - iterate backwards over list of given type. |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 469 | * @pos: the type * to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 471 | * @member: the name of the list_head within the struct. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | */ |
| 473 | #define list_for_each_entry_reverse(pos, head, member) \ |
Oleg Nesterov | 93be3c2 | 2013-11-12 15:10:03 -0800 | [diff] [blame] | 474 | for (pos = list_last_entry(head, typeof(*pos), member); \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 475 | &pos->member != (head); \ |
| 476 | pos = list_prev_entry(pos, member)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | |
| 478 | /** |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 479 | * list_prepare_entry - prepare a pos entry for use in list_for_each_entry_continue() |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 480 | * @pos: the type * to use as a start point |
| 481 | * @head: the head of the list |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 482 | * @member: the name of the list_head within the struct. |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 483 | * |
Robert P. J. Day | 72fd4a3 | 2007-02-10 01:45:59 -0800 | [diff] [blame] | 484 | * Prepares a pos entry for use as a start point in list_for_each_entry_continue(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 485 | */ |
| 486 | #define list_prepare_entry(pos, head, member) \ |
| 487 | ((pos) ? : list_entry(head, typeof(*pos), member)) |
| 488 | |
| 489 | /** |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 490 | * list_for_each_entry_continue - continue iteration over list of given type |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 491 | * @pos: the type * to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 493 | * @member: the name of the list_head within the struct. |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 494 | * |
| 495 | * Continue to iterate over list of given type, continuing after |
| 496 | * the current position. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | */ |
| 498 | #define list_for_each_entry_continue(pos, head, member) \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 499 | for (pos = list_next_entry(pos, member); \ |
| 500 | &pos->member != (head); \ |
| 501 | pos = list_next_entry(pos, member)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 502 | |
| 503 | /** |
Pavel Emelyanov | 768f3591 | 2007-09-18 13:20:41 -0700 | [diff] [blame] | 504 | * list_for_each_entry_continue_reverse - iterate backwards from the given point |
| 505 | * @pos: the type * to use as a loop cursor. |
| 506 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 507 | * @member: the name of the list_head within the struct. |
Pavel Emelyanov | 768f3591 | 2007-09-18 13:20:41 -0700 | [diff] [blame] | 508 | * |
| 509 | * Start to iterate over list of given type backwards, continuing after |
| 510 | * the current position. |
| 511 | */ |
| 512 | #define list_for_each_entry_continue_reverse(pos, head, member) \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 513 | for (pos = list_prev_entry(pos, member); \ |
| 514 | &pos->member != (head); \ |
| 515 | pos = list_prev_entry(pos, member)) |
Pavel Emelyanov | 768f3591 | 2007-09-18 13:20:41 -0700 | [diff] [blame] | 516 | |
| 517 | /** |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 518 | * list_for_each_entry_from - iterate over list of given type from the current point |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 519 | * @pos: the type * to use as a loop cursor. |
Arnaldo Carvalho de Melo | e229c2f | 2006-03-20 17:19:17 -0800 | [diff] [blame] | 520 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 521 | * @member: the name of the list_head within the struct. |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 522 | * |
| 523 | * Iterate over list of given type, continuing from current position. |
Arnaldo Carvalho de Melo | e229c2f | 2006-03-20 17:19:17 -0800 | [diff] [blame] | 524 | */ |
| 525 | #define list_for_each_entry_from(pos, head, member) \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 526 | for (; &pos->member != (head); \ |
| 527 | pos = list_next_entry(pos, member)) |
Arnaldo Carvalho de Melo | e229c2f | 2006-03-20 17:19:17 -0800 | [diff] [blame] | 528 | |
| 529 | /** |
Jiri Pirko | b862815 | 2017-02-03 10:29:05 +0100 | [diff] [blame] | 530 | * list_for_each_entry_from_reverse - iterate backwards over list of given type |
| 531 | * from the current point |
| 532 | * @pos: the type * to use as a loop cursor. |
| 533 | * @head: the head for your list. |
| 534 | * @member: the name of the list_head within the struct. |
| 535 | * |
| 536 | * Iterate backwards over list of given type, continuing from current position. |
| 537 | */ |
| 538 | #define list_for_each_entry_from_reverse(pos, head, member) \ |
| 539 | for (; &pos->member != (head); \ |
| 540 | pos = list_prev_entry(pos, member)) |
| 541 | |
| 542 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | * list_for_each_entry_safe - iterate over list of given type safe against removal of list entry |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 544 | * @pos: the type * to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 545 | * @n: another type * to use as temporary storage |
| 546 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 547 | * @member: the name of the list_head within the struct. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | */ |
| 549 | #define list_for_each_entry_safe(pos, n, head, member) \ |
Oleg Nesterov | 93be3c2 | 2013-11-12 15:10:03 -0800 | [diff] [blame] | 550 | for (pos = list_first_entry(head, typeof(*pos), member), \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 551 | n = list_next_entry(pos, member); \ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 552 | &pos->member != (head); \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 553 | pos = n, n = list_next_entry(n, member)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 554 | |
| 555 | /** |
Ben Hutchings | 9a86e2b | 2010-03-05 13:43:17 -0800 | [diff] [blame] | 556 | * list_for_each_entry_safe_continue - continue list iteration safe against removal |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 557 | * @pos: the type * to use as a loop cursor. |
Arnaldo Carvalho de Melo | 74459dc | 2005-08-09 20:15:51 -0700 | [diff] [blame] | 558 | * @n: another type * to use as temporary storage |
| 559 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 560 | * @member: the name of the list_head within the struct. |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 561 | * |
| 562 | * Iterate over list of given type, continuing after current point, |
| 563 | * safe against removal of list entry. |
Arnaldo Carvalho de Melo | 74459dc | 2005-08-09 20:15:51 -0700 | [diff] [blame] | 564 | */ |
| 565 | #define list_for_each_entry_safe_continue(pos, n, head, member) \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 566 | for (pos = list_next_entry(pos, member), \ |
| 567 | n = list_next_entry(pos, member); \ |
Arnaldo Carvalho de Melo | 74459dc | 2005-08-09 20:15:51 -0700 | [diff] [blame] | 568 | &pos->member != (head); \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 569 | pos = n, n = list_next_entry(n, member)) |
Arnaldo Carvalho de Melo | 74459dc | 2005-08-09 20:15:51 -0700 | [diff] [blame] | 570 | |
| 571 | /** |
Ben Hutchings | 9a86e2b | 2010-03-05 13:43:17 -0800 | [diff] [blame] | 572 | * list_for_each_entry_safe_from - iterate over list from current point safe against removal |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 573 | * @pos: the type * to use as a loop cursor. |
Arnaldo Carvalho de Melo | d8dcffe | 2006-03-20 17:18:05 -0800 | [diff] [blame] | 574 | * @n: another type * to use as temporary storage |
| 575 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 576 | * @member: the name of the list_head within the struct. |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 577 | * |
| 578 | * Iterate over list of given type from current point, safe against |
| 579 | * removal of list entry. |
Arnaldo Carvalho de Melo | d8dcffe | 2006-03-20 17:18:05 -0800 | [diff] [blame] | 580 | */ |
| 581 | #define list_for_each_entry_safe_from(pos, n, head, member) \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 582 | for (n = list_next_entry(pos, member); \ |
Arnaldo Carvalho de Melo | d8dcffe | 2006-03-20 17:18:05 -0800 | [diff] [blame] | 583 | &pos->member != (head); \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 584 | pos = n, n = list_next_entry(n, member)) |
Arnaldo Carvalho de Melo | d8dcffe | 2006-03-20 17:18:05 -0800 | [diff] [blame] | 585 | |
| 586 | /** |
Ben Hutchings | 9a86e2b | 2010-03-05 13:43:17 -0800 | [diff] [blame] | 587 | * list_for_each_entry_safe_reverse - iterate backwards over list safe against removal |
Randy Dunlap | 8e3a67a | 2006-06-25 05:47:43 -0700 | [diff] [blame] | 588 | * @pos: the type * to use as a loop cursor. |
David Howells | 0ad4235 | 2006-01-09 20:51:31 -0800 | [diff] [blame] | 589 | * @n: another type * to use as temporary storage |
| 590 | * @head: the head for your list. |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 591 | * @member: the name of the list_head within the struct. |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 592 | * |
| 593 | * Iterate backwards over list of given type, safe against removal |
| 594 | * of list entry. |
David Howells | 0ad4235 | 2006-01-09 20:51:31 -0800 | [diff] [blame] | 595 | */ |
| 596 | #define list_for_each_entry_safe_reverse(pos, n, head, member) \ |
Oleg Nesterov | 93be3c2 | 2013-11-12 15:10:03 -0800 | [diff] [blame] | 597 | for (pos = list_last_entry(head, typeof(*pos), member), \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 598 | n = list_prev_entry(pos, member); \ |
David Howells | 0ad4235 | 2006-01-09 20:51:31 -0800 | [diff] [blame] | 599 | &pos->member != (head); \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 600 | pos = n, n = list_prev_entry(n, member)) |
David Howells | 0ad4235 | 2006-01-09 20:51:31 -0800 | [diff] [blame] | 601 | |
npiggin@suse.de | 57439f8 | 2010-06-24 13:02:14 +1000 | [diff] [blame] | 602 | /** |
| 603 | * list_safe_reset_next - reset a stale list_for_each_entry_safe loop |
| 604 | * @pos: the loop cursor used in the list_for_each_entry_safe loop |
| 605 | * @n: temporary storage used in list_for_each_entry_safe |
Andrey Utkin | 3943f42 | 2014-11-14 05:09:55 +0400 | [diff] [blame] | 606 | * @member: the name of the list_head within the struct. |
npiggin@suse.de | 57439f8 | 2010-06-24 13:02:14 +1000 | [diff] [blame] | 607 | * |
| 608 | * list_safe_reset_next is not safe to use in general if the list may be |
| 609 | * modified concurrently (eg. the lock is dropped in the loop body). An |
| 610 | * exception to this is if the cursor element (pos) is pinned in the list, |
| 611 | * and list_safe_reset_next is called after re-taking the lock and before |
| 612 | * completing the current iteration of the loop body. |
| 613 | */ |
| 614 | #define list_safe_reset_next(pos, n, member) \ |
Oleg Nesterov | 8120e2e | 2013-11-12 15:10:02 -0800 | [diff] [blame] | 615 | n = list_next_entry(pos, member) |
npiggin@suse.de | 57439f8 | 2010-06-24 13:02:14 +1000 | [diff] [blame] | 616 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 617 | /* |
| 618 | * Double linked lists with a single pointer list head. |
| 619 | * Mostly useful for hash tables where the two pointer list head is |
| 620 | * too wasteful. |
| 621 | * You lose the ability to access the tail in O(1). |
| 622 | */ |
| 623 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 624 | #define HLIST_HEAD_INIT { .first = NULL } |
| 625 | #define HLIST_HEAD(name) struct hlist_head name = { .first = NULL } |
| 626 | #define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL) |
Zach Brown | 490d6ab | 2006-02-03 03:03:56 -0800 | [diff] [blame] | 627 | static inline void INIT_HLIST_NODE(struct hlist_node *h) |
| 628 | { |
| 629 | h->next = NULL; |
| 630 | h->pprev = NULL; |
| 631 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 632 | |
| 633 | static inline int hlist_unhashed(const struct hlist_node *h) |
| 634 | { |
| 635 | return !h->pprev; |
| 636 | } |
| 637 | |
| 638 | static inline int hlist_empty(const struct hlist_head *h) |
| 639 | { |
Paul E. McKenney | 1658d35 | 2015-09-20 17:03:16 -0700 | [diff] [blame] | 640 | return !READ_ONCE(h->first); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | static inline void __hlist_del(struct hlist_node *n) |
| 644 | { |
| 645 | struct hlist_node *next = n->next; |
| 646 | struct hlist_node **pprev = n->pprev; |
Paul E. McKenney | 7f5f873 | 2015-09-18 08:45:22 -0700 | [diff] [blame] | 647 | |
| 648 | WRITE_ONCE(*pprev, next); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 649 | if (next) |
| 650 | next->pprev = pprev; |
| 651 | } |
| 652 | |
| 653 | static inline void hlist_del(struct hlist_node *n) |
| 654 | { |
| 655 | __hlist_del(n); |
| 656 | n->next = LIST_POISON1; |
| 657 | n->pprev = LIST_POISON2; |
| 658 | } |
| 659 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 660 | static inline void hlist_del_init(struct hlist_node *n) |
| 661 | { |
Akinobu Mita | da753be | 2006-04-28 15:21:23 -0700 | [diff] [blame] | 662 | if (!hlist_unhashed(n)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | __hlist_del(n); |
| 664 | INIT_HLIST_NODE(n); |
| 665 | } |
| 666 | } |
| 667 | |
| 668 | static inline void hlist_add_head(struct hlist_node *n, struct hlist_head *h) |
| 669 | { |
| 670 | struct hlist_node *first = h->first; |
| 671 | n->next = first; |
| 672 | if (first) |
| 673 | first->pprev = &n->next; |
Paul E. McKenney | 1c97be6 | 2015-09-20 22:02:17 -0700 | [diff] [blame] | 674 | WRITE_ONCE(h->first, n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 675 | n->pprev = &h->first; |
| 676 | } |
| 677 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 678 | /* next must be != NULL */ |
| 679 | static inline void hlist_add_before(struct hlist_node *n, |
| 680 | struct hlist_node *next) |
| 681 | { |
| 682 | n->pprev = next->pprev; |
| 683 | n->next = next; |
| 684 | next->pprev = &n->next; |
Paul E. McKenney | 1c97be6 | 2015-09-20 22:02:17 -0700 | [diff] [blame] | 685 | WRITE_ONCE(*(n->pprev), n); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 686 | } |
| 687 | |
Ken Helias | 1d02328 | 2014-08-06 16:09:16 -0700 | [diff] [blame] | 688 | static inline void hlist_add_behind(struct hlist_node *n, |
| 689 | struct hlist_node *prev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 690 | { |
Ken Helias | bc18dd3 | 2014-08-06 16:09:14 -0700 | [diff] [blame] | 691 | n->next = prev->next; |
Paul E. McKenney | 1c97be6 | 2015-09-20 22:02:17 -0700 | [diff] [blame] | 692 | WRITE_ONCE(prev->next, n); |
Ken Helias | bc18dd3 | 2014-08-06 16:09:14 -0700 | [diff] [blame] | 693 | n->pprev = &prev->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 694 | |
Ken Helias | bc18dd3 | 2014-08-06 16:09:14 -0700 | [diff] [blame] | 695 | if (n->next) |
| 696 | n->next->pprev = &n->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 697 | } |
| 698 | |
Al Viro | 756acc2 | 2010-10-23 15:23:40 -0400 | [diff] [blame] | 699 | /* after that we'll appear to be on some hlist and hlist_del will work */ |
| 700 | static inline void hlist_add_fake(struct hlist_node *n) |
| 701 | { |
| 702 | n->pprev = &n->next; |
| 703 | } |
| 704 | |
Josef Bacik | cbedaac | 2015-03-12 08:19:11 -0400 | [diff] [blame] | 705 | static inline bool hlist_fake(struct hlist_node *h) |
| 706 | { |
| 707 | return h->pprev == &h->next; |
| 708 | } |
| 709 | |
Vegard Nossum | 673d62cc | 2008-08-31 23:39:21 +0200 | [diff] [blame] | 710 | /* |
Thomas Gleixner | 15dba1e | 2016-07-04 09:50:27 +0000 | [diff] [blame] | 711 | * Check whether the node is the only node of the head without |
| 712 | * accessing head: |
| 713 | */ |
| 714 | static inline bool |
| 715 | hlist_is_singular_node(struct hlist_node *n, struct hlist_head *h) |
| 716 | { |
| 717 | return !n->next && n->pprev == &h->first; |
| 718 | } |
| 719 | |
| 720 | /* |
Vegard Nossum | 673d62cc | 2008-08-31 23:39:21 +0200 | [diff] [blame] | 721 | * Move a list from one list head to another. Fixup the pprev |
| 722 | * reference of the first entry if it exists. |
| 723 | */ |
| 724 | static inline void hlist_move_list(struct hlist_head *old, |
| 725 | struct hlist_head *new) |
| 726 | { |
| 727 | new->first = old->first; |
| 728 | if (new->first) |
| 729 | new->first->pprev = &new->first; |
| 730 | old->first = NULL; |
| 731 | } |
| 732 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | #define hlist_entry(ptr, type, member) container_of(ptr,type,member) |
| 734 | |
| 735 | #define hlist_for_each(pos, head) \ |
Linus Torvalds | 75d65a4 | 2011-05-19 13:50:07 -0700 | [diff] [blame] | 736 | for (pos = (head)->first; pos ; pos = pos->next) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 737 | |
| 738 | #define hlist_for_each_safe(pos, n, head) \ |
| 739 | for (pos = (head)->first; pos && ({ n = pos->next; 1; }); \ |
| 740 | pos = n) |
| 741 | |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 742 | #define hlist_entry_safe(ptr, type, member) \ |
Paul E. McKenney | f65846a | 2013-03-09 07:38:41 -0800 | [diff] [blame] | 743 | ({ typeof(ptr) ____ptr = (ptr); \ |
| 744 | ____ptr ? hlist_entry(____ptr, type, member) : NULL; \ |
| 745 | }) |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 746 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | /** |
| 748 | * hlist_for_each_entry - iterate over list of given type |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 749 | * @pos: the type * to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 750 | * @head: the head for your list. |
| 751 | * @member: the name of the hlist_node within the struct. |
| 752 | */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 753 | #define hlist_for_each_entry(pos, head, member) \ |
| 754 | for (pos = hlist_entry_safe((head)->first, typeof(*(pos)), member);\ |
| 755 | pos; \ |
| 756 | pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 757 | |
| 758 | /** |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 759 | * hlist_for_each_entry_continue - iterate over a hlist continuing after current point |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 760 | * @pos: the type * to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | * @member: the name of the hlist_node within the struct. |
| 762 | */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 763 | #define hlist_for_each_entry_continue(pos, member) \ |
| 764 | for (pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member);\ |
| 765 | pos; \ |
| 766 | pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | |
| 768 | /** |
Randy Dunlap | fe96e57 | 2006-06-25 05:47:42 -0700 | [diff] [blame] | 769 | * hlist_for_each_entry_from - iterate over a hlist continuing from current point |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 770 | * @pos: the type * to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 771 | * @member: the name of the hlist_node within the struct. |
| 772 | */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 773 | #define hlist_for_each_entry_from(pos, member) \ |
| 774 | for (; pos; \ |
| 775 | pos = hlist_entry_safe((pos)->member.next, typeof(*(pos)), member)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 776 | |
| 777 | /** |
| 778 | * hlist_for_each_entry_safe - iterate over list of given type safe against removal of list entry |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 779 | * @pos: the type * to use as a loop cursor. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 780 | * @n: another &struct hlist_node to use as temporary storage |
| 781 | * @head: the head for your list. |
| 782 | * @member: the name of the hlist_node within the struct. |
| 783 | */ |
Sasha Levin | b67bfe0 | 2013-02-27 17:06:00 -0800 | [diff] [blame] | 784 | #define hlist_for_each_entry_safe(pos, n, head, member) \ |
| 785 | for (pos = hlist_entry_safe((head)->first, typeof(*pos), member);\ |
| 786 | pos && ({ n = pos->member.next; 1; }); \ |
| 787 | pos = hlist_entry_safe(n, typeof(*pos), member)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 788 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 789 | #endif |