From 5ea0dece0810e5845c40f9109eb54ec1028dde05 Mon Sep 17 00:00:00 2001 From: "Paul E. McKenney" Date: Wed, 15 Dec 2010 21:12:15 -0800 Subject: [PATCH] --- yaml --- r: 223811 b: refs/heads/master c: 3c2dcf2aed5ea22ecf65a9a871c4963faec421b3 h: refs/heads/master i: 223809: 6000161439270a44e62bde923bbd3bbdad39e4dd 223807: 90282ad0036835e026d878b6322d8520c8ce7004 v: v3 --- [refs] | 2 +- trunk/include/linux/rculist.h | 5 ----- 2 files changed, 1 insertion(+), 6 deletions(-) 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.