aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
Commit message (Expand)AuthorAgeFilesLines
* GC P_BUFEXHAUST leftovers, we've had a new mechanism to avoid bufferMatthew Dillon2002-01-311-3/+0
* Remove a parameter name from a prototype.David Malone2002-01-251-1/+1
* Don't declare vm_swapout() in the NO_SWAPPING case when it is not defined.Bruce Evans2002-01-171-6/+4
* Replace ffind_* with fget calls.Alfred Perlstein2002-01-141-4/+1
* SMP Lock struct file, filedesc and the global file list.Alfred Perlstein2002-01-131-11/+8
* Change the preemption code for software interrupt thread schedules andJohn Baldwin2002-01-051-1/+1
* Fix a BUF_TIMELOCK race against BUF_LOCK and fix a deadlock in vget()Matthew Dillon2001-12-201-4/+11
* This fixes a large number of bugs in our NFS client side code. A recentMatthew Dillon2001-12-142-2/+41
* vm/vm_kern.c: rate limit (to once per second) diagnostic printf whenLuigi Rizzo2001-12-011-2/+8
* When laying out objects in a ZONE_INTERRUPT zone, allow them to crossJonathan Lemon2001-11-171-2/+4
* Fix deadlock introduced in 1.73 (Jan 1998). The paging-in-progress countMatthew Dillon2001-11-091-1/+5
* Adjust vnode_pager_input_smlfs() to not attempt to BMAP blocks beyond theMatthew Dillon2001-11-051-2/+7
* Don't let pmap_object_init_pt() exhaust all available free pagesMatthew Dillon2001-10-312-1/+2
* Move recently added procedure which was incorrectly placed within anMatthew Dillon2001-10-261-17/+16
* Implement kern.maxvnodes. adjusting kern.maxvnodes now actually has aMatthew Dillon2001-10-264-5/+42
* Syntax cleanup and documentation, no operational changes.Matthew Dillon2001-10-211-5/+9
* Move the code that computes the system load average from vm_meter.cIan Dowse2001-10-202-56/+0
* contigmalloc1() could cause the vm_page_zero_count to become incorrect.Matthew Dillon2001-10-171-0/+2
* Don't use an uninitialized field reserved for callers in the bio structureTor Egge2001-10-151-3/+4
* Don't remove all mappings of a swapped out process if the vm map containedTor Egge2001-10-141-1/+5
* Fix locking violations during page wiring:Tor Egge2001-10-141-3/+32
* Makes contigalloc[1]() create the vm_map / underlying wired pages in theMatthew Dillon2001-10-131-4/+12
* Finally fix the VM bug where a file whos EOF occurs in the middle of a pageMatthew Dillon2001-10-121-3/+21
* Change the kernel's ucred API as follows:John Baldwin2001-10-112-21/+14
* Add missing includes of sys/ktr.h.John Baldwin2001-10-111-0/+1
* Make MAXTSIZ, DFLDSIZ, MAXDSIZ, DFLSSIZ, MAXSSIZ, SGROWSIZ loaderPaul Saab2001-10-104-11/+15
* Remove the SSLEEP case from the load average computation. This hasIan Dowse2001-10-041-5/+0
* o Modify access control checks in mmap() to use securelevel_gt() insteadRobert Watson2001-09-261-1/+1
* KSE Milestone 2Julian Elischer2001-09-1215-213/+263
* Rip some well duplicated code out of cpu_wait() and cpu_exit() and movePeter Wemm2001-09-102-2/+19
* Process priority is locked by the sched_lock, not the proc lock.John Baldwin2001-09-011-2/+2
* make swapon() MPSAFE (will adjust syscalls.master later)Matthew Dillon2001-08-311-5/+13
* mark obreak() and ovadvise() as being MPSAFEMatthew Dillon2001-08-311-0/+6
* CleanupMatthew Dillon2001-08-311-27/+68
* Implement idle zeroing of pages. I've been tinkering with thisPeter Wemm2001-08-253-72/+100
* Remove support for the badly broken MAP_INHERIT (from -current only).Matthew Dillon2001-08-241-4/+1
* Move most of the kernel submap initialization code, including theMatthew Dillon2001-08-222-0/+106
* KASSERT if vm_page_t->wire_count overflows.Matthew Dillon2001-08-221-0/+1
* Limit the amount of KVM reserved for the buffer cache and for swap-metaMatthew Dillon2001-08-201-2/+5
* - Remove asleep(), await(), and M_ASLEEP.John Baldwin2001-08-101-5/+2
* - Remove asleep(), await(), and M_ASLEEP.John Baldwin2001-08-102-28/+0
* Add a missing semicolon to unbreak the kernel build with INVARIANTSThomas Moestl2001-08-051-1/+1
* Whitespace fixes.John Baldwin2001-08-042-2/+2
* Add a zdestroy() function to the zone allocator. This is needed for theThomas Moestl2001-08-042-0/+109
* Fixups for the initial allocation by dillon:Alfred Perlstein2001-08-021-7/+15
* Oops. Last commit to vm_object.c should have got these files too.Jake Burkholder2001-07-313-8/+4
* Remove the use of atomic ops to manipulate vm_object and vm_page flags.Jake Burkholder2001-07-311-11/+6
* Permit direct swapping to NFS regular files using swapon(2). WeIan Dowse2001-07-281-3/+10
* make vm_page_select_cache staticAssar Westerlund2001-07-232-2/+1
* (vm_page_select_cache): add prototypeAssar Westerlund2001-07-211-0/+1