aboutsummaryrefslogtreecommitdiff
path: root/sys/vm
Commit message (Expand)AuthorAgeFilesLines
* MFC to 5.0 refcount race fix for the vmspace structure.Matthew Dillon2002-12-222-8/+19
* Hold the page queues lock when calling pmap_protect(); it updates fieldsAlan Cox2002-12-011-7/+22
* Hold the page queues lock when calling pmap_protect(); it updates fieldsAlan Cox2002-12-011-3/+5
* Increase the scope of the page queue lock in vm_pageout_scan().Alan Cox2002-12-011-2/+2
* Lock page field accesses in mincore().Alan Cox2002-11-281-0/+2
* Hold the page queues lock when performing pmap_clear_modify().Alan Cox2002-11-271-0/+4
* Hold the page queues lock while performing pmap_page_protect().Alan Cox2002-11-271-2/+4
* Acquire and release the page queues lock around calls to pmap_protect()Alan Cox2002-11-251-0/+4
* Extend the scope of the page queues/fields locking in vm_freeze_copyopts()Alan Cox2002-11-241-1/+3
* Hold the page queues/flags lock when calling vm_page_set_validclean().Alan Cox2002-11-232-1/+5
* Assert that the page queues lock rather than Giant is held inAlan Cox2002-11-231-2/+3
* Add page queue and flag locking in vnode_pager_setsize().Alan Cox2002-11-231-0/+2
* - Add an event that is triggered when the system is low on memory. This isJeff Roberson2002-11-211-1/+9
* - Wakeup the correct address when a zone is no longer full.Jeff Roberson2002-11-181-1/+1
* Remove vm_page_protect(). Instead, use pmap_page_protect() directly.Alan Cox2002-11-185-30/+8
* - Don't forget the flags value when using boot pages.Jeff Roberson2002-11-161-0/+1
* Now that pmap_remove_all() is exported by our pmap implementationsAlan Cox2002-11-165-19/+19
* Remove dead code that hasn't been needed since the demise of share mapsAlan Cox2002-11-132-26/+0
* Move pmap_collect() out of the machine-dependent code, rename itAlan Cox2002-11-132-2/+33
* Remove extra #include<sys/vmmeter.h>.Olivier Houchard2002-11-111-1/+0
* atomic_set_8 isn't MI. Instead, follow Jake's suggestions aboutMatt Jacob2002-11-113-5/+7
* - Clear the page's PG_WRITEABLE flag in the i386's pmap_changebit()Alan Cox2002-11-111-0/+1
* Use atomic_set_8 on the us_freelist maps as they are not otherwiseMatt Jacob2002-11-101-2/+2
* When prot is VM_PROT_NONE, call pmap_page_protect() directly rather thanAlan Cox2002-11-105-19/+19
* Fix an error case in vm_map_wire(): unwiring of an entry during cleanupAlan Cox2002-11-091-2/+2
* In vm_page_remove(), avoid calling vm_page_splay() if the object's memqAlan Cox2002-11-091-10/+13
* Move the definitions of the hw.physmem, hw.usermem and hw.availpagesThomas Moestl2002-11-071-0/+2
* Better printf() formats.Maxime Henrion2002-11-071-8/+7
* Some more printf() format fixes.Maxime Henrion2002-11-071-9/+7
* Correctly print vm_offset_t types.Maxime Henrion2002-11-071-6/+5
* Export the function vm_page_splay().Alan Cox2002-11-042-1/+2
* - Remove the memory allocation for the object/offset hash tableAlan Cox2002-11-031-45/+2
* Remove the vm page buckets mutex. As of revision 1.215 of vm/vm_page.c,Alan Cox2002-11-021-2/+0
* - Add support for machine dependant page allocation routines. MD codeJeff Roberson2002-11-012-2/+28
* - Add a new flag to vm_page_alloc, VM_ALLOC_NOOBJ. This tellsJeff Roberson2002-11-012-22/+28
* Merge from MAC tree: rename mac_check_vnode_swapon() toRobert Watson2002-10-271-1/+1
* - Now that uma_zalloc_internal is not the fast path don't be so fussy aboutJeff Roberson2002-10-241-179/+198
* - Move the destructor calls so that they are not called with the zone lockJeff Roberson2002-10-241-5/+6
* Invoke mac_check_vnode_mmap() during mmap operations on vnodes,Robert Watson2002-10-221-2/+12
* Introduce MAC_CHECK_VNODE_SWAPON, which permits MAC policies toRobert Watson2002-10-221-1/+7
* - Check that a process isn't a new process (p_state == PRS_NEW) beforeJohn Baldwin2002-10-221-20/+23
* Fix typo in comments (misspelled "necessary").Sheldon Hearn2002-10-221-2/+2
* o Reinline vm_page_undirty(), reducing the kernel size. (This revertsAlan Cox2002-10-202-12/+11
* Complete the page queues locking needed for the page-based copy-Alan Cox2002-10-192-3/+9
* Replace the vm_page hash table with a per-vmobject splay tree. There shouldMatthew Dillon2002-10-184-59/+96
* Properly put macro args in ().Poul-Henning Kamp2002-10-161-2/+2
* Remove old useless debugging codeJulian Elischer2002-10-141-5/+0
* - Create a new scheduler api that is defined in sys/sched.hJeff Roberson2002-10-122-4/+4
* Rename the mutex thread and process states to use a more generic 'LOCK'John Baldwin2002-10-021-1/+1
* Some kernel threads try to do significant work, and the default KSTACK_PAGESScott Long2002-10-021-1/+3