| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Fix an extent [de]allocation/[de]registration race. | Jason Evans | 2016-06-06 | 1 | -4/+17 |
|
|
* | Fix extent_alloc_dss() regressions. | Jason Evans | 2016-06-06 | 2 | -22/+31 |
|
|
* | Fix gdump triggering regression. | Jason Evans | 2016-06-06 | 1 | -13/+11 |
|
|
* | Remove a stray memset(), and fix a junk filling test regression. | Jason Evans | 2016-06-06 | 1 | -2/+11 |
|
|
* | Silence a bogus compiler warning. | Jason Evans | 2016-06-06 | 1 | -1/+3 |
|
|
* | Fix locking order reversal in arena_reset(). | Jason Evans | 2016-06-06 | 1 | -5/+13 |
|
|
* | Modify extent hook functions to take an (extent_t *) argument. | Jason Evans | 2016-06-06 | 5 | -204/+173 |
|
|
* | Add rtree lookup path caching. | Jason Evans | 2016-06-06 | 2 | -24/+44 |
|
|
* | Make tsd cleanup functions optional, remove noop cleanup functions. | Jason Evans | 2016-06-06 | 5 | -50/+6 |
|
|
* | Remove some unnecessary locking. | Jason Evans | 2016-06-06 | 1 | -20/+2 |
|
|
* | Fix rallocx() sampling code to not eagerly commit sampler update. | Jason Evans | 2016-06-06 | 1 | -3/+3 |
|
|
* | Miscellaneous s/chunk/extent/ updates. | Jason Evans | 2016-06-06 | 1 | -1/+1 |
|
|
* | Relax opt_lg_chunk clamping constraints. | Jason Evans | 2016-06-06 | 1 | -10/+2 |
|
|
* | Remove obsolete stats.arenas.<i>.metadata.mapped mallctl. | Jason Evans | 2016-06-06 | 3 | -31/+11 |
|
|
* | Rename most remaining *chunk* APIs to *extent*. | Jason Evans | 2016-06-06 | 9 | -1011/+1004 |
|
|
* | s/chunk_lookup/extent_lookup/g, s/chunks_rtree/extents_rtree/g | Jason Evans | 2016-06-06 | 3 | -23/+36 |
|
|
* | s/CHUNK_HOOKS_INITIALIZER/EXTENT_HOOKS_INITIALIZER/g | Jason Evans | 2016-06-06 | 3 | -6/+6 |
|
|
* | Rename chunks_{cached,retained,mtx} to extents_{cached,retained,mtx}. | Jason Evans | 2016-06-06 | 2 | -25/+26 |
|
|
* | Rename chunk_*_t hooks to extent_*_t. | Jason Evans | 2016-06-06 | 1 | -29/+29 |
|
|
* | s/chunk_hook/extent_hook/g | Jason Evans | 2016-06-06 | 6 | -149/+155 |
|
|
* | Rename huge to large. | Jason Evans | 2016-06-06 | 9 | -273/+278 |
|
|
* | Update private symbols. | Jason Evans | 2016-06-06 | 1 | -2/+2 |
|
|
* | Move slabs out of chunks. | Jason Evans | 2016-06-06 | 9 | -1391/+384 |
|
|
* | Improve interval-based profile dump triggering. | Jason Evans | 2016-06-06 | 1 | -0/+14 |
|
|
* | Use huge size class infrastructure for large size classes. | Jason Evans | 2016-06-06 | 11 | -1094/+235 |
|
|
* | Implement cache-oblivious support for huge size classes. | Jason Evans | 2016-06-03 | 6 | -135/+169 |
|
|
* | Allow chunks to not be naturally aligned. | Jason Evans | 2016-06-03 | 6 | -235/+79 |
|
|
* | Remove CHUNK_ADDR2BASE() and CHUNK_ADDR2OFFSET(). | Jason Evans | 2016-06-03 | 3 | -84/+168 |
|
|
* | Add extent_dirty_[gs]et(). | Jason Evans | 2016-06-03 | 4 | -8/+9 |
|
|
* | Convert rtree from per chunk to per page. | Jason Evans | 2016-06-03 | 3 | -48/+92 |
|
|
* | Refactor chunk_purge_wrapper() to take extent argument. | Jason Evans | 2016-06-03 | 3 | -10/+9 |
|
|
* | Refactor chunk_[de]commit_wrapper() to take extent arguments. | Jason Evans | 2016-06-03 | 2 | -12/+12 |
|
|
* | Refactor chunk_dalloc_{cache,wrapper}() to take extent arguments. | Jason Evans | 2016-06-03 | 6 | -182/+138 |
|
|
* | Add/use chunk_split_wrapper(). | Jason Evans | 2016-06-03 | 3 | -484/+528 |
|
|
* | Add/use chunk_merge_wrapper(). | Jason Evans | 2016-06-03 | 3 | -92/+97 |
|
|
* | Add/use chunk_commit_wrapper(). | Jason Evans | 2016-06-03 | 2 | -30/+40 |
|
|
* | Add/use chunk_decommit_wrapper(). | Jason Evans | 2016-06-03 | 2 | -7/+16 |
|
|
* | Merge chunk_alloc_base() into its only caller. | Jason Evans | 2016-06-03 | 2 | -21/+9 |
|
|
* | Replace extent_tree_szad_* with extent_heap_*. | Jason Evans | 2016-06-03 | 4 | -77/+158 |
|
|
* | Use rtree rather than [sz]ad trees for chunk split/coalesce operations. | Jason Evans | 2016-06-03 | 3 | -166/+221 |
|
|
* | Remove redundant chunk argument from chunk_{,de,re}register(). | Jason Evans | 2016-06-03 | 3 | -20/+22 |
|
|
* | Fix opt_zero-triggered in-place huge reallocation zeroing. | Jason Evans | 2016-06-03 | 1 | -4/+4 |
|
|
* | Replace extent_achunk_[gs]et() with extent_slab_[gs]et(). | Jason Evans | 2016-06-03 | 4 | -11/+11 |
|
|
* | Add extent_active_[gs]et(). | Jason Evans | 2016-06-03 | 4 | -11/+12 |
|
|
* | Set/unset rtree node for last chunk of extents. | Jason Evans | 2016-06-03 | 1 | -4/+41 |
|
|
* | Add rtree element witnesses. | Jason Evans | 2016-06-03 | 3 | -2/+126 |
|
|
* | Refactor rtree to always use base_alloc() for node allocation. | Jason Evans | 2016-06-03 | 8 | -114/+162 |
|
|
* | Use rtree-based chunk lookups rather than pointer bit twiddling. | Jason Evans | 2016-06-03 | 7 | -334/+352 |
|
|
* | Add element acquire/release capabilities to rtree. | Jason Evans | 2016-06-03 | 2 | -17/+18 |
|
|
* | Rename extent_node_t to extent_t. | Jason Evans | 2016-05-16 | 6 | -308/+305 |
|
|