aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
Commit message (Expand)AuthorAgeFilesLines
* Don't hold the VM lock across VOP's and other things that can sleep.John Baldwin2001-05-291-2/+19
* Stick VM syscalls back under Giant if the BLEED option is not defined.John Baldwin2001-05-242-0/+57
* This patch implements O_DIRECT about 80% of the way. It takes a patchsetMatthew Dillon2001-05-242-0/+24
* - Assert Giant is held in the vnode pager methods.John Baldwin2001-05-231-14/+18
* - Add in several asserts of vm_mtx.John Baldwin2001-05-231-5/+42
* - Assert that the vm lock is held for all of _vm_object_allocate().John Baldwin2001-05-231-31/+48
* - Add lots of vm_mtx assertions.John Baldwin2001-05-231-2/+39
* - Lock the VM around the pmap_swapin_proc() call in faultin().John Baldwin2001-05-231-15/+16
* - Fix the sw_alloc_interlock to actually lock itself when the lock isJohn Baldwin2001-05-231-16/+20
* Assert Giant is held for the device pager alloc and getpages methods sinceJohn Baldwin2001-05-231-3/+3
* - Obtain Giant in mmap() syscall while messing with file descriptors andJohn Baldwin2001-05-231-18/+32
* Acquire Giant around vm_map_remove() inside of the obreak() syscall forJohn Baldwin2001-05-231-2/+7
* Take a more conservative approach and still lock Giant around VM faultsJohn Baldwin2001-05-231-8/+6
* Set the phys_pager_alloc_lock to 1 when it is acquired so that it isJohn Baldwin2001-05-231-1/+2
* aquire Giant when playing with the buffercache and doing IO.Alfred Perlstein2001-05-231-2/+5
* aquire vm mutex in swp_pager_async_iodone. Don't call swp_pager_async_iodoneAlfred Perlstein2001-05-221-2/+3
* Remove duplicate include and sort includes.John Baldwin2001-05-221-3/+2
* Sort includes.John Baldwin2001-05-221-1/+1
* Unlock the VM lock at the end of munlock() instead of locking it again.John Baldwin2001-05-221-1/+1
* Sort includes from previous commit.John Baldwin2001-05-221-1/+1
* Sort includes.John Baldwin2001-05-221-3/+3
* Introduce a global lock for the vm subsystem (vm_mtx).Alfred Perlstein2001-05-1922-171/+643
* - Use a timeout for the tsleep in scheduler() instead of having vmmeter()John Baldwin2001-05-182-5/+22
* During the code to pick a process to kill when memory is exhausted, keepJohn Baldwin2001-05-171-3/+18
* - Use PROC_LOCK_ASSERT instead of a direct mtx_assert.John Baldwin2001-05-151-8/+6
* Actually biofinish(struct bio *, struct devstat *, int error) is more generalPoul-Henning Kamp2001-05-061-3/+1
* Putting sys/lockmgr.h in here allows us to depollute userland includesMark Murray2001-05-031-0/+2
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-0114-18/+30
* Revert consequences of changes to mount.h, part 2.Greg Lehey2001-04-292-4/+0
* Address a number of problems with sysctl_vm_zone().Alfred Perlstein2001-04-271-11/+29
* Correct #includes to work with fixed sys/mount.h.Greg Lehey2001-04-232-0/+4
* vnode_pager_freepage() is really vm_page_free() in disguise,Alfred Perlstein2001-04-192-15/+7
* Protect pager object creation with sx locks.Alfred Perlstein2001-04-183-33/+43
* Fix the botched rev 1.59 where I made it such that without INVARIANTSAlfred Perlstein2001-04-181-2/+2
* This patch removes the VOP_BWRITE() vector.Poul-Henning Kamp2001-04-171-0/+2
* use TAILQ_FOREACH, fix a comment's locationAlfred Perlstein2001-04-153-15/+6
* if/panic -> KASSERTAlfred Perlstein2001-04-131-7/+8
* protect pbufs and associated counts with a mutexAlfred Perlstein2001-04-133-2/+14
* use %p for pointer printf, include sys/systm.h for printf protoAlfred Perlstein2001-04-131-6/+7
* Use a macro wrapper over printf along with KASSERT to reduce the amountAlfred Perlstein2001-04-131-40/+15
* remove truncated part from commmentAlfred Perlstein2001-04-121-1/+1
* Convert the allproc and proctree locks from lockmgr locks to sx locks.John Baldwin2001-03-284-15/+20
* Catch up to header include changes:John Baldwin2001-03-281-0/+1
* Export intrnames and intrcnt as sysctls (hw.nintr, hw.intrnames andThomas Moestl2001-03-231-0/+30
* Fix a lock reversal problem in the VM subsystem related to threadedMatthew Dillon2001-03-143-0/+10
* Temporarily remove the vm_map_simplify() call from vm_map_insert(). TheMatthew Dillon2001-03-141-0/+7
* When creating a shadow vm_object in vmspace_fork(), only oneIan Dowse2001-03-091-0/+4
* Unrevert the pmap_map() changes. They weren't broken on x86.John Baldwin2001-03-072-17/+10
* Back out the pmap_map() change for now, it isn't completely stable on theJohn Baldwin2001-03-072-10/+17
* - Rework pmap_map() to take advantage of direct-mapped segments onJohn Baldwin2001-03-062-17/+10