Home
last modified time | relevance | path

Searched refs:pv_entry_max (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/i386/i386/
H A Dpmap_base.c149 int pv_entry_max = 0; variable
150 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD,
151 &pv_entry_max, 0,
H A Dpmap.c263 extern int pv_entry_max, pv_entry_count;
1009 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count; in __CONCAT()
1010 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max); in __CONCAT()
1011 pv_entry_max = roundup(pv_entry_max, _NPCPV); in __CONCAT()
1012 pv_entry_high_water = 9 * (pv_entry_max / 10); in __CONCAT()
1057 pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc); in __CONCAT()
/f-stack/freebsd/arm/arm/
H A Dpmap-v6.c279 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable
1553 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD, &pv_entry_max, 0,
1754 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count; in pmap_init()
1755 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max); in pmap_init()
1756 pv_entry_max = roundup(pv_entry_max, _NPCPV); in pmap_init()
1757 pv_entry_high_water = 9 * (pv_entry_max / 10); in pmap_init()
1787 pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc); in pmap_init()