summaryrefslogtreecommitdiffstats
path: root/sys/vm/vm_page.c
Commit message (Expand)AuthorAgeFilesLines
* - Hold the page queues lock around vm_page_hold().alc2003-01-201-1/+2
* - Update vm_pageout_deficit using atomic operations. It's a simplealc2003-01-141-2/+2
* Make vm_page_alloc() return PG_ZERO only if VM_ALLOC_ZERO is specified.alc2003-01-121-4/+5
* In vm_page_alloc(), fuse two if statements that are conditioned on the samealc2003-01-111-8/+3
* In vm_page_alloc(), honor VM_ALLOC_ZERO for system and interrupt classalc2003-01-081-12/+5
* Use atomic add and subtract to update the global wired page count,alc2003-01-051-3/+3
* Refine the assertions in vm_page_alloc().alc2003-01-041-2/+2
* Update the assertions in vm_page_insert() and vm_page_lookup() to reflectalc2003-01-011-4/+2
* Reduce the number of times that we acquire and release the page queuesalc2002-12-291-2/+0
* Assert that the page queues lock rather than Giant is held inalc2002-12-281-1/+2
* - Remove vm_page_sleep_busy(). The transition to vm_page_sleep_if_busy(),alc2002-12-191-34/+2
* Assert that the page queues lock is held in vm_page_unhold(),alc2002-12-151-2/+4
* Hold the page queues/flags lock when calling vm_page_set_validclean().alc2002-11-231-1/+1
* Remove vm_page_protect(). Instead, use pmap_page_protect() directly.alc2002-11-181-22/+1
* Now that pmap_remove_all() is exported by our pmap implementationsalc2002-11-161-4/+4
* When prot is VM_PROT_NONE, call pmap_page_protect() directly rather thanalc2002-11-101-3/+3
* In vm_page_remove(), avoid calling vm_page_splay() if the object's memqalc2002-11-091-10/+13
* Export the function vm_page_splay().alc2002-11-041-1/+1
* - Remove the memory allocation for the object/offset hash tablealc2002-11-031-45/+2
* Remove the vm page buckets mutex. As of revision 1.215 of vm/vm_page.c,alc2002-11-021-2/+0
* - Add a new flag to vm_page_alloc, VM_ALLOC_NOOBJ. This tellsjeff2002-11-011-19/+24
* o Reinline vm_page_undirty(), reducing the kernel size. (This revertsalc2002-10-201-11/+0
* Complete the page queues locking needed for the page-based copy-alc2002-10-191-1/+7
* Replace the vm_page hash table with a per-vmobject splay tree. There shoulddillon2002-10-181-58/+92
* o Synchronize updates to struct vm_page::cow with the page queues lock.alc2002-09-021-6/+5
* o Retire vm_page_zero_fill() and vm_page_zero_fill_area(). Ever sincealc2002-08-251-25/+0
* o Assert that the page queues lock is held in vm_page_activate().alc2002-08-111-1/+1
* o Remove the setting and clearing of the PG_MAPPED flag. (This flag isalc2002-08-101-1/+1
* o Use pmap_page_is_mapped() in vm_page_protect() rather than the PG_MAPPEDalc2002-08-081-1/+1
* o Acquire the page queues lock before checking the page's busy statusalc2002-08-041-2/+4
* - Replace v_flag with v_iflag and v_vflagjeff2002-08-041-2/+6
* o Remove the setting of PG_MAPPED from vm_page_wire() andalc2002-08-031-2/+0
* o Lock page queue accesses in nwfs and smbfs.alc2002-08-021-1/+1
* o Acquire the page queues lock before calling vm_page_io_finish().alc2002-08-011-1/+2
* o Lock page accesses by vm_page_io_start() with the page queues lock.alc2002-07-311-1/+2
* o Introduce vm_page_sleep_if_busy() as an eventual replacement foralc2002-07-291-0/+22
* o Modify vm_page_grab() to accept VM_ALLOC_WIRED.alc2002-07-281-0/+4
* o Lock page queue accesses by vm_page_dontneed().alc2002-07-231-1/+1
* o Lock page queue accesses by vm_page_try_to_cache(). (The accessesalc2002-07-201-1/+1
* o Assert that the page queues lock is held in vm_page_try_to_free().alc2002-07-201-0/+2
* o Lock page queue accesses by vm_page_cache() in vm_fault() andalc2002-07-201-1/+1
* o Duplicate an odd side-effect of vm_page_wire() in vm_page_allocate()alc2002-07-191-1/+2
* o Introduce an argument, VM_ALLOC_WIRED, that requests vm_page_alloc()alc2002-07-181-9/+10
* o Lock page queue accesses by vm_page_wire() that aren'talc2002-07-141-0/+3
* o Lock page queue accesses by vm_page_unmanage().alc2002-07-131-0/+1
* o Complete the locking of page queue accesses by vm_page_unwire().alc2002-07-131-1/+1
* Remove bogus vm_page_wakeup() in vm_page_cowfault() that will cause panicsgallatin2002-07-051-1/+0
* o Resurrect vm_page_lock_queues(), vm_page_unlock_queues(), and the freealc2002-07-041-5/+23
* At long last, commit the zero copy sockets code.ken2002-06-261-0/+69
* Turn VM_ALLOC_ZERO into a flag.jeff2002-06-251-4/+6
OpenPOWER on IntegriCloud