| Commit message (Expand) | Author | Age | Files | Lines |
* | - Add a new UMA API: uma_zcache_create(). This makes a zone without any | jeff | 2013-06-17 | 3 | -216/+293 |
* | - Convert the slab free item list from a linked array of indices to a | jeff | 2013-06-13 | 3 | -295/+149 |
* | Revise the interface between vm_object_madvise() and vm_page_dontneed() so | alc | 2013-06-10 | 3 | -31/+30 |
* | Make sys_mlock() function just a wrapper around vm_mlock() function | glebius | 2013-06-08 | 2 | -5/+11 |
* | Complete r251452: | attilio | 2013-06-06 | 2 | -4/+7 |
* | In vm_object_split(), busy and consequently unbusy the pages only when | attilio | 2013-06-04 | 1 | -3/+4 |
* | Update a comment. | alc | 2013-06-04 | 1 | -2/+2 |
* | Relax the object locking in vm_pageout_map_deactivate_pages() and | alc | 2013-06-04 | 1 | -11/+11 |
* | Remove irrelevant comments. | kib | 2013-06-03 | 1 | -7/+0 |
* | Require that the page lock is held, instead of the object lock, when | alc | 2013-06-03 | 2 | -7/+16 |
* | Now that access to the page's "act_count" field is synchronized by the page | alc | 2013-06-01 | 1 | -1/+0 |
* | Simplify the definition of vm_page_lock_assert(). There is no compelling | alc | 2013-05-31 | 1 | -7/+6 |
* | After the object lock was dropped, the object' reference count could | kib | 2013-05-30 | 1 | -5/+5 |
* | Remove the capitalization in the assertion message. Print the address | kib | 2013-05-30 | 1 | -1/+1 |
* | o Change the locking scheme for swp_bcount. | attilio | 2013-05-28 | 1 | -5/+7 |
* | Acquire read lock on the src object for vm_fault_copy_entry(). | attilio | 2013-05-22 | 1 | -4/+4 |
* | o Relax locking assertions for vm_page_find_least() | attilio | 2013-05-21 | 3 | -8/+18 |
* | Add ddb command 'show pginfo' which provides useful information about | kib | 2013-05-21 | 1 | -0/+23 |
* | Relax the object locking in vm_fault_prefault(). A read lock suffices. | alc | 2013-05-17 | 1 | -5/+5 |
* | Relax the object locking assertion in vm_page_lookup(). Now that a radix | alc | 2013-05-17 | 1 | -1/+1 |
* | o Add accessor functions to add and remove pages from a specific | attilio | 2013-05-13 | 2 | -198/+139 |
* | Bandaid for compiling with gcc, which happens to be the default compiler | peter | 2013-05-13 | 1 | -0/+1 |
* | Refactor vm_page_alloc()'s interactions with vm_reserv_alloc_page() and | alc | 2013-05-12 | 3 | -25/+63 |
* | To reduce the amount of arithmetic performed in the various radix tree | alc | 2013-05-11 | 1 | -13/+12 |
* | Fix-up r250338 by completing the removal of VM_NDOMAIN in favor of | attilio | 2013-05-08 | 1 | -2/+2 |
* | Rename VM_NDOMAIN into MAXMEMDOM and move it into machine/param.h in | attilio | 2013-05-07 | 1 | -10/+10 |
* | Remove a redundant call to panic() from vm_radix_keydiff(). The assertion | alc | 2013-05-07 | 1 | -4/+2 |
* | Optimize vm_radix_lookup_ge() and vm_radix_lookup_le(). Specifically, | alc | 2013-05-04 | 1 | -103/+75 |
* | Fix two bugs in the current NUMA-aware allocation code: | jhb | 2013-05-03 | 1 | -6/+48 |
* | Add a hint suggesting why tmpfs does not need a special case there. | kib | 2013-05-02 | 1 | -1/+1 |
* | Rework the handling of the tmpfs node backing swap object and tmpfs | kib | 2013-04-28 | 2 | -1/+34 |
* | Make vm_object_page_clean() and vm_mmap_vnode() tolerate the vnode' | kib | 2013-04-28 | 2 | -3/+15 |
* | Assert that the object type for the vnode' non-NULL v_object, passed | kib | 2013-04-28 | 1 | -0/+6 |
* | Convert panic() into KASSERT(). | kib | 2013-04-28 | 1 | -2/+1 |
* | Eliminate an unneeded call to vm_radix_trimkey() from vm_radix_lookup_le(). | alc | 2013-04-28 | 1 | -1/+0 |
* | Avoid some lookup restarts in vm_radix_lookup_{ge,le}(). | alc | 2013-04-27 | 1 | -22/+24 |
* | Panic if UMA_ZONE_PCPU is created at early stages of boot, when mp_ncpus | glebius | 2013-04-22 | 1 | -0/+1 |
* | Simplify vm_radix_{add,dec}lev(). | alc | 2013-04-22 | 1 | -8/+13 |
* | When calculating the number of reserved nodes, discount the pages that will | alc | 2013-04-18 | 1 | -2/+9 |
* | Although we perform path compression to reduce the height of the trie and | alc | 2013-04-15 | 1 | -26/+32 |
* | Although we perform path compression to reduce the height of the trie and | alc | 2013-04-12 | 1 | -20/+33 |
* | Convert UMA code to C99 uintXX_t types. | glebius | 2013-04-09 | 4 | -97/+97 |
* | Swap us_freecount and us_flags, achieving same structure size | glebius | 2013-04-09 | 1 | -2/+2 |
* | Since now we support 256 items per slab, we need more bits | glebius | 2013-04-09 | 1 | -1/+1 |
* | Fix KASSERTs: maximum number of items per slab is 256. | glebius | 2013-04-09 | 1 | -3/+3 |
* | Fix the assertions for the state of the object under the map entry | kib | 2013-04-09 | 1 | -6/+16 |
* | The per-page act_count can be made very-easily protected by the | attilio | 2013-04-08 | 2 | -5/+5 |
* | Merge from projects/counters: UMA_ZONE_PCPU zones. | glebius | 2013-04-08 | 3 | -38/+68 |
* | Micro-optimize the order of struct vm_radix_node's fields. Specifically, | alc | 2013-04-07 | 1 | -2/+2 |
* | Prepare to replace the buf splay with a trie: | jeff | 2013-04-06 | 1 | -20/+4 |