Displaying 3 results from an estimated 3 matches for "v_free_reserved".
2013 Feb 14
2
i386: vm.pmap kernel local race condition
...-k rotatelog" at midnight results in crash:
Feb 14 00:03:00 irl savecore: reboot after panic: get_pv_entry: increase vm.pmap.shpgperproc
Feb 14 00:03:00 irl savecore: writing core to vmcore.1
Btw, I have coredump.
vm.pmap.shpgperproc has default value (200) here, as well as m.v_free_min,
vm.v_free_reserved, and vm.v_free_target and KVA_PAGES.
These crashes are pretty regular
# last|fgrep reboot
reboot ~ Thu Feb 14 00:03
reboot ~ Wed Feb 13 19:08
reboot ~ Wed Feb 13 10:40...
2006 Apr 12
1
powerd not behaving with an Asus A8V-MX and Athlon 64 X2 3800+
...Virtual Memory: (Total: 37926K, Active 42712K)
Real Memory: (Total: 32144K Active 12172K)
Shared Virtual Memory: (Total: 5616K Active: 3248K)
Shared Real Memory: (Total: 4376K Active: 2372K)
Free Memory Pages: 2017696K
vm.loadavg: { 1.09 0.29 0.11 }
vm.v_free_min: 3311
vm.v_free_target: 13993
vm.v_free_reserved: 749
vm.v_inactive_target: 20989
vm.v_cache_min: 13993
vm.v_cache_max: 27986
vm.v_pageout_free_min: 34
vm.pageout_algorithm: 0
vm.swap_enabled: 1
vm.kmem_size: 335544320
vm.kmem_size_max: 335544320
vm.kmem_size_scale: 3
vm.swap_async_max: 4
vm.dmmax: 32
vm.nswapdev: 1
vm.zone:
ITEM SIZE...
2003 Aug 22
3
PAE removal patch for testing
...;
- for(i = 0; i < npdes; i++) {
+ for(i=0;i<npdes;i++) {
pmap->pm_pdir[ptepindex] =
- ptepa | PG_U | PG_RW | PG_V | PG_PS;
+ (pd_entry_t) (ptepa | PG_U | PG_RW | PG_V | PG_PS);
ptepa += NBPDR;
ptepindex += 1;
}
@@ -2220,7 +2413,7 @@
cnt.v_free_count < cnt.v_free_reserved) {
break;
}
- if ((p->valid & VM_PAGE_BITS_ALL) == VM_PAGE_BITS_ALL &&
+ if (((p->valid & VM_PAGE_BITS_ALL) == VM_PAGE_BITS_ALL) &&
(p->busy == 0) &&
(p->flags & (PG_BUSY | PG_FICTITIOUS)) == 0) {
if ((p->queue - p-&g...