Searched refs:pv_entry_max (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/sys/i386/i386/ |
| H A D | pmap_base.c | 147 int pv_entry_max = 0; variable 148 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD, 149 &pv_entry_max, 0,
|
| H A D | pmap.c | 261 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_entry_max", &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()
|
| /freebsd-14.2/sys/powerpc/booke/ |
| H A D | pmap.c | 257 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable 1071 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count; in mmu_booke_init() 1073 TUNABLE_INT_FETCH("vm.pmap.pv_entry_max", &pv_entry_max); in mmu_booke_init() 1074 pv_entry_high_water = 9 * (pv_entry_max / 10); in mmu_booke_init() 1076 uma_zone_reserve_kva(pvzone, pv_entry_max); in mmu_booke_init()
|
| /freebsd-14.2/sys/arm/arm/ |
| H A D | pmap-v6.c | 277 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable 1551 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD, &pv_entry_max, 0, 1753 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count; in pmap_init() 1754 TUNABLE_INT_FETCH("vm.pmap.pv_entry_max", &pv_entry_max); in pmap_init() 1755 pv_entry_max = roundup(pv_entry_max, _NPCPV); in pmap_init() 1756 pv_entry_high_water = 9 * (pv_entry_max / 10); in pmap_init() 1786 pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc); in pmap_init()
|