| Commit message (Expand) | Author | Age | Files | Lines |
* | Change the type of the map entry's next_read field from a vm_pindex_t to a | alc | 2016-07-07 | 1 | -1/+1 |
* | Do not pretend that vm_fault(9) supports unwiring the address. Rename | kib | 2015-07-30 | 1 | -3/+3 |
* | Oops. vm_map_simplify_entry() is used by mac_proc_vm_revoke_recurse(), so | alc | 2014-09-08 | 1 | -0/+1 |
* | Make two functions static and eliminate an unused #define. | alc | 2014-09-08 | 1 | -5/+1 |
* | Add MAP_EXCL flag for mmap(2). It should be combined with MAP_FIXED, | kib | 2014-06-19 | 1 | -0/+1 |
* | Add a mmap flag (MAP_32BIT) on 64-bit platforms to request that a mapping use | jhb | 2013-09-09 | 1 | -1/+1 |
* | Add new mmap(2) flags to permit applications to request specific virtual | jhb | 2013-08-16 | 1 | -2/+6 |
* | Replace kernel virtual address space allocation with vmem. This provides | jeff | 2013-08-07 | 1 | -4/+0 |
* | Revert r253939: | attilio | 2013-08-05 | 1 | -1/+0 |
* | The page hold mechanism is fast but it has couple of fallouts: | attilio | 2013-08-04 | 1 | -0/+1 |
* | Be more aggressive in using superpages in all mappings of objects: | jhb | 2013-07-19 | 1 | -2/+3 |
* | The mlockall() or VM_MAP_WIRE_HOLESOK does not interact properly with | kib | 2013-07-11 | 1 | -0/+1 |
* | - Get rid of unused function vmspace_wired_count(). | zont | 2013-01-14 | 1 | -1/+0 |
* | Fix a bug with memguard(9) on 32-bit architectures without a | mdf | 2012-07-15 | 1 | -2/+2 |
* | Give vm_fault()'s sequential access optimization a makeover. | alc | 2012-05-10 | 1 | -1/+10 |
* | Account the writeable shared mappings backed by file in the vnode | kib | 2012-02-23 | 1 | -0/+2 |
* | Close a race due to dropping of the map lock between creating map entry | kib | 2012-02-11 | 1 | -1/+1 |
* | - Merge changes to the base system to support OFED. These include | jeff | 2011-03-21 | 1 | -0/+2 |
* | Change the return type of vmspace_swap_count to a long to match the other | brucec | 2011-03-01 | 1 | -1/+1 |
* | Calculate and return the count in vmspace_swap_count as a vm_offset_t | brucec | 2011-02-23 | 1 | -1/+1 |
* | Introduce vm_fault_hold() and use it to (1) eliminate a long-standing race | alc | 2010-12-20 | 1 | -0/+1 |
* | Fix a long standing (from the original 4.4BSD lite sources) race between | mlaier | 2010-12-09 | 1 | -0/+5 |
* | Replace pointer to "struct uidinfo" with pointer to "struct ucred" | trasz | 2010-12-02 | 1 | -1/+1 |
* | - Make 'vm_refcnt' volatile so that compilers won't be tempted to treat | jhb | 2010-10-21 | 1 | -1/+1 |
* | Make refinements to r212824. In particular, don't make | alc | 2010-09-19 | 1 | -4/+3 |
* | Adopt the deferring of object deallocation for the deleted map entries | kib | 2010-09-18 | 1 | -1/+3 |
* | o) Add a VM find-space option, VMFS_TLB_ALIGNED_SPACE, which searches the | jmallett | 2010-04-18 | 1 | -0/+3 |
* | Make _vm_map_init() the one place where the vm map's pmap field is | alc | 2010-04-03 | 1 | -1/+1 |
* | Simplify the invocation of vm_fault(). Specifically, eliminate the flag | alc | 2009-11-27 | 1 | -1/+0 |
* | Simplify both the invocation and the implementation of vm_fault() for wiring | alc | 2009-11-18 | 1 | -2/+0 |
* | Implement global and per-uid accounting of the anonymous memory. Add | kib | 2009-06-23 | 1 | -0/+3 |
* | When vm_map_wire(9) is allowed to skip holes in the wired region, skip | kib | 2009-04-10 | 1 | -0/+2 |
* | Revert the addition of the freelist argument for the vm_map_delete() | kib | 2009-02-24 | 1 | -3/+2 |
* | Do not call vm_object_deallocate() from vm_map_delete(), because we | kib | 2009-02-08 | 1 | -1/+3 |
* | Resurrect shared map locks allowing greater concurrency during some map | alc | 2009-01-01 | 1 | -0/+1 |
* | Update or eliminate some stale comments. | alc | 2008-12-31 | 1 | -9/+1 |
* | Generalize vm_map_find(9)'s parameter "find_space". Specifically, add | alc | 2008-05-10 | 1 | -1/+9 |
* | vm_map_fixed(), unlike vm_map_find(), does not update "addr", so it can be | alc | 2008-04-28 | 1 | -1/+2 |
* | Make the vm_pmap field of struct vmspace the last field in the | marcel | 2008-03-01 | 1 | -1/+6 |
* | Change unused 'user_wait' argument to 'timo' argument, which will be | pjd | 2007-11-07 | 1 | -1/+1 |
* | Do not drop vm_map lock between doing vm_map_remove() and vm_map_insert(). | kib | 2007-08-20 | 1 | -0/+1 |
* | Close race between vmspace_exitfree() and exit1() and races between | tegge | 2006-05-29 | 1 | -1/+0 |
* | Eliminate unneeded preallocation at initialization. | alc | 2005-12-03 | 1 | -1/+0 |
* | /* -> /*- for license, minor formatting changes | imp | 2005-01-07 | 1 | -1/+1 |
* | Replace the linear search in vm_map_findspace() with an O(log n) | alc | 2004-08-13 | 1 | -1/+2 |
* | The vm map lock is needed in vm_fault() after the page has been found, | tegge | 2004-08-12 | 1 | -1/+2 |
* | Revamp VM map wiring. | green | 2004-08-09 | 1 | -0/+14 |
* | Get rid of another lockmgr(9) consumer by using sx locks for the user | mux | 2004-07-30 | 1 | -2/+2 |
* | Simplify vmspace initialization. The bcopy() of fields from the old | alc | 2004-07-24 | 1 | -3/+0 |
* | Micro-optimize vmspace for 64-bit architectures: Colocate vm_refcnt and | alc | 2004-07-06 | 1 | -1/+1 |