rculfhash mm plugins: cleanup alloc
[urcu.git] / rculfhash-mm-mmap.c
index 542c884e9f576c4dae45186b4fa0b4849cbd4eb8..e2c565e67fee5b48654f9eb12b72aa6f41ec8c44 100644 (file)
@@ -140,14 +140,13 @@ struct cds_lfht *alloc_cds_lfht(unsigned long min_nr_alloc_buckets,
        ht = calloc(1, sizeof(struct cds_lfht));
        assert(ht);
 
+       ht->bucket_at = bucket_at;
        ht->mm = &cds_lfht_mm_mmap;
-
        ht->min_nr_alloc_buckets = min_nr_alloc_buckets;
        ht->min_alloc_buckets_order =
                        get_count_order_ulong(min_nr_alloc_buckets);
        ht->max_nr_buckets = max_nr_buckets;
 
-       ht->bucket_at = bucket_at;
 
        return ht;
 }
This page took 0.022892 seconds and 4 git commands to generate.