Skip to content
  1. Nov 15, 2011
  2. Nov 11, 2011
  3. Nov 09, 2011
    • Jason Evans's avatar
      Fix huge_ralloc() race when using mremap(2). · fa351d9f
      Jason Evans authored
      Fix huge_ralloc() to remove the old memory region from tree of huge
      allocations *before* calling mremap(2), in order to make sure that no
      other thread acquires the old memory region via mmap() and encounters
      stale metadata in the tree.
      
      Reported by: Rich Prohaska
      fa351d9f
  4. Nov 06, 2011
  5. Nov 04, 2011
  6. Nov 02, 2011
  7. Sep 01, 2011
  8. Aug 31, 2011
    • Jason Evans's avatar
      Fix a prof-related race condition. · a9076c94
      Jason Evans authored
      Fix prof_lookup() to artificially raise curobjs for all paths through
      the code that creates a new entry in the per thread bt2cnt hash table.
      This fixes a race condition that could corrupt memory if prof_accum were
      false, and a non-default lg_prof_tcmax were used and/or threads were
      destroyed.
      a9076c94
    • Jason Evans's avatar
      Fix a prof-related bug in realloc(). · 46405e67
      Jason Evans authored
      Fix realloc() such that it only records the object passed in as freed if
      no OOM error occurs.
      46405e67
  9. Aug 13, 2011
  10. Aug 12, 2011
    • Jason Evans's avatar
      Fix off-by-one backtracing issues. · a507004d
      Jason Evans authored
      Rewrite prof_alloc_prep() as a cpp macro, PROF_ALLOC_PREP(), in order to
      remove any doubt as to whether an additional stack frame is created.
      Prior to this change, it was assumed that inlining would reduce the
      total number of frames in the backtrace, but in practice behavior wasn't
      completely predictable.
      
      Create imemalign() and call it from posix_memalign(), memalign(), and
      valloc(), so that all entry points require the same number of stack
      frames to be ignored during backtracing.
      a507004d
    • Jason Evans's avatar
      Document swap.fds mallctl as read-write. · 745e30b1
      Jason Evans authored
      Fix the manual page to document the swap.fds mallctl as read-write,
      rather than read-only.
      745e30b1
    • Jason Evans's avatar
      Conditionalize an isalloc() call in rallocm(). · b493ce22
      Jason Evans authored
      Conditionalize an isalloc() call in rallocm() that be unnecessary.
      b493ce22
    • Jason Evans's avatar
      Fix two prof-related bugs in rallocm(). · 183ba50c
      Jason Evans authored
      Properly handle boundary conditions for sampled region promotion in
      rallocm().  Prior to this fix, some combinations of 'size' and 'extra'
      values could cause erroneous behavior.  Additionally, size class
      recording for promoted regions was incorrect.
      183ba50c
  11. Aug 10, 2011
    • Jason Evans's avatar
      Clean up prof-related comments. · 0cdd42eb
      Jason Evans authored
      Clean up some prof-related comments to more accurately reflect how the
      code works.
      
      Simplify OOM handling code in a couple of prof-related error paths.
      0cdd42eb
  12. Aug 09, 2011
  13. Jul 31, 2011
  14. Jun 13, 2011
    • Jason Evans's avatar
      Fix assertions in arena_purge(). · f9a8edbb
      Jason Evans authored
      Fix assertions in arena_purge() to accurately reflect the constraints in
      arena_maybe_purge().  There were two bugs here, one of which merely
      weakened the assertion, and the other of which referred to an
      uninitialized variable (typo; used npurgatory instead of
      arena->npurgatory).
      f9a8edbb
  15. May 22, 2011
  16. May 11, 2011
  17. Apr 01, 2011
  18. Mar 31, 2011
  19. Mar 25, 2011
  20. Mar 23, 2011
  21. Mar 24, 2011
  22. Mar 23, 2011
    • Jason Evans's avatar
      Fix error detection for ipalloc() when profiling. · 38d9210c
      Jason Evans authored
      sa2u() returns 0 on overflow, but the profiling code was blindly calling
      sa2u() and allowing the error to silently propagate, ultimately ending
      in a later assertion failure.  Refactor all ipalloc() callers to call
      sa2u(), check for overflow before calling ipalloc(), and pass usize
      rather than size.  This allows ipalloc() to avoid calling sa2u() in the
      common case.
      38d9210c
    • Jason Evans's avatar
      Fix rallocm() rsize bug. · eacb896c
      Jason Evans authored
      Add code to set *rsize even when profiling is enabled.
      eacb896c
    • Jason Evans's avatar
      Fix bootstrapping order bug. · c957398b
      Jason Evans authored
      Initialize arenas_tsd earlier, so that the non-TLS case works when
      profiling is enabled.
      c957398b
  23. Mar 22, 2011
    • Jason Evans's avatar
      Update ChangeLog for 2.2.0. · 4bcd9872
      Jason Evans authored
      4bcd9872
    • Jason Evans's avatar
      Avoid overflow in arena_run_regind(). · 47e57f9b
      Jason Evans authored
      Fix a regression due to:
          Remove an arena_bin_run_size_calc() constraint.
          2a6f2af6
      The removed constraint required that small run headers fit in one page,
      which indirectly limited runs such that they would not cause overflow in
      arena_run_regind().  Add an explicit constraint to
      arena_bin_run_size_calc() based on the largest number of regions that
      arena_run_regind() can handle (2^11 as currently configured).
      47e57f9b