diff --git a/[refs] b/[refs] index 431f5588a276..8bd1f26b3649 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 8a9c1cee26c0ece23b38c45b92b724438878f842 +refs/heads/master: 3c2dcf2aed5ea22ecf65a9a871c4963faec421b3 diff --git a/trunk/include/linux/rculist.h b/trunk/include/linux/rculist.h index 70d3ba504d17..2dea94fc4402 100644 --- a/trunk/include/linux/rculist.h +++ b/trunk/include/linux/rculist.h @@ -241,11 +241,6 @@ static inline void list_splice_init_rcu(struct list_head *list, #define list_first_entry_rcu(ptr, type, member) \ list_entry_rcu((ptr)->next, type, member) -#define __list_for_each_rcu(pos, head) \ - for (pos = rcu_dereference_raw(list_next_rcu(head)); \ - pos != (head); \ - pos = rcu_dereference_raw(list_next_rcu(pos))) - /** * list_for_each_entry_rcu - iterate over rcu list of given type * @pos: the type * to use as a loop cursor.