| Commit message (Expand) | Author | Age | Files | Lines |
* | If vm_page_grab() allocates a new page, the page is not inserted into | kib | 2014-08-13 | 1 | -0/+1 |
* | Adapt vm_page_aflag_set(PGA_WRITEABLE) to the locking of | kib | 2014-08-09 | 2 | -11/+27 |
* | Change pmap_enter(9) interface to take flags parameter and superpage | kib | 2014-08-08 | 3 | -9/+19 |
* | The vm_pager_page_unswapped() pager op is only implemented for the | kib | 2014-08-06 | 1 | -1/+1 |
* | Add wrappers to assert that vm object is unlocked and for try upgrade. | kib | 2014-08-06 | 1 | -0/+4 |
* | vm_phys: improve robustness of fictitious ranges | royger | 2014-08-05 | 1 | -17/+103 |
* | Retire pmap_change_wiring(). We have never used it to wire virtual pages. | alc | 2014-08-03 | 1 | -1/+0 |
* | 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 | 3 | -83/+67 |
* | When unwiring a region of an address space, do not assume that the | alc | 2014-07-26 | 5 | -27/+93 |
* | Correct assertion. The shadowing object cannot be tmpfs vm object, | kib | 2014-07-24 | 1 | -2/+4 |
* | The OBJ_TMPFS flag of vm_object means that there is unreclaimed tmpfs | kib | 2014-07-14 | 2 | -4/+5 |
* | vm_phys: remove limitation on number of fictitious regions | royger | 2014-07-09 | 1 | -58/+101 |
* | Remove ia64. | marcel | 2014-07-07 | 3 | -11/+2 |
* | Introduce pmap_unwire(). It will replace pmap_change_wiring(). There are | alc | 2014-07-06 | 1 | -0/+1 |
* | Pull in r267961 and r267973 again. Fix for issues reported will follow. | hselasky | 2014-06-28 | 9 | -20/+11 |
* | Revert r267961, r267973: | gjb | 2014-06-27 | 9 | -11/+20 |
* | Extend the meaning of the CTLFLAG_TUN flag to automatically check if | hselasky | 2014-06-27 | 9 | -20/+11 |
* | 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 | 3 | -1/+7 |
* | - Modify vm_page_unwire() and vm_page_enqueue() to directly accept | attilio | 2014-06-16 | 6 | -21/+25 |
* | 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 |
* | Introduce new "256 Bucket" zone to split requests and reduce congestion | mav | 2014-06-12 | 1 | -1/+2 |
* | Allocating new bucket for bucket zone, never take it from the zone itself, | mav | 2014-06-12 | 1 | -0/+2 |
* | Correct a bug in the management of the population map on big-endian | alc | 2014-06-11 | 1 | -8/+48 |
* | Make mmap(MAP_STACK) search for the available address space, similar | kib | 2014-06-09 | 2 | -40/+68 |
* | Add a page size field to struct vm_page. Increase the page size field when | alc | 2014-06-07 | 4 | -14/+62 |
* | Remove the assert which can be triggered by the userspace. The | kib | 2014-05-28 | 1 | -4/+1 |
* | There is no reason to perform the pmap_remove() on the kernel pmap while | alc | 2014-05-23 | 1 | -1/+1 |
* | Remove redundand loop. The inner goto restarts the whole page | kib | 2014-05-21 | 1 | -12/+10 |
* | 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 |
* | Fix locking. The dst_object must remain locked on the retry of the | kib | 2014-05-11 | 1 | -0/+1 |
* | 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 |
* | For the upgrade case in vm_fault_copy_entry(), when the entry does not | kib | 2014-05-10 | 1 | -40/+67 |
* | 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 |
* | msync(2) must return ENOMEM and not EINVAL when the address is outside the | pho | 2014-05-07 | 1 | -1/+1 |
* | Prior to r254304, a separate function, vm_pageout_page_stats(), was used to | alc | 2014-05-06 | 1 | -3/+5 |
* | For the VM_PHYSSEG_DENSE case, checking the requested range to fall | kib | 2014-04-29 | 1 | -1/+3 |
* | When vm_fault_copy_entry() is called from vm_map_protect() for a wired | kib | 2014-04-27 | 1 | -8/+15 |
* | Add sysctl OIDs showing the actual size and capacity of the swap zone. | des | 2014-04-26 | 1 | -3/+11 |
* | Rename global cnt to vm_cnt to avoid shadowing. | bdrewery | 2014-03-22 | 15 | -103/+104 |