HPA: Some minor reformattings.

This commit is contained in:
David Goldblatt
2020-12-03 18:02:23 -08:00
committed by David Goldblatt
parent b25ee5d88e
commit 94cd9444c5
2 changed files with 12 additions and 9 deletions

View File

@@ -135,16 +135,20 @@ hpa_alloc_ps(tsdn_t *tsdn, hpa_shard_t *shard) {
}
static bool
hpa_should_hugify(hpa_shard_t *shard, hpdata_t *ps) {
hpa_good_hugification_candidate(hpa_shard_t *shard, hpdata_t *ps) {
/*
* For now, just use a static check; hugify a page if it's <= 5%
* inactive. Eventually, this should be a malloc conf option.
*/
if (hpdata_changing_state_get(ps)) {
return hpdata_nactive_get(ps) >= (HUGEPAGE_PAGES) * 95 / 100;
}
static bool
hpa_should_hugify(hpa_shard_t *shard, hpdata_t *ps) {
if (hpdata_changing_state_get(ps) || hpdata_huge_get(ps)) {
return false;
}
return !hpdata_huge_get(ps)
&& hpdata_nactive_get(ps) >= (HUGEPAGE_PAGES) * 95 / 100;
return hpa_good_hugification_candidate(shard, ps);
}
/*