diff --git a/[refs] b/[refs] index 4134c91c8c5f..431f5588a276 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: b52573d2796274f7f31cfeff7185c320adcd4f12 +refs/heads/master: 8a9c1cee26c0ece23b38c45b92b724438878f842 diff --git a/trunk/include/linux/rculist.h b/trunk/include/linux/rculist.h index f31ef61f1c65..70d3ba504d17 100644 --- a/trunk/include/linux/rculist.h +++ b/trunk/include/linux/rculist.h @@ -244,7 +244,7 @@ static inline void list_splice_init_rcu(struct list_head *list, #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))) + pos = rcu_dereference_raw(list_next_rcu(pos))) /** * list_for_each_entry_rcu - iterate over rcu list of given type