diff options
author | Paul E. McKenney <paulmck@linux.vnet.ibm.com> | 2008-08-01 14:11:05 -0700 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-08-15 17:03:06 +0200 |
commit | 34d7c2b38d124219b7034356716e3455c439acd3 (patch) | |
tree | 7e3a91439a288ae15c3baac5ad17710931d08324 /include/linux/rculist.h | |
parent | ff9cf2ce7afe76435d66c898cc9dacaa68e79d41 (diff) | |
download | op-kernel-dev-34d7c2b38d124219b7034356716e3455c439acd3.zip op-kernel-dev-34d7c2b38d124219b7034356716e3455c439acd3.tar.gz |
rcu: remove list_for_each_rcu()
All of the in-tree uses of list_for_each_rcu() have been converted to
list_for_each_entry_rcu(), so list_for_each_rcu() can now be removed.
Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/rculist.h')
-rw-r--r-- | include/linux/rculist.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/include/linux/rculist.h b/include/linux/rculist.h index eb4443c..e649bd3 100644 --- a/include/linux/rculist.h +++ b/include/linux/rculist.h @@ -198,20 +198,6 @@ static inline void list_splice_init_rcu(struct list_head *list, at->prev = last; } -/** - * list_for_each_rcu - iterate over an rcu-protected list - * @pos: the &struct list_head to use as a loop cursor. - * @head: the head for your list. - * - * This list-traversal primitive may safely run concurrently with - * the _rcu list-mutation primitives such as list_add_rcu() - * as long as the traversal is guarded by rcu_read_lock(). - */ -#define list_for_each_rcu(pos, head) \ - for (pos = rcu_dereference((head)->next); \ - prefetch(pos->next), pos != (head); \ - pos = rcu_dereference(pos->next)) - #define __list_for_each_rcu(pos, head) \ for (pos = rcu_dereference((head)->next); \ pos != (head); \ |