Searched refs:pv_entry_max (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/sys/i386/i386/
H A Dpmap.c246 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;
824 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max);
825 pv_entry_max = roundup(pv_entry_max, _NPCPV);
826 pv_entry_high_water = 9 * (pv_entry_max / 10);
872 pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc);
897 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD, &pv_entry_max, 0,
/freebsd-11-stable/sys/arm/arm/
H A Dpmap-v6.c280 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;
1734 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max);
1735 pv_entry_max = roundup(pv_entry_max, _NPCPV);
1736 pv_entry_high_water = 9 * (pv_entry_max / 10);
1767 pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc);
H A Dpmap-v4.c405 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;
1756 uma_zone_reserve_kva(pvzone, pv_entry_max);
1757 pv_entry_high_water = 9 * (pv_entry_max / 10);
/freebsd-11-stable/sys/powerpc/booke/
H A Dpmap.c215 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;
1477 TUNABLE_INT_FETCH("vm.pmap.pv_entries", &pv_entry_max);
1478 pv_entry_high_water = 9 * (pv_entry_max / 10);
1480 uma_zone_reserve_kva(pvzone, pv_entry_max);

Completed in 168 milliseconds