| Commit message (Expand) | Author | Age | Files | Lines |
| * | Remove some long unused definitions. | Alan Cox | 2004-03-04 | 1 | -2/+0 |
| * | - Align a comment within struct vm_page. | Alan Cox | 2003-10-25 | 1 | -5/+5 |
| * | - Retire vm_pageout_page_free(). Instead, use vm_page_select_cache() from | Alan Cox | 2003-10-22 | 1 | -0/+1 |
| * | - Remove some long unused code. | Alan Cox | 2003-10-20 | 1 | -1/+0 |
| * | Retire vm_page_copy(). Its reason for being ended when peter@ modified | Alan Cox | 2003-10-08 | 1 | -1/+0 |
| * | Assert that u_long is at least 64 bits if PAGE_SIZE is 32K. | Marcel Moolenaar | 2003-08-25 | 1 | -0/+7 |
| * | Also define VM_PAGE_BITS_ALL for 16K and 32K pages. Make the constant | Marcel Moolenaar | 2003-08-23 | 1 | -5/+7 |
| * | Add support for 16K and 32K page sizes. The valid and dirty maps | Marcel Moolenaar | 2003-08-23 | 1 | -0/+6 |
| * | - Add vm_paddr_t, a physical address type. This is required for systems | Jake Burkholder | 2003-03-25 | 1 | -2/+2 |
| * | - Remove vm_page_sleep_busy(). The transition to vm_page_sleep_if_busy(), | Alan Cox | 2002-12-19 | 1 | -1/+0 |
| * | Remove vm_page_protect(). Instead, use pmap_page_protect() directly. | Alan Cox | 2002-11-18 | 1 | -1/+0 |
| * | Export the function vm_page_splay(). | Alan Cox | 2002-11-04 | 1 | -0/+1 |
| * | - Add a new flag to vm_page_alloc, VM_ALLOC_NOOBJ. This tells | Jeff Roberson | 2002-11-01 | 1 | -3/+4 |
| * | o Reinline vm_page_undirty(), reducing the kernel size. (This reverts | Alan Cox | 2002-10-20 | 1 | -1/+11 |
| * | Replace the vm_page hash table with a per-vmobject splay tree. There should | Matthew Dillon | 2002-10-18 | 1 | -1/+2 |
| * | - Split UMA_ZFLAG_OFFPAGE into UMA_ZFLAG_OFFPAGE and UMA_ZFLAG_HASH. | Jeff Roberson | 2002-09-18 | 1 | -0/+1 |
| * | o Retire vm_page_zero_fill() and vm_page_zero_fill_area(). Ever since | Alan Cox | 2002-08-25 | 1 | -2/+0 |
| * | o Remove the setting and clearing of the PG_MAPPED flag from the alpha and | Alan Cox | 2002-08-10 | 1 | -1/+0 |
| * | o Introduce vm_page_sleep_if_busy() as an eventual replacement for | Alan Cox | 2002-07-29 | 1 | -0/+1 |
| * | o Modify vm_page_grab() to accept VM_ALLOC_WIRED. | Alan Cox | 2002-07-28 | 1 | -1/+1 |
| * | o Remove dead and/or unused code. | Alan Cox | 2002-07-20 | 1 | -2/+0 |
| * | o Introduce an argument, VM_ALLOC_WIRED, that requests vm_page_alloc() | Alan Cox | 2002-07-18 | 1 | -1/+5 |
| * | o Complete the locking of page queue accesses by vm_page_unwire(). | Alan Cox | 2002-07-13 | 1 | -4/+3 |
| * | o Resurrect vm_page_lock_queues(), vm_page_unlock_queues(), and the free | Alan Cox | 2002-07-04 | 1 | -0/+5 |
| * | At long last, commit the zero copy sockets code. | Kenneth D. Merry | 2002-06-26 | 1 | -0/+5 |
| * | Turn VM_ALLOC_ZERO into a flag. | Jeff Roberson | 2002-06-25 | 1 | -1/+1 |
| * | o Remove unused #defines. | Alan Cox | 2002-05-27 | 1 | -9/+0 |
| * | We do not necessarily need to map/unmap pages to zero parts of them. | Peter Wemm | 2002-04-28 | 1 | -0/+1 |
| * | - Remove a number of extra newlines that do not belong here according to | Eivind Eklund | 2002-03-10 | 1 | -4/+2 |
| * | o Create vm_pageq_enqueue() to encapsulate code that is duplicated time | Alan Cox | 2002-03-04 | 1 | -8/+1 |
| * | Remove some long dead code. | Alan Cox | 2002-03-02 | 1 | -9/+0 |
| * | Add a page queue, PQ_HOLD, that temporarily owns pages with nonzero hold | Tor Egge | 2002-02-19 | 1 | -1/+2 |
| * | Implement idle zeroing of pages. I've been tinkering with this | Peter Wemm | 2001-08-25 | 1 | -0/+1 |
| * | Oops. Last commit to vm_object.c should have got these files too. | Jake Burkholder | 2001-07-31 | 1 | -1/+0 |
| * | make vm_page_select_cache static | Assar Westerlund | 2001-07-23 | 1 | -1/+0 |
| * | (vm_page_select_cache): add prototype | Assar Westerlund | 2001-07-21 | 1 | -0/+1 |
| * | Reorg vm_page.c into vm_page.c, vm_pageq.c, and vm_contig.c (for contigmalloc). | Matthew Dillon | 2001-07-04 | 1 | -0/+17 |
| * | Change inlines back into mainline code in preparation for mutexing. Also, | Matthew Dillon | 2001-07-04 | 1 | -314/+45 |
| * | With Alfred's permission, remove vm_mtx in favor of a fine-grained approach | Matthew Dillon | 2001-07-04 | 1 | -22/+14 |
| * | This patch implements O_DIRECT about 80% of the way. It takes a patchset | Matthew Dillon | 2001-05-24 | 1 | -0/+1 |
| * | Introduce a global lock for the vm subsystem (vm_mtx). | Alfred Perlstein | 2001-05-19 | 1 | -6/+25 |
| * | This implements a better launder limiting solution. There was a solution | Matthew Dillon | 2000-12-26 | 1 | -0/+1 |
| * | Implement a low-memory deadlock solution. | Matthew Dillon | 2000-11-18 | 1 | -0/+2 |
| * | Make the arguments match the functionality of the functions. | David E. O'Brien | 2000-08-26 | 1 | -2/+2 |
| * | #elsif -> #elif | Alfred Perlstein | 2000-07-11 | 1 | -8/+8 |
| * | Replace the PQ_*CACHE options with a single PQ_CACHESIZE option that you | John Baldwin | 2000-07-04 | 1 | -24/+31 |
| * | This is a cleanup patch to Peter's new OBJT_PHYS VM object type | Matthew Dillon | 2000-05-29 | 1 | -0/+9 |
| * | Back out the previous change to the queue(3) interface. | Jake Burkholder | 2000-05-26 | 1 | -3/+3 |
| * | Change the way that the queue(3) structures are declared; don't assume that | Jake Burkholder | 2000-05-23 | 1 | -3/+3 |
| * | Implement an optimization of the VM<->pmap API. Pass vm_page_t's directly | Peter Wemm | 2000-05-21 | 1 | -2/+5 |