X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=rculfhash-mm-order.c;fp=rculfhash-mm-order.c;h=9c0c70e421244cb47c07a4d2a545b0e1f8478718;hp=69e2b622a6eeb4020b06980818e8951120a92af7;hb=e4ea7f62f5f009af7818cb05bd239bf67bae78ce;hpb=61adb3377baa87703f7d1b50ec5b576258f74ba8 diff --git a/rculfhash-mm-order.c b/rculfhash-mm-order.c index 69e2b62..9c0c70e 100644 --- a/rculfhash-mm-order.c +++ b/rculfhash-mm-order.c @@ -82,14 +82,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_order; - ht->min_nr_alloc_buckets = min_nr_alloc_buckets; - ht->min_alloc_buckets_order = get_count_order_ulong(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; }