| Commit message (Expand) | Author | Age | Files | Lines |
* | Typo in comment. | kib | 2016-01-24 | 1 | -1/+1 |
* | Various cleanups to the main function for AIO kernel processes: | jhb | 2016-01-19 | 1 | -0/+45 |
* | Remove a check which caused spurious SIGSEGV on usermode access to the | kib | 2015-09-09 | 1 | -10/+4 |
* | Do not pretend that vm_fault(9) supports unwiring the address. Rename | kib | 2015-07-30 | 1 | -1/+1 |
* | Account for the main process stack being one page below the highest | kib | 2015-07-02 | 1 | -1/+2 |
* | Implement lockless resource limits. | mjg | 2015-06-10 | 1 | -9/+5 |
* | Add kern.racct.enable tunable and RACCT_DISABLED config option. | trasz | 2015-04-29 | 1 | -23/+32 |
* | vmspace_release() may sleep if the last reference is being released, | rstone | 2015-01-24 | 1 | -0/+3 |
* | vm_map_pmap_enter() and pmap_enter_object() are currently not aware of | kib | 2014-09-23 | 1 | -1/+8 |
* | Oops. vm_map_simplify_entry() is used by mac_proc_vm_revoke_recurse(), so | alc | 2014-09-08 | 1 | -2/+1 |
* | Make two functions static and eliminate an unused #define. | alc | 2014-09-08 | 1 | -2/+5 |
* | Rewrite a loop in vm_map_wire() so that gcc doesn't think that the variable | alc | 2014-08-02 | 1 | -3/+3 |
* | Handle wiring failures in vm_map_wire() with the new functions | alc | 2014-08-02 | 1 | -19/+67 |
* | When unwiring a region of an address space, do not assume that the | alc | 2014-07-26 | 1 | -25/+17 |
* | Pull in r267961 and r267973 again. Fix for issues reported will follow. | hselasky | 2014-06-28 | 1 | -2/+1 |
* | Revert r267961, r267973: | gjb | 2014-06-27 | 1 | -1/+2 |
* | Extend the meaning of the CTLFLAG_TUN flag to automatically check if | hselasky | 2014-06-27 | 1 | -2/+1 |
* | Delay the call to crhold() in vm_map_insert() until we know that we won't | alc | 2014-06-26 | 1 | -9/+4 |
* | Now that vm_map_insert() sets MAP_ENTRY_GROWS_{DOWN,UP} on the stack entries | alc | 2014-06-25 | 1 | -6/+7 |
* | Use correct names for the flags. MAP_ENTRY_GROWS_* have the same | kib | 2014-06-23 | 1 | -1/+1 |
* | Assert that the new entry is inserted into the right location in the | kib | 2014-06-20 | 1 | -0/+9 |
* | Eliminate a pointless call to vm_map_clip_start() from vm_map_growstack(). | alc | 2014-06-19 | 1 | -3/+0 |
* | When MAP_STACK_GROWS_{DOWN,UP} are passed to vm_map_insert() set the | alc | 2014-06-19 | 1 | -10/+14 |
* | Add MAP_EXCL flag for mmap(2). It should be combined with MAP_FIXED, | kib | 2014-06-19 | 1 | -1/+2 |
* | Tidy up the early parts of vm_map_insert(), in particular, simplify one | alc | 2014-06-16 | 1 | -24/+10 |
* | One of the intentions behind r267254 was that the global variable "sgrowsiz" | alc | 2014-06-15 | 1 | -1/+1 |
* | Make mmap(MAP_STACK) search for the available address space, similar | kib | 2014-06-09 | 1 | -34/+59 |
* | Add a page size field to struct vm_page. Increase the page size field when | alc | 2014-06-07 | 1 | -13/+26 |
* | Remove the assert which can be triggered by the userspace. The | kib | 2014-05-28 | 1 | -4/+1 |
* | When exec_new_vmspace() decides that current vmspace cannot be reused | kib | 2014-05-20 | 1 | -1/+3 |
* | On a fork allow read-only wired pages to be copy-on-write shared between the | alc | 2014-05-13 | 1 | -5/+5 |
* | With the new-and-improved vm_fault_copy_entry() (r265843), we can always | alc | 2014-05-11 | 1 | -2/+9 |
* | About 9% of the pmap_protect() calls being performed by vm_map_copy_entry() | alc | 2014-05-10 | 1 | -1/+2 |
* | When printing the map with the ddb 'show procvm' command, do not dump | kib | 2014-05-10 | 1 | -1/+1 |
* | Print the entry address in addition to the object. The variable is | kib | 2014-05-10 | 1 | -1/+2 |
* | Rename global cnt to vm_cnt to avoid shadowing. | bdrewery | 2014-03-22 | 1 | -1/+1 |
* | Initialize vm_map_entry member wiring_thread on the map entry creation. | kib | 2014-03-21 | 1 | -0/+1 |
* | Do not coalesce stack entry, vm_map_stack() asserts that the requested | kib | 2013-12-27 | 1 | -1/+1 |
* | Vm map code performs clipping when map entry covers region which is | kib | 2013-11-20 | 1 | -0/+15 |
* | Add assertions to cover all places in the wiring and unwiring code | kib | 2013-11-20 | 1 | -1/+9 |
* | Both the vm_map and vmspace zones are defined as "no free". So, there is no | alc | 2013-09-22 | 1 | -23/+2 |
* | Merge the following changes from projects/bhyve_npt_pmap: | neel | 2013-09-20 | 1 | -5/+12 |
* | Add a mmap flag (MAP_32BIT) on 64-bit platforms to request that a mapping use | jhb | 2013-09-09 | 1 | -3/+4 |
* | Significantly reduce the cost, i.e., run time, of calls to madvise(..., | alc | 2013-08-29 | 1 | -2/+19 |
* | Revert r254501. Instead, reuse the type stability of the struct pmap | kib | 2013-08-22 | 1 | -0/+1 |
* | Add new mmap(2) flags to permit applications to request specific virtual | jhb | 2013-08-16 | 1 | -5/+16 |
* | Replace kernel virtual address space allocation with vmem. This provides | jeff | 2013-08-07 | 1 | -24/+7 |
* | Clear entire map structure including locks so that the | kientzle | 2013-07-25 | 1 | -2/+1 |
* | Be more aggressive in using superpages in all mappings of objects: | jhb | 2013-07-19 | 1 | -5/+15 |
* | The mlockall() or VM_MAP_WIRE_HOLESOK does not interact properly with | kib | 2013-07-11 | 1 | -11/+51 |