X-Git-Url: https://git.liburcu.org/?p=urcu.git;a=blobdiff_plain;f=rculfhash-mm-chunk.c;fp=rculfhash-mm-chunk.c;h=38dde3a2b8759f6b2e672963eafc1f88eb84592d;hp=046977651b02b17e53177457c6a0baef187c8656;hb=e4ea7f62f5f009af7818cb05bd239bf67bae78ce;hpb=61adb3377baa87703f7d1b50ec5b576258f74ba8 diff --git a/rculfhash-mm-chunk.c b/rculfhash-mm-chunk.c index 0469776..38dde3a 100644 --- a/rculfhash-mm-chunk.c +++ b/rculfhash-mm-chunk.c @@ -79,8 +79,7 @@ struct cds_lfht *alloc_cds_lfht(unsigned long min_nr_alloc_buckets, unsigned long nr_chunks, cds_lfht_size; min_nr_alloc_buckets = max(min_nr_alloc_buckets, - max_nr_buckets / MAX_CHUNK_TABLE); - + max_nr_buckets / MAX_CHUNK_TABLE); nr_chunks = max_nr_buckets / min_nr_alloc_buckets; cds_lfht_size = offsetof(struct cds_lfht, tbl_chunk) + sizeof(ht->tbl_chunk[0]) * nr_chunks; @@ -88,14 +87,13 @@ struct cds_lfht *alloc_cds_lfht(unsigned long min_nr_alloc_buckets, ht = calloc(1, cds_lfht_size); assert(ht); + ht->bucket_at = bucket_at; ht->mm = &cds_lfht_mm_chunk; - 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; }