blob: 1fad79861e14b3df5b56ee0517f8567d443f0f12 [file] [log] [blame]
Franck Bui-Huu82524742008-05-12 21:21:05 +02001#ifndef _LINUX_RCULIST_H
2#define _LINUX_RCULIST_H
3
4#ifdef __KERNEL__
5
6/*
7 * RCU-protected list version
8 */
9#include <linux/list.h>
Franck Bui-Huu10aa9d22008-05-12 21:21:06 +020010#include <linux/rcupdate.h>
Franck Bui-Huu82524742008-05-12 21:21:05 +020011
12/*
Paul E. McKenney65e6bf42010-08-19 21:43:09 -070013 * Why is there no list_empty_rcu()? Because list_empty() serves this
14 * purpose. The list_empty() function fetches the RCU-protected pointer
15 * and compares it to the address of the list head, but neither dereferences
16 * this pointer itself nor provides this pointer to the caller. Therefore,
17 * it is not necessary to use rcu_dereference(), so that list_empty() can
18 * be used anywhere you would want to use a list_empty_rcu().
19 */
20
21/*
Paul E. McKenney2a855b62013-08-23 09:40:42 -070022 * INIT_LIST_HEAD_RCU - Initialize a list_head visible to RCU readers
23 * @list: list to be initialized
24 *
25 * You should instead use INIT_LIST_HEAD() for normal initialization and
26 * cleanup tasks, when readers have no access to the list being initialized.
27 * However, if the list being initialized is visible to readers, you
28 * need to keep the compiler from being too mischievous.
29 */
30static inline void INIT_LIST_HEAD_RCU(struct list_head *list)
31{
Paul E. McKenney7d0ae802015-03-03 14:57:58 -080032 WRITE_ONCE(list->next, list);
33 WRITE_ONCE(list->prev, list);
Paul E. McKenney2a855b62013-08-23 09:40:42 -070034}
35
36/*
Arnd Bergmann67bdbff2010-02-25 16:55:13 +010037 * return the ->next pointer of a list_head in an rcu safe
38 * way, we must not access it directly
39 */
40#define list_next_rcu(list) (*((struct list_head __rcu **)(&(list)->next)))
41
42/*
Franck Bui-Huu82524742008-05-12 21:21:05 +020043 * Insert a new entry between two known consecutive entries.
44 *
45 * This is only for internal list manipulation where we know
46 * the prev/next entries already!
47 */
Dave Jones559f9ba2012-03-14 22:17:39 -040048#ifndef CONFIG_DEBUG_LIST
Franck Bui-Huu82524742008-05-12 21:21:05 +020049static inline void __list_add_rcu(struct list_head *new,
50 struct list_head *prev, struct list_head *next)
51{
52 new->next = next;
53 new->prev = prev;
Arnd Bergmann67bdbff2010-02-25 16:55:13 +010054 rcu_assign_pointer(list_next_rcu(prev), new);
Franck Bui-Huu82524742008-05-12 21:21:05 +020055 next->prev = new;
Franck Bui-Huu82524742008-05-12 21:21:05 +020056}
Dave Jones559f9ba2012-03-14 22:17:39 -040057#else
Teodora Baluta584dc4c2013-11-11 17:11:23 +020058void __list_add_rcu(struct list_head *new,
59 struct list_head *prev, struct list_head *next);
Dave Jones559f9ba2012-03-14 22:17:39 -040060#endif
Franck Bui-Huu82524742008-05-12 21:21:05 +020061
62/**
63 * list_add_rcu - add a new entry to rcu-protected list
64 * @new: new entry to be added
65 * @head: list head to add it after
66 *
67 * Insert a new entry after the specified head.
68 * This is good for implementing stacks.
69 *
70 * The caller must take whatever precautions are necessary
71 * (such as holding appropriate locks) to avoid racing
72 * with another list-mutation primitive, such as list_add_rcu()
73 * or list_del_rcu(), running on this same list.
74 * However, it is perfectly legal to run concurrently with
75 * the _rcu list-traversal primitives, such as
76 * list_for_each_entry_rcu().
77 */
78static inline void list_add_rcu(struct list_head *new, struct list_head *head)
79{
80 __list_add_rcu(new, head, head->next);
81}
82
83/**
84 * list_add_tail_rcu - add a new entry to rcu-protected list
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 *
91 * The caller must take whatever precautions are necessary
92 * (such as holding appropriate locks) to avoid racing
93 * with another list-mutation primitive, such as list_add_tail_rcu()
94 * or list_del_rcu(), running on this same list.
95 * However, it is perfectly legal to run concurrently with
96 * the _rcu list-traversal primitives, such as
97 * list_for_each_entry_rcu().
98 */
99static inline void list_add_tail_rcu(struct list_head *new,
100 struct list_head *head)
101{
102 __list_add_rcu(new, head->prev, head);
103}
104
105/**
106 * list_del_rcu - deletes entry from list without re-initialization
107 * @entry: the element to delete from the list.
108 *
109 * Note: list_empty() on entry does not return true after this,
110 * the entry is in an undefined state. It is useful for RCU based
111 * lockfree traversal.
112 *
113 * In particular, it means that we can not poison the forward
114 * pointers that may still be used for walking the list.
115 *
116 * The caller must take whatever precautions are necessary
117 * (such as holding appropriate locks) to avoid racing
118 * with another list-mutation primitive, such as list_del_rcu()
119 * or list_add_rcu(), running on this same list.
120 * However, it is perfectly legal to run concurrently with
121 * the _rcu list-traversal primitives, such as
122 * list_for_each_entry_rcu().
123 *
124 * Note that the caller is not permitted to immediately free
125 * the newly deleted entry. Instead, either synchronize_rcu()
126 * or call_rcu() must be used to defer freeing until an RCU
127 * grace period has elapsed.
128 */
129static inline void list_del_rcu(struct list_head *entry)
130{
Dave Jones559f9ba2012-03-14 22:17:39 -0400131 __list_del_entry(entry);
Franck Bui-Huu82524742008-05-12 21:21:05 +0200132 entry->prev = LIST_POISON2;
133}
134
135/**
Andrea Arcangeli6beeac72008-07-28 15:46:22 -0700136 * hlist_del_init_rcu - deletes entry from hash list with re-initialization
137 * @n: the element to delete from the hash list.
138 *
139 * Note: list_unhashed() on the node return true after this. It is
140 * useful for RCU based read lockfree traversal if the writer side
141 * must know if the list entry is still hashed or already unhashed.
142 *
143 * In particular, it means that we can not poison the forward pointers
144 * that may still be used for walking the hash list and we can only
145 * zero the pprev pointer so list_unhashed() will return true after
146 * this.
147 *
148 * The caller must take whatever precautions are necessary (such as
149 * holding appropriate locks) to avoid racing with another
150 * list-mutation primitive, such as hlist_add_head_rcu() or
151 * hlist_del_rcu(), running on this same list. However, it is
152 * perfectly legal to run concurrently with the _rcu list-traversal
153 * primitives, such as hlist_for_each_entry_rcu().
154 */
155static inline void hlist_del_init_rcu(struct hlist_node *n)
156{
157 if (!hlist_unhashed(n)) {
158 __hlist_del(n);
159 n->pprev = NULL;
160 }
161}
162
163/**
Franck Bui-Huu82524742008-05-12 21:21:05 +0200164 * list_replace_rcu - replace old entry by new one
165 * @old : the element to be replaced
166 * @new : the new element to insert
167 *
168 * The @old entry will be replaced with the @new entry atomically.
169 * Note: @old should not be empty.
170 */
171static inline void list_replace_rcu(struct list_head *old,
172 struct list_head *new)
173{
174 new->next = old->next;
175 new->prev = old->prev;
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100176 rcu_assign_pointer(list_next_rcu(new->prev), new);
Franck Bui-Huu82524742008-05-12 21:21:05 +0200177 new->next->prev = new;
Franck Bui-Huu82524742008-05-12 21:21:05 +0200178 old->prev = LIST_POISON2;
179}
180
181/**
182 * list_splice_init_rcu - splice an RCU-protected list into an existing list.
183 * @list: the RCU-protected list to splice
184 * @head: the place in the list to splice the first list into
185 * @sync: function to sync: synchronize_rcu(), synchronize_sched(), ...
186 *
187 * @head can be RCU-read traversed concurrently with this function.
188 *
189 * Note that this function blocks.
190 *
191 * Important note: the caller must take whatever action is necessary to
192 * prevent any other updates to @head. In principle, it is possible
193 * to modify the list as soon as sync() begins execution.
194 * If this sort of thing becomes necessary, an alternative version
195 * based on call_rcu() could be created. But only if -really-
196 * needed -- there is no shortage of RCU API members.
197 */
198static inline void list_splice_init_rcu(struct list_head *list,
199 struct list_head *head,
200 void (*sync)(void))
201{
202 struct list_head *first = list->next;
203 struct list_head *last = list->prev;
204 struct list_head *at = head->next;
205
Jan H. Schönherr7f708932011-07-19 21:10:26 +0200206 if (list_empty(list))
Franck Bui-Huu82524742008-05-12 21:21:05 +0200207 return;
208
Paul E. McKenney2a855b62013-08-23 09:40:42 -0700209 /*
210 * "first" and "last" tracking list, so initialize it. RCU readers
211 * have access to this list, so we must use INIT_LIST_HEAD_RCU()
212 * instead of INIT_LIST_HEAD().
213 */
Franck Bui-Huu82524742008-05-12 21:21:05 +0200214
Paul E. McKenney2a855b62013-08-23 09:40:42 -0700215 INIT_LIST_HEAD_RCU(list);
Franck Bui-Huu82524742008-05-12 21:21:05 +0200216
217 /*
218 * At this point, the list body still points to the source list.
219 * Wait for any readers to finish using the list before splicing
220 * the list body into the new list. Any new readers will see
221 * an empty list.
222 */
223
224 sync();
225
226 /*
227 * Readers are finished with the source list, so perform splice.
228 * The order is important if the new list is global and accessible
229 * to concurrent RCU readers. Note that RCU readers are not
230 * permitted to traverse the prev pointers without excluding
231 * this function.
232 */
233
234 last->next = at;
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100235 rcu_assign_pointer(list_next_rcu(head), first);
Franck Bui-Huu82524742008-05-12 21:21:05 +0200236 first->prev = head;
237 at->prev = last;
238}
239
Jiri Pirko72c6a982009-04-14 17:33:57 +0200240/**
241 * list_entry_rcu - get the struct for this entry
242 * @ptr: the &struct list_head pointer.
243 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400244 * @member: the name of the list_head within the struct.
Jiri Pirko72c6a982009-04-14 17:33:57 +0200245 *
246 * This primitive may safely run concurrently with the _rcu list-mutation
247 * primitives such as list_add_rcu() as long as it's guarded by rcu_read_lock().
248 */
249#define list_entry_rcu(ptr, type, member) \
Patrick Marlier8db70b12015-09-11 15:50:35 -0700250 container_of(lockless_dereference(ptr), type, member)
Jiri Pirko72c6a982009-04-14 17:33:57 +0200251
252/**
Michel Machadof88022a2012-04-10 14:07:40 -0400253 * Where are list_empty_rcu() and list_first_entry_rcu()?
254 *
255 * Implementing those functions following their counterparts list_empty() and
256 * list_first_entry() is not advisable because they lead to subtle race
257 * conditions as the following snippet shows:
258 *
259 * if (!list_empty_rcu(mylist)) {
260 * struct foo *bar = list_first_entry_rcu(mylist, struct foo, list_member);
261 * do_something(bar);
262 * }
263 *
264 * The list may not be empty when list_empty_rcu checks it, but it may be when
265 * list_first_entry_rcu rereads the ->next pointer.
266 *
267 * Rereading the ->next pointer is not a problem for list_empty() and
268 * list_first_entry() because they would be protected by a lock that blocks
269 * writers.
270 *
271 * See list_first_or_null_rcu for an alternative.
272 */
273
274/**
275 * list_first_or_null_rcu - get the first element from a list
Jiri Pirko72c6a982009-04-14 17:33:57 +0200276 * @ptr: the list head to take the element from.
277 * @type: the type of the struct this is embedded in.
Andrey Utkin3943f422014-11-14 05:09:55 +0400278 * @member: the name of the list_head within the struct.
Jiri Pirko72c6a982009-04-14 17:33:57 +0200279 *
Michel Machadof88022a2012-04-10 14:07:40 -0400280 * Note that if the list is empty, it returns NULL.
Jiri Pirko72c6a982009-04-14 17:33:57 +0200281 *
282 * This primitive may safely run concurrently with the _rcu list-mutation
283 * primitives such as list_add_rcu() as long as it's guarded by rcu_read_lock().
284 */
Michel Machadof88022a2012-04-10 14:07:40 -0400285#define list_first_or_null_rcu(ptr, type, member) \
Joe Perches0adab9b2013-12-05 16:19:15 -0800286({ \
287 struct list_head *__ptr = (ptr); \
Paul E. McKenney7d0ae802015-03-03 14:57:58 -0800288 struct list_head *__next = READ_ONCE(__ptr->next); \
Joe Perches0adab9b2013-12-05 16:19:15 -0800289 likely(__ptr != __next) ? list_entry_rcu(__next, type, member) : NULL; \
290})
Jiri Pirko72c6a982009-04-14 17:33:57 +0200291
Franck Bui-Huu82524742008-05-12 21:21:05 +0200292/**
293 * list_for_each_entry_rcu - iterate over rcu list of given type
294 * @pos: the type * to use as a loop cursor.
295 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400296 * @member: the name of the list_head within the struct.
Franck Bui-Huu82524742008-05-12 21:21:05 +0200297 *
298 * This list-traversal primitive may safely run concurrently with
299 * the _rcu list-mutation primitives such as list_add_rcu()
300 * as long as the traversal is guarded by rcu_read_lock().
301 */
302#define list_for_each_entry_rcu(pos, head, member) \
Jiri Pirko72c6a982009-04-14 17:33:57 +0200303 for (pos = list_entry_rcu((head)->next, typeof(*pos), member); \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700304 &pos->member != (head); \
Jiri Pirko72c6a982009-04-14 17:33:57 +0200305 pos = list_entry_rcu(pos->member.next, typeof(*pos), member))
Franck Bui-Huu82524742008-05-12 21:21:05 +0200306
Franck Bui-Huu82524742008-05-12 21:21:05 +0200307/**
Alexey Kardashevskiy69b90722015-12-05 18:14:19 -0800308 * list_entry_lockless - get the struct for this entry
309 * @ptr: the &struct list_head pointer.
310 * @type: the type of the struct this is embedded in.
311 * @member: the name of the list_head within the struct.
312 *
313 * This primitive may safely run concurrently with the _rcu list-mutation
314 * primitives such as list_add_rcu(), but requires some implicit RCU
315 * read-side guarding. One example is running within a special
316 * exception-time environment where preemption is disabled and where
317 * lockdep cannot be invoked (in which case updaters must use RCU-sched,
318 * as in synchronize_sched(), call_rcu_sched(), and friends). Another
319 * example is when items are added to the list, but never deleted.
320 */
321#define list_entry_lockless(ptr, type, member) \
322 container_of((typeof(ptr))lockless_dereference(ptr), type, member)
323
324/**
325 * list_for_each_entry_lockless - iterate over rcu list of given type
326 * @pos: the type * to use as a loop cursor.
327 * @head: the head for your list.
328 * @member: the name of the list_struct within the struct.
329 *
330 * This primitive may safely run concurrently with the _rcu list-mutation
331 * primitives such as list_add_rcu(), but requires some implicit RCU
332 * read-side guarding. One example is running within a special
333 * exception-time environment where preemption is disabled and where
334 * lockdep cannot be invoked (in which case updaters must use RCU-sched,
335 * as in synchronize_sched(), call_rcu_sched(), and friends). Another
336 * example is when items are added to the list, but never deleted.
337 */
338#define list_for_each_entry_lockless(pos, head, member) \
339 for (pos = list_entry_lockless((head)->next, typeof(*pos), member); \
340 &pos->member != (head); \
341 pos = list_entry_lockless(pos->member.next, typeof(*pos), member))
342
343/**
stephen hemminger254245d2009-11-10 07:54:47 +0000344 * list_for_each_entry_continue_rcu - continue iteration over list of given type
345 * @pos: the type * to use as a loop cursor.
346 * @head: the head for your list.
Andrey Utkin3943f422014-11-14 05:09:55 +0400347 * @member: the name of the list_head within the struct.
stephen hemminger254245d2009-11-10 07:54:47 +0000348 *
349 * Continue to iterate over list of given type, continuing after
350 * the current position.
351 */
352#define list_for_each_entry_continue_rcu(pos, head, member) \
353 for (pos = list_entry_rcu(pos->member.next, typeof(*pos), member); \
Linus Torvaldse66eed62011-05-19 14:15:29 -0700354 &pos->member != (head); \
stephen hemminger254245d2009-11-10 07:54:47 +0000355 pos = list_entry_rcu(pos->member.next, typeof(*pos), member))
356
357/**
Franck Bui-Huu82524742008-05-12 21:21:05 +0200358 * hlist_del_rcu - deletes entry from hash list without re-initialization
359 * @n: the element to delete from the hash list.
360 *
361 * Note: list_unhashed() on entry does not return true after this,
362 * the entry is in an undefined state. It is useful for RCU based
363 * lockfree traversal.
364 *
365 * In particular, it means that we can not poison the forward
366 * pointers that may still be used for walking the hash list.
367 *
368 * The caller must take whatever precautions are necessary
369 * (such as holding appropriate locks) to avoid racing
370 * with another list-mutation primitive, such as hlist_add_head_rcu()
371 * or hlist_del_rcu(), running on this same list.
372 * However, it is perfectly legal to run concurrently with
373 * the _rcu list-traversal primitives, such as
374 * hlist_for_each_entry().
375 */
376static inline void hlist_del_rcu(struct hlist_node *n)
377{
378 __hlist_del(n);
379 n->pprev = LIST_POISON2;
380}
381
382/**
383 * hlist_replace_rcu - replace old entry by new one
384 * @old : the element to be replaced
385 * @new : the new element to insert
386 *
387 * The @old entry will be replaced with the @new entry atomically.
388 */
389static inline void hlist_replace_rcu(struct hlist_node *old,
390 struct hlist_node *new)
391{
392 struct hlist_node *next = old->next;
393
394 new->next = next;
395 new->pprev = old->pprev;
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100396 rcu_assign_pointer(*(struct hlist_node __rcu **)new->pprev, new);
Franck Bui-Huu82524742008-05-12 21:21:05 +0200397 if (next)
398 new->next->pprev = &new->next;
Franck Bui-Huu82524742008-05-12 21:21:05 +0200399 old->pprev = LIST_POISON2;
400}
401
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100402/*
403 * return the first or the next element in an RCU protected hlist
404 */
405#define hlist_first_rcu(head) (*((struct hlist_node __rcu **)(&(head)->first)))
406#define hlist_next_rcu(node) (*((struct hlist_node __rcu **)(&(node)->next)))
407#define hlist_pprev_rcu(node) (*((struct hlist_node __rcu **)((node)->pprev)))
408
Franck Bui-Huu82524742008-05-12 21:21:05 +0200409/**
410 * hlist_add_head_rcu
411 * @n: the element to add to the hash list.
412 * @h: the list to add to.
413 *
414 * Description:
415 * Adds the specified element to the specified hlist,
416 * while permitting racing traversals.
417 *
418 * The caller must take whatever precautions are necessary
419 * (such as holding appropriate locks) to avoid racing
420 * with another list-mutation primitive, such as hlist_add_head_rcu()
421 * or hlist_del_rcu(), running on this same list.
422 * However, it is perfectly legal to run concurrently with
423 * the _rcu list-traversal primitives, such as
424 * hlist_for_each_entry_rcu(), used to prevent memory-consistency
425 * problems on Alpha CPUs. Regardless of the type of CPU, the
426 * list-traversal primitive must be guarded by rcu_read_lock().
427 */
428static inline void hlist_add_head_rcu(struct hlist_node *n,
429 struct hlist_head *h)
430{
431 struct hlist_node *first = h->first;
Franck Bui-Huu10aa9d22008-05-12 21:21:06 +0200432
Franck Bui-Huu82524742008-05-12 21:21:05 +0200433 n->next = first;
434 n->pprev = &h->first;
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100435 rcu_assign_pointer(hlist_first_rcu(h), n);
Franck Bui-Huu82524742008-05-12 21:21:05 +0200436 if (first)
437 first->pprev = &n->next;
Franck Bui-Huu82524742008-05-12 21:21:05 +0200438}
439
440/**
441 * hlist_add_before_rcu
442 * @n: the new element to add to the hash list.
443 * @next: the existing element to add the new element before.
444 *
445 * Description:
446 * Adds the specified element to the specified hlist
447 * before the specified node while permitting racing traversals.
448 *
449 * The caller must take whatever precautions are necessary
450 * (such as holding appropriate locks) to avoid racing
451 * with another list-mutation primitive, such as hlist_add_head_rcu()
452 * or hlist_del_rcu(), running on this same list.
453 * However, it is perfectly legal to run concurrently with
454 * the _rcu list-traversal primitives, such as
455 * hlist_for_each_entry_rcu(), used to prevent memory-consistency
456 * problems on Alpha CPUs.
457 */
458static inline void hlist_add_before_rcu(struct hlist_node *n,
459 struct hlist_node *next)
460{
461 n->pprev = next->pprev;
462 n->next = next;
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100463 rcu_assign_pointer(hlist_pprev_rcu(n), n);
Franck Bui-Huu82524742008-05-12 21:21:05 +0200464 next->pprev = &n->next;
Franck Bui-Huu82524742008-05-12 21:21:05 +0200465}
466
467/**
Ken Helias1d023282014-08-06 16:09:16 -0700468 * hlist_add_behind_rcu
Franck Bui-Huu82524742008-05-12 21:21:05 +0200469 * @n: the new element to add to the hash list.
Ken Helias1d023282014-08-06 16:09:16 -0700470 * @prev: the existing element to add the new element after.
Franck Bui-Huu82524742008-05-12 21:21:05 +0200471 *
472 * Description:
473 * Adds the specified element to the specified hlist
474 * after the specified node while permitting racing traversals.
475 *
476 * The caller must take whatever precautions are necessary
477 * (such as holding appropriate locks) to avoid racing
478 * with another list-mutation primitive, such as hlist_add_head_rcu()
479 * or hlist_del_rcu(), running on this same list.
480 * However, it is perfectly legal to run concurrently with
481 * the _rcu list-traversal primitives, such as
482 * hlist_for_each_entry_rcu(), used to prevent memory-consistency
483 * problems on Alpha CPUs.
484 */
Ken Helias1d023282014-08-06 16:09:16 -0700485static inline void hlist_add_behind_rcu(struct hlist_node *n,
486 struct hlist_node *prev)
Franck Bui-Huu82524742008-05-12 21:21:05 +0200487{
488 n->next = prev->next;
489 n->pprev = &prev->next;
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100490 rcu_assign_pointer(hlist_next_rcu(prev), n);
Franck Bui-Huu82524742008-05-12 21:21:05 +0200491 if (n->next)
492 n->next->pprev = &n->next;
493}
494
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100495#define __hlist_for_each_rcu(pos, head) \
496 for (pos = rcu_dereference(hlist_first_rcu(head)); \
Linus Torvalds75d65a42011-05-19 13:50:07 -0700497 pos; \
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100498 pos = rcu_dereference(hlist_next_rcu(pos)))
stephen hemminger1cc52322010-02-22 07:57:17 +0000499
Franck Bui-Huu82524742008-05-12 21:21:05 +0200500/**
501 * hlist_for_each_entry_rcu - iterate over rcu list of given type
Sasha Levinb67bfe02013-02-27 17:06:00 -0800502 * @pos: the type * to use as a loop cursor.
Franck Bui-Huu82524742008-05-12 21:21:05 +0200503 * @head: the head for your list.
504 * @member: the name of the hlist_node within the struct.
505 *
506 * This list-traversal primitive may safely run concurrently with
507 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
508 * as long as the traversal is guarded by rcu_read_lock().
509 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800510#define hlist_for_each_entry_rcu(pos, head, member) \
511 for (pos = hlist_entry_safe (rcu_dereference_raw(hlist_first_rcu(head)),\
512 typeof(*(pos)), member); \
513 pos; \
514 pos = hlist_entry_safe(rcu_dereference_raw(hlist_next_rcu(\
515 &(pos)->member)), typeof(*(pos)), member))
Franck Bui-Huu82524742008-05-12 21:21:05 +0200516
stephen hemminger5c578aed2010-03-17 20:31:11 +0000517/**
Steven Rostedt12bcbe62013-05-28 14:38:42 -0400518 * hlist_for_each_entry_rcu_notrace - iterate over rcu list of given type (for tracing)
519 * @pos: the type * to use as a loop cursor.
520 * @head: the head for your list.
521 * @member: the name of the hlist_node within the struct.
522 *
523 * This list-traversal primitive may safely run concurrently with
524 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
525 * as long as the traversal is guarded by rcu_read_lock().
526 *
527 * This is the same as hlist_for_each_entry_rcu() except that it does
528 * not do any RCU debugging or tracing.
529 */
530#define hlist_for_each_entry_rcu_notrace(pos, head, member) \
531 for (pos = hlist_entry_safe (rcu_dereference_raw_notrace(hlist_first_rcu(head)),\
532 typeof(*(pos)), member); \
533 pos; \
534 pos = hlist_entry_safe(rcu_dereference_raw_notrace(hlist_next_rcu(\
535 &(pos)->member)), typeof(*(pos)), member))
536
537/**
Eric Dumazet4f70ecc2010-05-03 10:50:14 +0000538 * hlist_for_each_entry_rcu_bh - iterate over rcu list of given type
Sasha Levinb67bfe02013-02-27 17:06:00 -0800539 * @pos: the type * to use as a loop cursor.
Eric Dumazet4f70ecc2010-05-03 10:50:14 +0000540 * @head: the head for your list.
541 * @member: the name of the hlist_node within the struct.
542 *
543 * This list-traversal primitive may safely run concurrently with
544 * the _rcu list-mutation primitives such as hlist_add_head_rcu()
545 * as long as the traversal is guarded by rcu_read_lock().
546 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800547#define hlist_for_each_entry_rcu_bh(pos, head, member) \
548 for (pos = hlist_entry_safe(rcu_dereference_bh(hlist_first_rcu(head)),\
549 typeof(*(pos)), member); \
550 pos; \
551 pos = hlist_entry_safe(rcu_dereference_bh(hlist_next_rcu(\
552 &(pos)->member)), typeof(*(pos)), member))
Eric Dumazet4f70ecc2010-05-03 10:50:14 +0000553
554/**
stephen hemminger5c578aed2010-03-17 20:31:11 +0000555 * hlist_for_each_entry_continue_rcu - iterate over a hlist continuing after current point
Sasha Levinb67bfe02013-02-27 17:06:00 -0800556 * @pos: the type * to use as a loop cursor.
stephen hemminger5c578aed2010-03-17 20:31:11 +0000557 * @member: the name of the hlist_node within the struct.
558 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800559#define hlist_for_each_entry_continue_rcu(pos, member) \
Ying Xuef520c982014-12-12 09:36:14 +0800560 for (pos = hlist_entry_safe(rcu_dereference_raw(hlist_next_rcu( \
561 &(pos)->member)), typeof(*(pos)), member); \
Sasha Levinb67bfe02013-02-27 17:06:00 -0800562 pos; \
Ying Xuef520c982014-12-12 09:36:14 +0800563 pos = hlist_entry_safe(rcu_dereference_raw(hlist_next_rcu( \
564 &(pos)->member)), typeof(*(pos)), member))
stephen hemminger5c578aed2010-03-17 20:31:11 +0000565
Eric Dumazet4f70ecc2010-05-03 10:50:14 +0000566/**
567 * hlist_for_each_entry_continue_rcu_bh - iterate over a hlist continuing after current point
Sasha Levinb67bfe02013-02-27 17:06:00 -0800568 * @pos: the type * to use as a loop cursor.
Eric Dumazet4f70ecc2010-05-03 10:50:14 +0000569 * @member: the name of the hlist_node within the struct.
570 */
Sasha Levinb67bfe02013-02-27 17:06:00 -0800571#define hlist_for_each_entry_continue_rcu_bh(pos, member) \
Ying Xuef520c982014-12-12 09:36:14 +0800572 for (pos = hlist_entry_safe(rcu_dereference_bh(hlist_next_rcu( \
573 &(pos)->member)), typeof(*(pos)), member); \
Sasha Levinb67bfe02013-02-27 17:06:00 -0800574 pos; \
Ying Xuef520c982014-12-12 09:36:14 +0800575 pos = hlist_entry_safe(rcu_dereference_bh(hlist_next_rcu( \
576 &(pos)->member)), typeof(*(pos)), member))
Eric Dumazet4f70ecc2010-05-03 10:50:14 +0000577
Ying Xue97ede292014-12-02 15:00:30 +0800578/**
579 * hlist_for_each_entry_from_rcu - iterate over a hlist continuing from current point
580 * @pos: the type * to use as a loop cursor.
581 * @member: the name of the hlist_node within the struct.
582 */
583#define hlist_for_each_entry_from_rcu(pos, member) \
584 for (; pos; \
Ying Xuef5177002015-03-26 13:27:08 +0800585 pos = hlist_entry_safe(rcu_dereference_raw(hlist_next_rcu( \
586 &(pos)->member)), typeof(*(pos)), member))
stephen hemminger5c578aed2010-03-17 20:31:11 +0000587
Franck Bui-Huu82524742008-05-12 21:21:05 +0200588#endif /* __KERNEL__ */
589#endif