| Commit message (Expand) | Author | Age | Files | Lines |
* | Remove the support for using non-mpsafe filesystem modules. | kib | 2012-10-22 | 5 | -77/+5 |
* | Print flags as hex instead of an integer. | eadler | 2012-10-22 | 1 | -3/+3 |
* | Move vm_page_requeue() to the only file that uses it. | alc | 2012-10-13 | 3 | -34/+32 |
* | Eliminate the conditional for releasing the page queues lock in | alc | 2012-10-13 | 3 | -7/+1 |
* | Tidy up a bit: | alc | 2012-10-03 | 1 | -37/+25 |
* | Fix the mis-handling of the VV_TEXT on the nullfs vnodes. | kib | 2012-09-28 | 2 | -2/+2 |
* | Address a race condition that was introduced in r238212. Unless the page | alc | 2012-09-23 | 1 | -1/+1 |
* | Plug the accounting leak for the wired pages when msync(MS_INVALIDATE) | kib | 2012-09-20 | 1 | -2/+7 |
* | If caller specifies UMA_ZONE_OFFPAGE explicitly, then do not waste memory | glebius | 2012-09-18 | 1 | -1/+3 |
* | Correct double "the the" | eadler | 2012-09-14 | 1 | -1/+1 |
* | - Simplify VM code by using vmspace_wired_count() for counting wired | zont | 2012-09-05 | 1 | -4/+3 |
* | Whitespace cleanup. | des | 2012-09-05 | 1 | -76/+76 |
* | No memory barrier is required. This was pointed out by kib@ a while ago, | des | 2012-09-04 | 1 | -2/+2 |
* | Revert previous commit, which was performed in the wrong tree. | des | 2012-09-04 | 1 | -89/+82 |
* | No memory barrier is required. This was pointed out by kib@ a while ago, | des | 2012-09-04 | 1 | -82/+89 |
* | - After r240026 sgrowsiz should be used in a safer maner. | zont | 2012-09-03 | 1 | -4/+7 |
* | - Remove accounting of locked memory from vsunlock(9) that I missed in r239818. | zont | 2012-08-30 | 1 | -7/+0 |
* | - Don't take an account of locked memory for current process in vslock(9). | zont | 2012-08-29 | 1 | -21/+0 |
* | Typo in previous change: print half the theoretical maximum as maximum | pluknet | 2012-08-27 | 1 | -1/+1 |
* | Fix function name in keg_cachespread_init() assert. | glebius | 2012-08-26 | 1 | -1/+1 |
* | - When running out of swzone, instead of spewing an error message every | des | 2012-08-16 | 1 | -1/+33 |
* | For old mmap syscall, when executing on amd64 or ia64, enforce the | kib | 2012-08-14 | 1 | -0/+7 |
* | Adjust the r205536, by allowing a non-zero offset for anonymous | kib | 2012-08-14 | 1 | -5/+17 |
* | Do not leave invalid pages in the object after the short read for a | kib | 2012-08-14 | 3 | -4/+10 |
* | Never sleep on busy pages in vm_pageout_launder(), always skip them. Long | alc | 2012-08-07 | 1 | -12/+3 |
* | After the PHYS_TO_VM_PAGE() function was de-inlined, the main reason | kib | 2012-08-05 | 4 | -2/+3 |
* | Reduce code duplication and exposure of direct access to struct | kib | 2012-08-04 | 3 | -31/+36 |
* | Inline vm_page_aflags_clear() and vm_page_aflags_set(). | alc | 2012-08-03 | 2 | -64/+79 |
* | Eliminate an unneeded declaration. (I should have removed this as part | alc | 2012-07-30 | 1 | -1/+0 |
* | Do not requeue held page or page for which locking failed, just leave | kib | 2012-07-26 | 1 | -21/+35 |
* | Addendum to r238604. If the inactive queue scan isn't restarted, then | alc | 2012-07-24 | 1 | -4/+3 |
* | Do not restart scan of the inactive queue when non-inactive page is | kib | 2012-07-18 | 1 | -5/+1 |
* | Move what remains of vm/vm_contig.c into vm/vm_pageout.c, where similar | alc | 2012-07-18 | 4 | -238/+140 |
* | Correct vm_page_alloc_contig()'s implementation of VM_ALLOC_NODUMP. | alc | 2012-07-17 | 1 | -1/+1 |
* | Various improvements to vm_contig_grow_cache(). Most notably, even when | alc | 2012-07-16 | 1 | -22/+31 |
* | Correct an off-by-one error in vm_reserv_alloc_contig() that resulted in | alc | 2012-07-15 | 1 | -1/+1 |
* | Fix a bug with memguard(9) on 32-bit architectures without a | mdf | 2012-07-15 | 3 | -16/+16 |
* | If vm_contig_grow_cache() is allowed to sleep, then invoke the vm_lowmem | alc | 2012-07-14 | 1 | -0/+15 |
* | Move kmem_alloc_{attr,contig}() to vm/vm_kern.c, where similarly named | alc | 2012-07-14 | 2 | -144/+142 |
* | Document the object type movements, related to swp_pager_copy(), | attilio | 2012-07-11 | 1 | -0/+9 |
* | Avoid vm page queues lock leak after r238212. | kib | 2012-07-08 | 1 | -4/+2 |
* | Drop page queues mutex on each iteration of vm_pageout_scan over the | kib | 2012-07-07 | 1 | -23/+38 |
* | Add missing sleep stat increase | eadler | 2012-07-07 | 1 | -0/+1 |
* | Style. | kib | 2012-07-06 | 1 | -3/+3 |
* | Honor db_pager_quit in 'show uma' and 'show malloc'. | jhb | 2012-07-02 | 1 | -0/+2 |
* | Add new pmap layer locks to the predefined lock order. Change the names | alc | 2012-06-27 | 2 | -9/+6 |
* | - Add a comment explaining the locking of the cached pages pool held | attilio | 2012-06-22 | 1 | -1/+14 |
* | Selectively inline vm_page_dirty(). | alc | 2012-06-20 | 2 | -3/+28 |
* | Move the per-thread deferred user map entries list into a private list | jhb | 2012-06-20 | 1 | -3/+6 |
* | Do a more targeted check on the page cache and avoid to check the cache | attilio | 2012-06-16 | 1 | -1/+1 |