- Mar 08, 2016
-
-
Jason Evans authored
-
- Mar 03, 2016
-
-
Jason Evans authored
Add a cast to avoid comparing a ssize_t value to a uint64_t value that is always larger than a 32-bit ssize_t. This silences an innocuous compiler warning from e.g. gcc 4.2.1 about the comparison always having the same result.
-
- Mar 01, 2016
-
-
Dmitri Smirnov authored
Stack corruption happens in x64 bit This resolves #347.
-
- Feb 29, 2016
-
-
rustyx authored
-
Dmitri Smirnov authored
-
Jason Evans authored
-
- Feb 28, 2016
-
-
Jason Evans authored
-
Jason Evans authored
-
rustyx authored
-
Jason Evans authored
-
Jason Evans authored
-
Jason Evans authored
Prior to 767d8506 (Refactor arenas array (fixes deadlock).), it was possible under some circumstances for arena_get() to trigger recreation of the arenas cache during tsd cleanup, and the arenas cache would then be leaked. In principle a similar issue could still occur as a side effect of decay-based purging, which calls arena_tdata_get(). Fix arenas_tdata_cleanup() by setting tsd->arenas_tdata_bypass to true, so that arena_tdata_get() will gracefully fail (an expected behavior) rather than recreating tsd->arena_tdata. Reported by Christopher Ferris <cferris@google.com>.
-
Jason Evans authored
Add missing stats.arenas.<i>.{dss,lg_dirty_mult,decay_time} initialization. Fix stats.arenas.<i>.{pactive,pdirty} to read under the protection of the arena mutex.
-
Jason Evans authored
-
Jason Evans authored
-
Jason Evans authored
Fix stats.cactive accounting to always increase/decrease by multiples of the chunk size, even for huge size classes that are not multiples of the chunk size, e.g. {2.5, 3, 3.5, 5, 7} MiB with 2 MiB chunk size. This regression was introduced by 155bfa7d (Normalize size classes.) and first released in 4.0.0. This resolves #336.
-
- Feb 27, 2016
-
-
Jason Evans authored
-
Jason Evans authored
This removes an implicit conversion from size_t to ssize_t. For cactive decreases, the size_t value was intentionally underflowed to generate "negative" values (actually positive values above the positive range of ssize_t), and the conversion to ssize_t was undefined according to C language semantics. This regression was perpetuated by 1522937e (Fix the cactive statistic.) and first release in 4.0.0, which in retrospect only fixed one of two problems introduced by aa5113b1 (Refactor overly large/complex functions) and first released in 3.5.0.
-
Jason Evans authored
Remove invalid tests that were intended to be tests of (hugemax+1) OOM, for which tests already exist.
-
buchgr authored
This fixes chunk allocation to reuse retained memory even if an application-provided chunk allocation function is in use. This resolves #307.
-
- Feb 26, 2016
-
-
Jason Evans authored
-
Dave Watson authored
For small bitmaps, a linear scan of the bitmap is slightly faster than a tree search - bitmap_t is more compact, and there are fewer writes since we don't have to propogate state transitions up the tree. On x86_64 with the current settings, I'm seeing ~.5%-1% CPU improvement in production canaries with this change. The old tree code is left since 32bit sizes are much larger (and ffsl smaller), and maybe the run sizes will change in the future. This resolves #339.
-
Jason Evans authored
-
rustyx authored
-
rustyx authored
-
Jason Evans authored
This resolves #341.
-
Jason Evans authored
-
Jason Evans authored
Add HUGE_MAXCLASS overflow checks that are specific to heap profiling code paths. This fixes test failures that were introduced by 0c516a00 (Make *allocx() size class overflow behavior defined.).
-
Jason Evans authored
This fixes compilation warnings regarding integer overflow that were introduced by 0c516a00 (Make *allocx() size class overflow behavior defined.).
-
Jason Evans authored
Limit supported size and alignment to HUGE_MAXCLASS, which in turn is now limited to be less than PTRDIFF_MAX. This resolves #278 and #295.
-
- Feb 25, 2016
-
-
Jason Evans authored
Refactor the arenas array, which contains pointers to all extant arenas, such that it starts out as a sparse array of maximum size, and use double-checked atomics-based reads as the basis for fast and simple arena_get(). Additionally, reduce arenas_lock's role such that it only protects against arena initalization races. These changes remove the possibility for arena lookups to trigger locking, which resolves at least one known (fork-related) deadlock. This resolves #315.
-
Dave Watson authored
Fix arena_size arena_new() computation to incorporate runs_avail_nclasses elements for runs_avail, rather than (runs_avail_nclasses - 1) elements. Since offsetof(arena_t, runs_avail) is used rather than sizeof(arena_t) for the first term of the computation, all of the runs_avail elements must be added into the second term. This bug was introduced (by Jason Evans) while merging pull request #330 as 3417a304 (Separate arena_avail trees).
-
Dave Watson authored
Merge of 3417a304 looks like a small bug: first_best_fit doesn't scan through all the classes, since ind is offset from runs_avail_nclasses by run_avail_bias.
-
Jason Evans authored
Attempt mmap-based in-place huge reallocation by plumbing new_addr into chunk_alloc_mmap(). This can dramatically speed up incremental huge reallocation. This resolves #335.
-
Jason Evans authored
This resolves #258.
-
- Feb 24, 2016
-
-
Jason Evans authored
This resolves #323.
-
Jason Evans authored
This regression was caused by 9f4ee603 (Refactor jemalloc_ffs*() into ffs_*().).
-
Jason Evans authored
-
Jason Evans authored
This will prevent accidental creation of potential integer truncation bugs when developing on LP64 systems.
-
Jason Evans authored
-