Rename all memory primitives with prefix cmm_
[urcu.git] / urcu / rcuhlist.h
index 89f7679d5a82cbb09ed723f23d122baf667c4008..cce80aaf473890bcb42d8f8a82bd0dc1f0203f2b 100644 (file)
@@ -35,7 +35,7 @@ static inline void hlist_add_head_rcu(struct hlist_node *newp,
 {
        newp->next = head->next;
        newp->prev = (struct hlist_node *)head;
-       smp_wmb();
+       cmm_smp_wmb();
        if (head->next)
                head->next->prev = newp;
        head->next = newp;
This page took 0.023228 seconds and 4 git commands to generate.