rcuja: Add missing header
[userspace-rcu.git] / urcu / rcuhlist.h
index 8549550e7fab3358fd031b30ed87ff67244f1472..1dcbdb4eecbc35207ba85c8c47af7a49d82f1f9f 100644 (file)
@@ -50,8 +50,32 @@ static inline void cds_hlist_del_rcu(struct cds_hlist_node *elem)
        elem->prev->next = elem->next;
 }
 
+/*
+ * Get first element from a RCU hlist. Assumes the hlist is not empty.
+ * This must be done while rcu_read_lock() is held.
+ */
+#define cds_hlist_first_rcu(ptr, type)                                 \
+       rcu_dereference((ptr)->next)
+
+/*
+ * Get first entry from a RCU hlist. Assumes the hlist is not empty.
+ * This must be done while rcu_read_lock() is held.
+ */
+#define cds_hlist_first_entry_rcu(ptr, type, member)                   \
+       cds_hlist_entry(rcu_dereference((ptr)->next), type, member)
 
-/* Iterate through elements of the list.
+/*
+ * Iterate through nodes of the list.
+ * This must be done while rcu_read_lock() is held.
+ */
+
+#define cds_hlist_for_each_rcu(pos, head)                              \
+       for (pos = rcu_dereference((head)->next);                       \
+            pos != NULL;                                               \
+            pos = rcu_dereference((pos)->next))
+
+/*
+ * Iterate through elements of the list.
  * This must be done while rcu_read_lock() is held.
  */
 
This page took 0.023042 seconds and 4 git commands to generate.