Searched refs:pv_entry_max (Results 1 – 4 of 4) sorted by relevance
| /freebsd-11-stable/sys/i386/i386/ |
| HD | pmap.c | 246 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable 823 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count; in pmap_init() 824 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max); in pmap_init() 825 pv_entry_max = roundup(pv_entry_max, _NPCPV); in pmap_init() 826 pv_entry_high_water = 9 * (pv_entry_max / 10); in pmap_init() 872 pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc); in pmap_init() 897 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD, &pv_entry_max, 0,
|
| /freebsd-11-stable/sys/arm/arm/ |
| HD | pmap-v6.c | 280 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable 1539 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD, &pv_entry_max, 0, 1733 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count; in pmap_init() 1734 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max); in pmap_init() 1735 pv_entry_max = roundup(pv_entry_max, _NPCPV); in pmap_init() 1736 pv_entry_high_water = 9 * (pv_entry_max / 10); in pmap_init() 1767 pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc); in pmap_init()
|
| HD | pmap-v4.c | 405 static int pv_entry_count=0, pv_entry_max=0, pv_entry_high_water=0; variable 1755 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count; in pmap_init() 1756 uma_zone_reserve_kva(pvzone, pv_entry_max); in pmap_init() 1757 pv_entry_high_water = 9 * (pv_entry_max / 10); in pmap_init()
|
| /freebsd-11-stable/sys/powerpc/booke/ |
| HD | pmap.c | 215 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable 1475 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count; in mmu_booke_init() 1477 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max); in mmu_booke_init() 1478 pv_entry_high_water = 9 * (pv_entry_max / 10); in mmu_booke_init() 1480 uma_zone_reserve_kva(pvzone, pv_entry_max); in mmu_booke_init()
|