| Commit message (Expand) | Author | Age | Files | Lines |
* | MFC r320316: | kib | 2017-07-01 | 1 | -4/+4 |
* | MFC r320202: | kib | 2017-06-28 | 1 | -3/+4 |
* | MFC r320201: | kib | 2017-06-28 | 1 | -0/+2 |
* | MFC r320121: | kib | 2017-06-26 | 1 | -3/+1 |
* | MFC r315272, r315370 | delphij | 2017-05-31 | 1 | -0/+29 |
* | MFC r308474, r308691, r309203, r309365, r309703, r309898, r310720, | markj | 2017-05-23 | 1 | -3/+1 |
* | MFC r316686, r316687, r316689 | markj | 2017-04-17 | 1 | -9/+18 |
* | MFC r315281: | kib | 2017-03-28 | 1 | -2/+2 |
* | MFC r313690: | kib | 2017-03-19 | 1 | -2/+2 |
* | MFC 310028: Use db_lookup_proc() in the DDB 'show procvm' command. | jhb | 2017-01-18 | 1 | -1/+1 |
* | MFC r311014: | kib | 2017-01-08 | 1 | -31/+27 |
* | MFC r310821: | kib | 2017-01-06 | 1 | -16/+22 |
* | 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 |
* | sys/vm: minor spelling fixes in comments. | pfg | 2016-05-02 | 1 | -1/+1 |
* | Trim redundant message. | jhb | 2016-04-27 | 1 | -1/+1 |
* | 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 |