search for: vm_zone

Displaying 4 results from an estimated 4 matches for "vm_zone".

Did you mean: tm_zone
2003 Sep 09
1
Make installworld failure
...h -> vm/vm.ph vm/vm_extern.h -> vm/vm_extern.ph vm/vm_kern.h -> vm/vm_kern.ph vm/vm_map.h -> vm/vm_map.ph vm/vm_object.h -> vm/vm_object.ph vm/vm_page.h -> vm/vm_page.ph vm/vm_pageout.h -> vm/vm_pageout.ph vm/vm_pager.h -> vm/vm_pager.ph vm/vm_param.h -> vm/vm_param.ph vm/vm_zone.h -> vm/vm_zone.ph vm/vnode_pager.h -> vm/vnode_pager.ph *** Error code 1 Stop in /usr/src/gnu/usr.bin/perl/utils/h2ph. *** Error code 1 Stop in /usr/src/gnu/usr.bin/perl/utils. *** Error code 1 Stop in /usr/src/gnu/usr.bin/perl. *** Error code 1 Stop in /usr/src/gnu/usr.bin. *** Error co...
2003 Aug 07
0
understanding a panic / crash dump
...55904, tf_edx = 144130616, tf_ecx = 16777217, tf_eax = 297509, tf_trapno = 12, tf_err = 0, tf_eip = -1071359629, tf_cs = 8, tf_eflags = 66054, tf_esp = -527084180, tf_ss = -1063435816}) at /usr/src/sys/i386/i386/trap.c:466 #28 0xc0245973 in zalloci (z=0xc02f1660) at /usr/src/sys/vm/vm_zone.c:70 #29 0xc026d1aa in get_pv_entry () at /usr/src/sys/i386/i386/pmap.c:1539 #30 0xc026d34f in pmap_insert_entry (pmap=0xe095556c, va=140066816, mpte=0xc0ac0b78, m=0xc09d41d8) at /usr/src/sys/i386/i386/pmap.c:1635 #31 0xc026da8c in pmap_enter (pmap=0xe095556c, va=140066816, m=0xc09d41d8, pro...
2003 Apr 11
14
PATCH: Forcible delaying of UFS (soft)updates
...t;); +int stratcalls = 0; +int sync_extdelay = 0; +SYSCTL_INT(_vfs, OID_AUTO, sync_extdelay, CTLFLAG_RW, &sync_extdelay, 0, ""); + #ifdef ENABLE_VFS_IOOPT int vfs_ioopt = 0; SYSCTL_INT(_vfs, OID_AUTO, ioopt, CTLFLAG_RW, &vfs_ioopt, 0, ""); @@ -137,7 +141,7 @@ static vm_zone_t vnode_zone; * The workitem queue. */ #define SYNCER_MAXDELAY 32 -static int syncer_maxdelay = SYNCER_MAXDELAY; /* maximum delay time */ +int syncer_maxdelay = SYNCER_MAXDELAY; /* maximum delay time */ time_t syncdelay = 30; /* max time to delay syncing data */ time_t filedelay = 30; /*...
2003 Aug 22
3
PAE removal patch for testing
...nd; /* PA of last available physical page */ vm_offset_t virtual_avail; /* VA of first avail page (after kernel bss) */ vm_offset_t virtual_end; /* VA of last avail page (end of kernel AS) */ static boolean_t pmap_initialized = FALSE; /* Has pmap_init completed? */ @@ -202,34 +168,19 @@ static vm_zone_t pvzone; static struct vm_zone pvzone_store; static struct vm_object pvzone_obj; -static int pv_entry_count = 0, pv_entry_max = 0, pv_entry_high_water = 0; +static int pv_entry_count=0, pv_entry_max=0, pv_entry_high_water=0; static int pmap_pagedaemon_waken = 0; static struct pv_entry *pvinit;...