| Commit message (Expand) | Author | Age | Files | Lines |
* | Fix madvise(MADV_WILLNEED) to properly handle individual mappings larger | jhb | 2012-03-19 | 1 | -3/+3 |
* | In vm_object_page_clean(), do not clean OBJ_MIGHTBEDIRTY object flag | kib | 2012-03-17 | 1 | -18/+38 |
* | Do not restart the scan in vm_object_page_clean() on the object | kib | 2012-01-04 | 1 | -4/+12 |
* | Optimize vm_object_split()'s handling of reservations. | alc | 2011-12-28 | 1 | -0/+15 |
* | Optimize the common case of msyncing the whole file mapping with | kib | 2011-12-23 | 1 | -3/+18 |
* | Mark all SYSCTL_NODEs static that have no corresponding SYSCTL_DECLs. | ed | 2011-11-07 | 1 | -1/+2 |
* | Add the posix_fadvise(2) system call. It is somewhat similar to | jhb | 2011-11-04 | 1 | -0/+54 |
* | Split the vm_page flags PG_WRITEABLE and PG_REFERENCED into atomic | kib | 2011-09-06 | 1 | -3/+1 |
* | - Move the PG_UNMANAGED flag from m->flags to m->oflags, renaming the flag | kib | 2011-08-09 | 1 | -1/+3 |
* | Add a new option, OBJPR_NOTMAPPED, to vm_object_page_remove(). Passing this | alc | 2011-06-29 | 1 | -58/+65 |
* | In the VOP_PUTPAGES() implementations, change the default error from | kib | 2011-06-01 | 1 | -0/+15 |
* | Another long standing vm bug found at Isilon: | mlaier | 2011-05-09 | 1 | -0/+18 |
* | Fix two bugs in r218670. | kib | 2011-04-23 | 1 | -4/+11 |
* | Lock the vnode around clearing of VV_TEXT flag. Remove mp_fixme() note | kib | 2011-02-13 | 1 | -9/+14 |
* | Unless "cnt" exceeds MAX_COMMIT_COUNT, nfsrv_commit() and nfsvno_fsync() are | alc | 2011-02-05 | 1 | -9/+7 |
* | Since the last parameter to vm_object_shadow() is a vm_size_t and not a | alc | 2011-02-04 | 1 | -1/+1 |
* | For consistency, use kernel_object instead of &kernel_object_store | kib | 2011-01-15 | 1 | -2/+2 |
* | Make a couple refinements to r216799 and r216810. In particular, revise | alc | 2011-01-01 | 1 | -10/+8 |
* | Remove OBJ_CLEANING flag. The vfs_setdirty_locked_object() is the only | kib | 2010-12-29 | 1 | -3/+0 |
* | Move the increment of vm object generation count into | kib | 2010-12-29 | 1 | -31/+34 |
* | Replace pointer to "struct uidinfo" with pointer to "struct ucred" | trasz | 2010-12-02 | 1 | -16/+16 |
* | After the sleep caused by encountering a busy page, relookup the page. | kib | 2010-11-24 | 1 | -1/+3 |
* | Eliminate the mab, maf arrays and related variables. | kib | 2010-11-21 | 1 | -32/+15 |
* | Optimize vm_object_terminate(). | alc | 2010-11-20 | 1 | -9/+28 |
* | The runlen returned from vm_pageout_flush() might be zero legitimately, | kib | 2010-11-20 | 1 | -1/+0 |
* | vm_pageout_flush() might cache the pages that finished write to the | kib | 2010-11-18 | 1 | -24/+3 |
* | Only increment object generation count when inserting the page into | kib | 2010-11-18 | 1 | -7/+0 |
* | Several cleanups for the r209686: | kib | 2010-07-04 | 1 | -13/+6 |
* | Reimplement vm_object_page_clean(), using the fact that vm object memq | kib | 2010-07-04 | 1 | -189/+73 |
* | Introduce a helper function vm_page_find_least(). Use it in several places, | kib | 2010-07-04 | 1 | -14/+2 |
* | Roughly half of a typical pmap_mincore() implementation is machine- | alc | 2010-05-24 | 1 | -29/+6 |
* | Add a comment about the proper use of vm_object_page_remove(). | alc | 2010-05-16 | 1 | -1/+2 |
* | Push down the page queues into vm_page_cache(), vm_page_try_to_cache(), and | alc | 2010-05-08 | 1 | -14/+1 |
* | Eliminate acquisitions of the page queues lock that are no longer needed. | alc | 2010-05-07 | 1 | -9/+2 |
* | Eliminate page queues locking around most calls to vm_page_free(). | alc | 2010-05-06 | 1 | -2/+0 |
* | Acquire the page lock around all remaining calls to vm_page_free() on | alc | 2010-05-05 | 1 | -4/+0 |
* | Correct an error in r207410: Remove an unlock of a lock that is no longer | alc | 2010-05-02 | 1 | -1/+0 |
* | push up dropping of the page queue lock to avoid holding it in vm_pageout_flush | kmacy | 2010-04-30 | 1 | -29/+17 |
* | don't call vm_pageout_flush with the page queue mutex held | kmacy | 2010-04-30 | 1 | -0/+2 |
* | On Alan's advice, rather than do a wholesale conversion on a single | kmacy | 2010-04-30 | 1 | -12/+77 |
* | Change vm_object_madvise() so that it checks whether the page is invalid | alc | 2010-04-28 | 1 | -10/+6 |
* | There is no justification for vm_object_split() setting PG_REFERENCED on a | alc | 2010-04-18 | 1 | -1/+0 |
* | In vm_object_madvise() setting PG_REFERENCED on a page before sleeping on | alc | 2010-04-17 | 1 | -2/+9 |
* | In vm_object_backing_scan(), setting PG_REFERENCED on a page before | alc | 2010-04-17 | 1 | -3/+0 |
* | VI_OBJDIRTY vnode flag mirrors the state of OBJ_MIGHTBEDIRTY vm object | kib | 2009-12-21 | 1 | -21/+5 |
* | Add a new type of VM object: OBJT_SG. An OBJT_SG object is very similar to | jhb | 2009-07-24 | 1 | -0/+1 |
* | Add support to the virtual memory system for configuring machine- | alc | 2009-07-12 | 1 | -0/+31 |
* | Eliminiate code duplication by calling vm_object_destroy() | kib | 2009-06-28 | 1 | -18/+4 |
* | The bits set in a page's dirty mask are a subset of the bits set in its | alc | 2009-06-24 | 1 | -6/+6 |
* | Implement global and per-uid accounting of the anonymous memory. Add | kib | 2009-06-23 | 1 | -3/+70 |