rcu rbtree: add redirections for prev/next walk
authorMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 9 Mar 2010 14:23:25 +0000 (09:23 -0500)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Tue, 9 Mar 2010 14:23:25 +0000 (09:23 -0500)
We need to atomically make the parent/child relationship visible atomically to
the rest of the world. Add redirections in the old nodes to the new nodes which
atomically override the old nodes from the prev/next walk point of view.

Note that it does not affect search, because these do not need to consider the
parents.

Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
urcu-rbtree.c
urcu-rbtree.h

index 7292b97f266b87906cedf42d7dd5953152e42eeb..e1df343e9cd058f2ee9cc2a8b869918c009ee585 100644 (file)
@@ -32,6 +32,7 @@
 
 #include <stdio.h>
 #include <pthread.h>
+#include <assert.h>
 
 #include <urcu-rbtree.h>
 #include <urcu-pointer.h>
@@ -97,16 +98,20 @@ struct rcu_rbtree_node *rcu_rbtree_max(struct rcu_rbtree_node *x,
 struct rcu_rbtree_node *rcu_rbtree_next(struct rcu_rbtree_node *x,
                                        rcu_rbtree_comp comp)
 {
-       struct rcu_rbtree_node *xr, *y;
+       struct rcu_rbtree_node *xr, *y, *yredir;
 
        x = rcu_dereference(x);
 
        if ((xr = rcu_dereference(x->right)) != &rcu_rbtree_nil)
                return rcu_rbtree_min(xr, comp);
        y = rcu_dereference(x->p);
+       while ((yredir = rcu_dereference(y->redir)) != NULL)
+               y = yredir;
        while (y != &rcu_rbtree_nil && x == rcu_dereference(y->right)) {
                x = y;
                y = rcu_dereference(y->p);
+               while ((yredir = rcu_dereference(y->redir)) != NULL)
+                       y = yredir;
        }
        return y;
 }
@@ -114,16 +119,20 @@ struct rcu_rbtree_node *rcu_rbtree_next(struct rcu_rbtree_node *x,
 struct rcu_rbtree_node *rcu_rbtree_prev(struct rcu_rbtree_node *x,
                                        rcu_rbtree_comp comp)
 {
-       struct rcu_rbtree_node *xl, *y;
+       struct rcu_rbtree_node *xl, *y, *yredir;
 
        x = rcu_dereference(x);
 
        if ((xl = rcu_dereference(x->left)) != &rcu_rbtree_nil)
                return rcu_rbtree_max(xl, comp);
        y = rcu_dereference(x->p);
+       while ((yredir = rcu_dereference(y->redir)) != NULL)
+               y = yredir;
        while (y != &rcu_rbtree_nil && x == rcu_dereference(y->left)) {
                x = y;
                y = rcu_dereference(y->p);
+               while ((yredir = rcu_dereference(y->redir)) != NULL)
+                       y = yredir;
        }
        return y;
 }
@@ -186,6 +195,18 @@ static struct rcu_rbtree_node *left_rotate(struct rcu_rbtree_node **root,
         */
        smp_wmb();
 
+       /*
+        * redirect old nodes to new.
+        */
+       x->redir = xc;
+       y->redir = yc;
+
+       /*
+        * Ensure that redirections are visible before updating external
+        * pointers.
+        */
+       smp_wmb();
+
        /* Make parents point to the copies */
        if (x->p == &rcu_rbtree_nil)
                _STORE_SHARED(*root, yc);
@@ -272,6 +293,18 @@ static struct rcu_rbtree_node *right_rotate(struct rcu_rbtree_node **root,
         */
        smp_wmb();
 
+       /*
+        * redirect old nodes to new.
+        */
+       x->redir = xc;
+       y->redir = yc;
+
+       /*
+        * Ensure that redirections are visible before updating external
+        * pointers.
+        */
+       smp_wmb();
+
        /* Make parents point to the copies */
        if (x->p == &rcu_rbtree_nil)
                _STORE_SHARED(*root, yc);
@@ -392,6 +425,7 @@ int rcu_rbtree_insert(struct rcu_rbtree_node **root,
        z->left = &rcu_rbtree_nil;
        z->right = &rcu_rbtree_nil;
        z->color = COLOR_RED;
+       z->redir = NULL;
 
        /*
         * Order stores to z (children/parents) before stores that will make it
@@ -439,6 +473,17 @@ rcu_rbtree_transplant(struct rcu_rbtree_node **root,
                 * that will make the copies visible to the rest of the tree.
                 */
                smp_wmb();
+
+               /*
+                * redirect old node to new.
+                */
+               v->redir = vc;
+
+               /*
+                * Ensure that redirections are visible before updating external
+                * pointers.
+                */
+               smp_wmb();
        } else {
                vc = &rcu_rbtree_nil;
        }
@@ -471,13 +516,14 @@ static void rcu_rbtree_remove_fixup(struct rcu_rbtree_node **root,
 {
        while (x != *root && x->color == COLOR_BLACK) {
                if (x == x->p->left) {
-                       struct rcu_rbtree_node *w;
+                       struct rcu_rbtree_node *w, *t;
 
                        w = x->p->right;
                        if (w->color == COLOR_RED) {
                                w->color == COLOR_BLACK;
                                x->p->color = COLOR_RED;
-                               left_rotate(root, x->p, rballoc, rbfree);
+                               t = left_rotate(root, x->p, rballoc, rbfree);
+                               assert(x->p->left == t->left);
                                /* x is a left node, not copied by rotation */
                                w = x->p->right;
                        }
@@ -574,6 +620,19 @@ rcu_rbtree_remove_nonil(struct rcu_rbtree_node **root,
         */
        smp_wmb();
 
+       /*
+        * redirect old nodes to new.
+        */
+       if (x != &rcu_rbtree_nil)
+               x->redir = xc;
+       y->redir = yc;
+
+       /*
+        * Ensure that redirections are visible before updating external
+        * pointers.
+        */
+       smp_wmb();
+
        /* Update external pointers */
 
        if (y->p != z) {
index 954d493268a7d36b700311fcaf91abdc7a01d564..34779921d9ba064f6a4766332994d7053759a28e 100644 (file)
@@ -56,7 +56,7 @@ struct rcu_rbtree_node {
        void *key;
 
        /* internally reserved */
-       struct rcu_rbtree_node *p, *left, *right;
+       struct rcu_rbtree_node *p, *left, *right, *redir;
        unsigned int color:1;
 };
 
@@ -101,7 +101,7 @@ int rcu_rbtree_remove(struct rcu_rbtree_node **root,
 /* RCU read-side */
 
 /*
- * Search key starting from node x. Returns NULL if not found.
+ * Search key starting from node x. Returns &rcu_rbtree_nil if not found.
  */
 struct rcu_rbtree_node* rcu_rbtree_search(struct rcu_rbtree_node *x,
                                          void *key, rcu_rbtree_comp comp);
This page took 0.027791 seconds and 4 git commands to generate.