add extent_nfree_sub

This commit is contained in:
Dave Watson
2018-10-29 15:09:21 -07:00
parent 4b82872ebf
commit 17aa470760
2 changed files with 7 additions and 1 deletions

View File

@@ -283,10 +283,10 @@ arena_slab_reg_alloc_batch(extent_t *slab, const bin_info_t *bin_info,
regind = bitmap_sfu(slab_data->bitmap, &bin_info->bitmap_info);
ret = (void *)((uintptr_t)extent_addr_get(slab) +
(uintptr_t)(bin_info->reg_size * regind));
extent_nfree_dec(slab);
*(ptrs + i) = ret;
}
extent_nfree_sub(slab, cnt);
}
#ifndef JEMALLOC_JET