| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Switch atomic uint64_ts in arena_stats_t to C11 atomics | David Goldblatt | 2017-03-14 | 1 | -21/+39 |
|
|
* | Convert arena_t's purging field to non-atomic bool. | Jason Evans | 2017-03-10 | 1 | -4/+5 |
|
|
* | Implement per-CPU arena. | Qi Wang | 2017-03-09 | 1 | -0/+10 |
|
|
* | Fix arena_prefork lock rank order for witness. | Qi Wang | 2017-03-09 | 1 | -6/+16 |
|
|
* | Perform delayed coalescing prior to purging. | Jason Evans | 2017-03-07 | 1 | -8/+20 |
|
|
* | Change arena to use the atomic functions for ssize_t instead of the union str... | David Goldblatt | 2017-03-07 | 1 | -6/+2 |
|
|
* | Optimize malloc_large_stats_t maintenance. | Jason Evans | 2017-03-04 | 1 | -29/+6 |
|
|
* | Immediately purge cached extents if decay_time is 0. | Jason Evans | 2017-03-03 | 1 | -37/+32 |
|
|
* | Convert arena_decay_t's time to be atomically synchronized. | Jason Evans | 2017-03-03 | 1 | -13/+22 |
|
|
* | Fix {allocated,nmalloc,ndalloc,nrequests}_large stats regression. | Jason Evans | 2017-02-27 | 1 | -14/+2 |
|
|
* | Remove obsolete arena_maybe_purge() call. | Jason Evans | 2017-02-21 | 1 | -4/+0 |
|
|
* | Disable coalescing of cached extents. | Jason Evans | 2017-02-17 | 1 | -2/+3 |
|
|
* | Fix arena->stats.mapped accounting. | Jason Evans | 2017-02-16 | 1 | -26/+46 |
|
|
* | Synchronize arena->decay with arena->decay.mtx. | Jason Evans | 2017-02-16 | 1 | -25/+31 |
|
|
* | Derive {allocated,nmalloc,ndalloc,nrequests}_large stats. | Jason Evans | 2017-02-16 | 1 | -22/+23 |
|
|
* | Synchronize arena->tcache_ql with arena->tcache_ql_mtx. | Jason Evans | 2017-02-16 | 1 | -0/+15 |
|
|
* | Convert arena->stats synchronization to atomics. | Jason Evans | 2017-02-16 | 1 | -198/+289 |
|
|
* | Convert arena->prof_accumbytes synchronization to atomics. | Jason Evans | 2017-02-16 | 1 | -14/+4 |
|
|
* | Convert arena->dss_prec synchronization to atomics. | Jason Evans | 2017-02-16 | 1 | -12/+5 |
|
|
* | Disentangle arena and extent locking. | Jason Evans | 2017-02-02 | 1 | -245/+132 |
|
|
* | Replace tabs following #define with spaces. | Jason Evans | 2017-01-21 | 1 | -10/+10 |
|
|
* | Remove extraneous parens around return arguments. | Jason Evans | 2017-01-21 | 1 | -62/+62 |
|
|
* | Update brace style. | Jason Evans | 2017-01-21 | 1 | -267/+249 |
|
|
* | Added stats about number of bytes cached in tcache currently. | Qi Wang | 2017-01-18 | 1 | -0/+15 |
|
|
* | Formatting/comment fixes. | Jason Evans | 2017-01-17 | 1 | -2/+2 |
|
|
* | Remove leading blank lines from function bodies. | Jason Evans | 2017-01-13 | 1 | -45/+0 |
|
|
* | Implement arena.<i>.destroy . | Jason Evans | 2017-01-07 | 1 | -0/+66 |
|
|
* | Fix locking in arena_dirty_count(). | Jason Evans | 2017-01-07 | 1 | -1/+3 |
|
|
* | Fix allocated_large stats with respect to sampled small allocations. | Jason Evans | 2017-01-07 | 1 | -6/+18 |
|
|
* | Fix arena_large_reset_stats_cancel(). | Jason Evans | 2017-01-05 | 1 | -1/+1 |
|
|
* | Implement per arena base allocators. | Jason Evans | 2016-12-27 | 1 | -13/+35 |
|
|
* | Rename arena_decay_t's ndirty to nunpurged. | Jason Evans | 2016-12-27 | 1 | -4/+4 |
|
|
* | Use exponential series to size extents. | Jason Evans | 2016-12-27 | 1 | -0/+3 |
|
|
* | Simplify arena_slab_regind(). | Jason Evans | 2016-12-23 | 1 | -59/+26 |
|
|
* | Remove size_t -> unsigned -> size_t conversion. | Maks Naumov | 2016-11-16 | 1 | -2/+1 |
|
|
* | Add extent serial numbers. | Jason Evans | 2016-11-15 | 1 | -9/+18 |
|
|
* | Fix arena_reset() crashing bug. | Jason Evans | 2016-11-15 | 1 | -41/+42 |
|
|
* | Rename atomic_*_{uint32,uint64,u}() to atomic_*_{u32,u64,zu}(). | Jason Evans | 2016-11-07 | 1 | -2/+2 |
|
|
* | Refactor prng to not use 64-bit atomics on 32-bit platforms. | Jason Evans | 2016-11-07 | 1 | -3/+3 |
|
|
* | Fix psz/pind edge cases. | Jason Evans | 2016-11-04 | 1 | -1/+1 |
|
|
* | Fix extent_alloc_cache[_locked]() to support decommitted allocation. | Jason Evans | 2016-11-04 | 1 | -5/+6 |
|
|
* | Make dss operations lockless. | Jason Evans | 2016-10-13 | 1 | -1/+1 |
|
|
* | Remove all vestiges of chunks. | Jason Evans | 2016-10-12 | 1 | -13/+0 |
|
|
* | Remove ratio-based purging. | Jason Evans | 2016-10-12 | 1 | -137/+15 |
|
|
* | Fix and simplify decay-based purging. | Jason Evans | 2016-10-11 | 1 | -51/+58 |
|
|
* | Do not advance decay epoch when time goes backwards. | Jason Evans | 2016-10-11 | 1 | -4/+17 |
|
|
* | Refactor arena->decay_* into arena->decay.* (arena_decay_t). | Jason Evans | 2016-10-11 | 1 | -38/+38 |
|
|
* | Fix size class overflow bugs. | Jason Evans | 2016-10-03 | 1 | -2/+2 |
|
|
* | Add various mutex ownership assertions. | Jason Evans | 2016-09-23 | 1 | -0/+2 |
|
|
* | Protect extents_dirty access with extents_mtx. | Jason Evans | 2016-09-22 | 1 | -9/+20 |
|
|