| Commit message (Expand) | Author | Age | Files | Lines |
* | Avoid sign extension of value passed to kva_alloc from uma_zone_reserve_kva | zbb | 2015-08-10 | 1 | -2/+2 |
* | Huge cleanup of random(4) code. | markm | 2015-06-30 | 1 | -32/+4 |
* | If INVARIANTS is specified, add ctor/dtor to junk memory if they are | jmg | 2015-06-25 | 1 | -0/+14 |
* | CALLOUT_MPSAFE has lost its meaning since r141428, i.e., for more than ten | jkim | 2015-05-22 | 1 | -1/+1 |
* | The vmem callback to reclaim kmem arena address space on low or | kib | 2015-05-09 | 1 | -4/+38 |
* | Eliminate an unused variable. | alc | 2015-04-20 | 1 | -2/+1 |
* | Rework r281162. Indeed, the flexible array member is preferable here. | dchagin | 2015-04-12 | 1 | -1/+1 |
* | UMA zone limit can be lowered, so remove protection against from | glebius | 2015-04-10 | 1 | -5/+2 |
* | Properly calculate "UMA Zones" per cpu cache size. Avoid allocating | dchagin | 2015-04-06 | 1 | -1/+1 |
* | Fix wrong kassert msg in uma. | dchagin | 2015-04-05 | 1 | -2/+2 |
* | Fix integer truncation bug in malloc(9) | rstone | 2015-04-01 | 1 | -9/+9 |
* | Set the SBUF_INCLUDENUL flag in sbuf_new_for_sysctl() so that sysctl | ian | 2015-03-14 | 1 | -0/+1 |
* | Eliminate a stale debug message. The per-CPU cache locks were replaced | alc | 2014-12-31 | 1 | -3/+0 |
* | Provide mutual exclusion between zone allocation/destruction and | kib | 2014-11-30 | 1 | -2/+31 |
* | This is the much-discussed major upgrade to the random(4) device, known to yo... | markm | 2014-10-30 | 1 | -0/+35 |
* | Change the UMA mutex into a rwlock | bryanv | 2014-10-05 | 1 | -20/+20 |
* | Remove stray uma_mtx lock/unlock in zone_drain_wait() | bryanv | 2014-10-05 | 1 | -2/+0 |
* | 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 |
* | - Modify vm_page_unwire() and vm_page_enqueue() to directly accept | attilio | 2014-06-16 | 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 |
* | After r251709, avoid a clang 3.4 warning about an unused static const | dim | 2014-02-14 | 1 | -4/+1 |
* | Make M_ZERO flag work correctly on UMA_ZONE_PCPU zones. | glebius | 2014-02-10 | 1 | -2/+14 |
* | Provide macros that allow easily export uma(9) zone limits and | glebius | 2014-02-07 | 1 | -0/+29 |
* | In keg_dtor(), print out the keg name in the "Freed UMA keg was not empty" | rodrigc | 2013-11-29 | 1 | -1/+2 |
* | - Add bucket size column to `show uma` DDB command. | mav | 2013-11-28 | 1 | -5/+34 |
* | Make UMA to not blindly force offpage slab header allocation for large | mav | 2013-11-27 | 1 | -2/+16 |
* | Don't count bucket allocation failures for UMA zones as their own failures. | mav | 2013-11-27 | 1 | -5/+3 |
* | Fix bug introduced at r252226, when udata argument passed to bucket_alloc() | mav | 2013-11-27 | 1 | -3/+4 |
* | When purging per-CPU UMA caches do not return empty buckets into the global | mav | 2013-11-23 | 1 | -4/+16 |
* | Implement mechanism to safely but slowly purge UMA per-CPU caches. | mav | 2013-11-19 | 1 | -0/+77 |
* | Grow UMA zone bucket size also on lock congestion during item free. | mav | 2013-11-19 | 1 | -2/+13 |
* | Add two new UMA bucket zones to store 3 and 9 items per bucket. | mav | 2013-11-19 | 1 | -0/+2 |
* | Implement soft pressure on UMA cache bucket sizes. | mav | 2013-11-19 | 1 | -0/+9 |
* | Fix bug introduced in rewrite of keg_free_slab in -r251894. | mckusick | 2013-08-31 | 1 | -1/+1 |
* | Different consumers of the struct vm_page abuse pageq member to keep | kib | 2013-08-10 | 1 | -13/+1 |
* | Replace kernel virtual address space allocation with vmem. This provides | jeff | 2013-08-07 | 1 | -6/+6 |
* | Revert r249590 and in case if mp_ncpus isn't initialized use MAXCPU. This | glebius | 2013-07-23 | 1 | -2/+3 |
* | Remove a spurious keg lock acquisition. | davide | 2013-06-28 | 1 | -1/+1 |
* | - Resolve bucket recursion issues by passing a cookie with zone flags | jeff | 2013-06-26 | 1 | -41/+76 |
* | - Add a per-zone lock for zones without kegs. | jeff | 2013-06-20 | 1 | -96/+76 |
* | - Persist the caller's flags in the bucket allocation flags so we don't | jeff | 2013-06-19 | 1 | -1/+1 |
* | Refine UMA bucket allocation to reduce space consumption and improve | jeff | 2013-06-18 | 1 | -302/+261 |
* | - Add a new UMA API: uma_zcache_create(). This makes a zone without any | jeff | 2013-06-17 | 1 | -212/+256 |
* | - Convert the slab free item list from a linked array of indices to a | jeff | 2013-06-13 | 1 | -192/+98 |
* | Panic if UMA_ZONE_PCPU is created at early stages of boot, when mp_ncpus | glebius | 2013-04-22 | 1 | -0/+1 |
* | Convert UMA code to C99 uintXX_t types. | glebius | 2013-04-09 | 1 | -30/+30 |
* | Fix KASSERTs: maximum number of items per slab is 256. | glebius | 2013-04-09 | 1 | -3/+3 |