From a45fb1ffc0af634583bc8b3739e3416600d8928e Mon Sep 17 00:00:00 2001 From: Mathieu Desnoyers Date: Fri, 19 Feb 2010 09:08:18 -0500 Subject: [PATCH] rcuhlist: add head name fix Signed-off-by: Mathieu Desnoyers --- urcu/rcuhlist.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/urcu/rcuhlist.h b/urcu/rcuhlist.h index be74145..89f7679 100644 --- a/urcu/rcuhlist.h +++ b/urcu/rcuhlist.h @@ -30,8 +30,8 @@ /* Add new element at the head of the list. */ -static inline void hlist_add_head(struct hlist_node *newp, - struct hlist_head *head) +static inline void hlist_add_head_rcu(struct hlist_node *newp, + struct hlist_head *head) { newp->next = head->next; newp->prev = (struct hlist_node *)head; -- 2.34.1