| Commit message (Expand) | Author | Age | Files | Lines |
* | In vm_page_lookup() check the root of the vm object's splay tree for the | alc | 2003-12-31 | 1 | -3/+5 |
* | Simplify vm_page_grab(): Don't bother with the generation check. If the | alc | 2003-12-31 | 1 | -18/+6 |
* | - Create an unmapped guard page to trap access to vm_page_array[-1]. | alc | 2003-12-22 | 1 | -0/+5 |
* | - Additional vm object locking in vm_object_split() | alc | 2003-11-01 | 1 | -2/+1 |
* | - Retire vm_pageout_page_free(). Instead, use vm_page_select_cache() from | alc | 2003-10-22 | 1 | -1/+1 |
* | - Assert that the containing vm object is locked in | alc | 2003-10-21 | 1 | -0/+1 |
* | - Remove some long unused code. | alc | 2003-10-20 | 1 | -10/+0 |
* | Retire vm_page_copy(). Its reason for being ended when peter@ modified | alc | 2003-10-08 | 1 | -17/+3 |
* | Assert that the containing vm object's lock is held in | alc | 2003-10-05 | 1 | -0/+1 |
* | Assert that the containing vm object's lock is held in | alc | 2003-10-04 | 1 | -0/+1 |
* | - Extend the scope the vm object lock to cover calls to | alc | 2003-10-04 | 1 | -0/+1 |
* | In vm_page_remove(), assert that the vm object is locked, unless an Alpha. | alc | 2003-09-28 | 1 | -2/+3 |
* | Initialize the page's pindex field even for VM_ALLOC_NOOBJ allocations. | alc | 2003-09-22 | 1 | -0/+2 |
* | Recent pmap changes permit the use of a more precise locking assertion | alc | 2003-08-28 | 1 | -2/+1 |
* | Held pages, just like wired pages, should not be added to the cache queues. | alc | 2003-08-23 | 1 | -1/+2 |
* | Hold the page queues lock when performing vm_page_clear_dirty() and | alc | 2003-08-23 | 1 | -2/+3 |
* | Assert that the vm object's lock is held on entry to vm_page_grab(); remove | alc | 2003-08-21 | 1 | -14/+6 |
* | Assert that the vm object lock is held in vm_page_alloc(). | alc | 2003-08-20 | 1 | -0/+1 |
* | Modify vm_page_alloc() and vm_page_select_cache() to allow the page that | alc | 2003-07-01 | 1 | -2/+4 |
* | - Use an int rather than a vm_pindex_t to represent the desired page | alc | 2003-06-28 | 1 | -24/+6 |
* | vm_page_select_cache() enforces a number of conditions on the returned | alc | 2003-06-26 | 1 | -1/+6 |
* | Maintain a lock on the vm object of interest throughout vm_fault(), | alc | 2003-06-22 | 1 | -0/+2 |
* | Assert that the vm object is locked in vm_page_try_to_free(). | alc | 2003-06-19 | 1 | -0/+2 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -1/+3 |
* | Teach vm_page_grab() how to handle the vm object's lock. | alc | 2003-06-07 | 1 | -4/+16 |
* | - Relax the Giant required in vm_page_remove(). | alc | 2003-04-25 | 1 | -3/+2 |
* | Revision 1.246 should have also included | alc | 2003-04-22 | 1 | -1/+2 |
* | Revision 1.52 of vm/uma_core.c has led to UMA's obj_alloc() being | alc | 2003-04-22 | 1 | -3/+2 |
* | - Kill the pv_flags member of the alpha mdpage since it stop being used | jhb | 2003-04-10 | 1 | -4/+0 |
* | - Add vm_paddr_t, a physical address type. This is required for systems | jake | 2003-03-25 | 1 | -8/+10 |
* | Remove an empty comment. | mux | 2003-03-19 | 1 | -4/+0 |
* | Subtract the memory that backs the vm_page structures from phys_avail | jake | 2003-03-17 | 1 | -4/+2 |
* | Teach vm_page_sleep_if_busy() to release the vm_object lock before sleeping. | alc | 2003-03-01 | 1 | -0/+9 |
* | In vm_page_dirty(), assert that the page is not in the free queue(s). | alc | 2003-02-24 | 1 | -0/+2 |
* | - Convert the tsleep()s in vm_wait() and vm_waitpfault() to msleep()s | alc | 2003-02-01 | 1 | -3/+10 |
* | - Hold the page queues lock around vm_page_hold(). | alc | 2003-01-20 | 1 | -1/+2 |
* | - Update vm_pageout_deficit using atomic operations. It's a simple | alc | 2003-01-14 | 1 | -2/+2 |
* | Make vm_page_alloc() return PG_ZERO only if VM_ALLOC_ZERO is specified. | alc | 2003-01-12 | 1 | -4/+5 |
* | In vm_page_alloc(), fuse two if statements that are conditioned on the same | alc | 2003-01-11 | 1 | -8/+3 |
* | In vm_page_alloc(), honor VM_ALLOC_ZERO for system and interrupt class | alc | 2003-01-08 | 1 | -12/+5 |
* | Use atomic add and subtract to update the global wired page count, | alc | 2003-01-05 | 1 | -3/+3 |
* | Refine the assertions in vm_page_alloc(). | alc | 2003-01-04 | 1 | -2/+2 |
* | Update the assertions in vm_page_insert() and vm_page_lookup() to reflect | alc | 2003-01-01 | 1 | -4/+2 |
* | Reduce the number of times that we acquire and release the page queues | alc | 2002-12-29 | 1 | -2/+0 |
* | Assert that the page queues lock rather than Giant is held in | alc | 2002-12-28 | 1 | -1/+2 |
* | - Remove vm_page_sleep_busy(). The transition to vm_page_sleep_if_busy(), | alc | 2002-12-19 | 1 | -34/+2 |
* | Assert that the page queues lock is held in vm_page_unhold(), | alc | 2002-12-15 | 1 | -2/+4 |
* | Hold the page queues/flags lock when calling vm_page_set_validclean(). | alc | 2002-11-23 | 1 | -1/+1 |
* | Remove vm_page_protect(). Instead, use pmap_page_protect() directly. | alc | 2002-11-18 | 1 | -22/+1 |
* | Now that pmap_remove_all() is exported by our pmap implementations | alc | 2002-11-16 | 1 | -4/+4 |