Move delay_coalesce from the eset to the ecache.

This commit is contained in:
David Goldblatt
2019-12-12 16:33:19 -08:00
committed by David Goldblatt
parent bb70df8e5b
commit 98eb40e563
5 changed files with 22 additions and 22 deletions

View File

@@ -8,7 +8,8 @@ ecache_init(tsdn_t *tsdn, ecache_t *ecache, extent_state_t state,
malloc_mutex_rank_exclusive)) {
return true;
}
eset_init(&ecache->eset, state, delay_coalesce);
ecache->delay_coalesce = delay_coalesce;
eset_init(&ecache->eset, state);
return false;
}