aboutsummaryrefslogtreecommitdiff
path: root/sys/vm/vm_radix.c
Commit message (Expand)AuthorAgeFilesLines
* Pull in r267961 and r267973 again. Fix for issues reported will follow.Hans Petter Selasky2014-06-281-1/+1
* Revert r267961, r267973:Glen Barber2014-06-271-1/+1
* Extend the meaning of the CTLFLAG_TUN flag to automatically check ifHans Petter Selasky2014-06-271-1/+1
* Rename global cnt to vm_cnt to avoid shadowing.Bryan Drewery2014-03-221-1/+1
* Eliminate a redundant parameter to vm_radix_replace().Alan Cox2013-12-081-7/+5
* Addendum to r254141: The call to vm_radix_insert() in vm_page_cache() canAlan Cox2013-08-231-0/+15
* On all the architectures, avoid to preallocate the physical memoryAttilio Rao2013-08-091-48/+126
* To reduce the amount of arithmetic performed in the various radix treeAlan Cox2013-05-111-13/+12
* Remove a redundant call to panic() from vm_radix_keydiff(). The assertionAlan Cox2013-05-071-4/+2
* Optimize vm_radix_lookup_ge() and vm_radix_lookup_le(). Specifically,Alan Cox2013-05-041-103/+75
* Eliminate an unneeded call to vm_radix_trimkey() from vm_radix_lookup_le().Alan Cox2013-04-281-1/+0
* Avoid some lookup restarts in vm_radix_lookup_{ge,le}().Alan Cox2013-04-271-22/+24
* Simplify vm_radix_{add,dec}lev().Alan Cox2013-04-221-8/+13
* When calculating the number of reserved nodes, discount the pages that willAlan Cox2013-04-181-2/+9
* Although we perform path compression to reduce the height of the trie andAlan Cox2013-04-151-26/+32
* Although we perform path compression to reduce the height of the trie andAlan Cox2013-04-121-20/+33
* Micro-optimize the order of struct vm_radix_node's fields. Specifically,Alan Cox2013-04-071-2/+2
* Simplify vm_radix_keybarr().Alan Cox2013-04-061-3/+1
* Simplify vm_radix_insert().Alan Cox2013-04-061-29/+8
* Replace the remaining uses of vm_radix_node_page() by vm_radix_isleaf() andAlan Cox2013-04-031-65/+67
* Introduce vm_radix_isleaf() and use it in a couple places. As compared toAlan Cox2013-03-261-2/+12
* Micro-optimize the control flow in a few places. Eliminate a panic callAlan Cox2013-03-241-8/+6
* Sync back vmcontention branch into HEAD:Attilio Rao2013-03-181-0/+777