Rename cache_alloc_easy to cache_bin_alloc_easy.

This lives in the cache_bin module; just a typo.
This commit is contained in:
David T. Goldblatt 2017-10-01 18:54:25 -07:00 committed by David Goldblatt
parent 8aafa270fd
commit 901d94a2b0
3 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ cache_bin_array_descriptor_init(cache_bin_array_descriptor_t *descriptor,
} }
JEMALLOC_ALWAYS_INLINE void * JEMALLOC_ALWAYS_INLINE void *
cache_alloc_easy(cache_bin_t *bin, bool *success) { cache_bin_alloc_easy(cache_bin_t *bin, bool *success) {
void *ret; void *ret;
if (unlikely(bin->ncached == 0)) { if (unlikely(bin->ncached == 0)) {

View File

@ -48,7 +48,7 @@ tcache_alloc_small(tsd_t *tsd, arena_t *arena, tcache_t *tcache, size_t size,
assert(binind < NBINS); assert(binind < NBINS);
bin = tcache_small_bin_get(tcache, binind); bin = tcache_small_bin_get(tcache, binind);
ret = cache_alloc_easy(bin, &tcache_success); ret = cache_bin_alloc_easy(bin, &tcache_success);
assert(tcache_success == (ret != NULL)); assert(tcache_success == (ret != NULL));
if (unlikely(!tcache_success)) { if (unlikely(!tcache_success)) {
bool tcache_hard_success; bool tcache_hard_success;
@ -109,7 +109,7 @@ tcache_alloc_large(tsd_t *tsd, arena_t *arena, tcache_t *tcache, size_t size,
assert(binind >= NBINS &&binind < nhbins); assert(binind >= NBINS &&binind < nhbins);
bin = tcache_large_bin_get(tcache, binind); bin = tcache_large_bin_get(tcache, binind);
ret = cache_alloc_easy(bin, &tcache_success); ret = cache_bin_alloc_easy(bin, &tcache_success);
assert(tcache_success == (ret != NULL)); assert(tcache_success == (ret != NULL));
if (unlikely(!tcache_success)) { if (unlikely(!tcache_success)) {
/* /*

View File

@ -95,7 +95,7 @@ tcache_alloc_small_hard(tsdn_t *tsdn, arena_t *arena, tcache_t *tcache,
if (config_prof) { if (config_prof) {
tcache->prof_accumbytes = 0; tcache->prof_accumbytes = 0;
} }
ret = cache_alloc_easy(tbin, tcache_success); ret = cache_bin_alloc_easy(tbin, tcache_success);
return ret; return ret;
} }