rcuhlist: add head name fix
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 19 Feb 2010 14:08:18 +0000 (09:08 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Fri, 19 Feb 2010 14:08:18 +0000 (09:08 -0500)
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
urcu/rcuhlist.h

index be74145122a964b9d82aa38353b0f5d72f584b09..89f7679d5a82cbb09ed723f23d122baf667c4008 100644 (file)
@@ -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;
This page took 0.024612 seconds and 4 git commands to generate.