Rename the parameter name of _cds_lfht_replace()
authorLai Jiangshan <laijs@cn.fujitsu.com>
Mon, 17 Oct 2011 14:40:06 +0000 (10:40 -0400)
committerMathieu Desnoyers <mathieu.desnoyers@efficios.com>
Mon, 17 Oct 2011 14:40:06 +0000 (10:40 -0400)
Although _cds_lfht_replace() is not a plublic API,
but a proper name will help for reading or maintainance.

Signed-off-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
rculfhash.c

index a736b868ae7dac21c1d4d60d561cfcfbb1d223e9..be995dfeaf5ef70795a6fd74a7bc34f4ced558c6 100644 (file)
@@ -787,10 +787,10 @@ void _cds_lfht_gc_bucket(struct cds_lfht_node *dummy, struct cds_lfht_node *node
 static
 int _cds_lfht_replace(struct cds_lfht *ht, unsigned long size,
                struct cds_lfht_node *old_node,
-               struct cds_lfht_node *ret_next,
+               struct cds_lfht_node *old_next,
                struct cds_lfht_node *new_node)
 {
-       struct cds_lfht_node *dummy, *old_next;
+       struct cds_lfht_node *dummy, *ret_next;
        struct _cds_lfht_node *lookup;
        int flagged = 0;
 
@@ -802,9 +802,8 @@ int _cds_lfht_replace(struct cds_lfht *ht, unsigned long size,
        assert(!is_removed(new_node));
        assert(!is_dummy(new_node));
        assert(new_node != old_node);
-       do {
+       for (;;) {
                /* Insert after node to be replaced */
-               old_next = ret_next;
                if (is_removed(old_next)) {
                        /*
                         * Too late, the old node has been removed under us
@@ -827,7 +826,10 @@ int _cds_lfht_replace(struct cds_lfht *ht, unsigned long size,
                 */
                ret_next = uatomic_cmpxchg(&old_node->p.next,
                              old_next, flag_removed(new_node));
-       } while (ret_next != old_next);
+               if (ret_next == old_next)
+                       break;
+               old_next = ret_next;
+       }
 
        /* We performed the replacement. */
        flagged = 1;
This page took 0.026306 seconds and 4 git commands to generate.