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

/freebsd-current/sys/i386/i386/
H A Dpmap_base.c145 int pv_entry_max = 0; variable
146 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD,
147 &pv_entry_max, 0,
H A Dpmap.c249 extern int pv_entry_max, pv_entry_count;
999 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count;
1000 TUNABLE_INT_FETCH("vm.pmap.pv_entry_max", &pv_entry_max);
1001 pv_entry_max = roundup(pv_entry_max, _NPCPV);
1002 pv_entry_high_water = 9 * (pv_entry_max / 10);
1047 pv_maxchunks = MAX(pv_entry_max / _NPCPV, maxproc);
2520 "vm.pmap.pv_entry_max tunable.\n");
/freebsd-current/sys/powerpc/booke/
H A Dpmap.c256 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable
1075 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count;
1077 TUNABLE_INT_FETCH("vm.pmap.pv_entry_max", &pv_entry_max);
1078 pv_entry_high_water = 9 * (pv_entry_max / 10);
1080 uma_zone_reserve_kva(pvzone, pv_entry_max);
/freebsd-current/sys/arm/arm/
H A Dpmap-v6.c275 static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; variable
1549 SYSCTL_INT(_vm_pmap, OID_AUTO, pv_entry_max, CTLFLAG_RD, &pv_entry_max, 0,
1751 pv_entry_max = shpgperproc * maxproc + vm_cnt.v_page_count;
1752 TUNABLE_INT_FETCH("vm.pmap.pv_entry_max", &pv_entry_max);
1753 pv_entry_max = roundup(pv_entry_max, _NPCPV);
1754 pv_entry_high_water = 9 * (pv_entry_max / 10);
1784 pv_maxchunks = MAX(pv_entry_max / _NPCP
[all...]

Completed in 96 milliseconds