1. f08d319 BUG/MEDIUM: pool: fix rare risk of deadlock in pool_flush() by Willy Tarreau · Sat Feb 10 12:29:53 2024 +0100
  2. 7b9b3d2 BUG/MINOR: pool/stats: Use ullong to report total pool usage in bytes in stats by Christopher Faulet · Thu Dec 22 11:05:48 2022 +0100
  3. 3e1bfa7 BUG/MINOR: pool/cli: use ullong to report total pool usage in bytes by Willy Tarreau · Thu Nov 17 11:08:03 2022 +0100
  4. 857357e BUG/MINOR: pools: make sure to also destroy shared pools in pool_destroy_all() by Willy Tarreau · Wed Apr 27 11:33:13 2022 +0200
  5. a891e57 BUILD: pools: fix backport of no-memory-trimming on non-linux OS by Willy Tarreau · Tue Mar 08 15:10:05 2022 +0100
  6. 85dd521 MINOR: pools: add a new global option "no-memory-trimming" by Willy Tarreau · Tue Mar 08 10:41:40 2022 +0100
  7. 337899f BUG/MEDIUM: pools: fix ha_free() on area in the process of being freed by Willy Tarreau · Thu Mar 03 18:31:54 2022 +0100
  8. ceee238 BUG/MINOR: pool: always align pool_heads to 64 bytes by Willy Tarreau · Wed Mar 02 17:59:04 2022 +0100
  9. 674843a DEBUG: pools: let's add reverse mapping from cache heads to thread and pool by Willy Tarreau · Wed Feb 09 16:33:22 2022 +0100
  10. 9a3cd53 DEBUG: pools: add extra sanity checks when picking objects from a local cache by Willy Tarreau · Wed Feb 09 16:23:55 2022 +0100
  11. 9043da7 BUG/MINOR: pools: always flush pools about to be destroyed by Willy Tarreau · Wed Feb 09 16:19:24 2022 +0100
  12. c241843 DEBUG: pools: add new build option DEBUG_POOL_INTEGRITY by Willy Tarreau · Fri Jan 21 19:00:25 2022 +0100
  13. 619a511 MINOR: pools: work around possibly slow malloc_trim() during gc by Willy Tarreau · Thu Dec 23 09:26:30 2021 +0100
  14. 3bf7569 MINOR: pools: use mallinfo2() when available instead of mallinfo() by Willy Tarreau · Thu Sep 16 09:18:21 2021 +0200
  15. 562bf20 MINOR: pools: automatically disable malloc_trim() with external allocators by Willy Tarreau · Wed Sep 15 10:05:48 2021 +0200
  16. 33298de CLEANUP: pools: factor all malloc_trim() calls into trim_all_pools() by Willy Tarreau · Wed Sep 15 10:38:21 2021 +0200
  17. d0cc376 BUG/MAJOR: pools: fix possible race with free() in the lockless variant by Willy Tarreau · Wed Jun 09 18:59:58 2021 +0200
  18. a206cf9 MEDIUM: pools: use a single pool_gc() function for locked and lockless by Willy Tarreau · Thu Jun 10 10:21:35 2021 +0200
  19. 46b515c MINOR: pools: call malloc_trim() under thread isolation by Willy Tarreau · Thu Jun 10 08:40:16 2021 +0200
  20. af8120a MINOR: pools: do not maintain the lock during pool_flush() by Willy Tarreau · Thu Jun 10 07:13:04 2021 +0200
  21. 11e7af3 BUG/MINOR: pools: make DEBUG_UAF always write to the to-be-freed location by Willy Tarreau · Thu Jun 10 17:20:19 2021 +0200
  22. caf6555 BUG/MINOR: pools: fix a possible memory leak in the lockless pool_flush() by Willy Tarreau · Thu Jun 10 06:54:22 2021 +0200
  23. b205bfd CLEANUP: cli/tree-wide: properly re-align the CLI commands' help messages by Willy Tarreau · Fri May 07 11:38:37 2021 +0200
  24. 1ab6c0b MINOR: pools/debug: slightly relax DEBUG_DONT_SHARE_POOLS by Willy Tarreau · Wed May 05 07:29:01 2021 +0200
  25. 2b71810 CLEANUP: lists/tree-wide: rename some list operations to avoid some confusion by Willy Tarreau · Wed Apr 21 07:32:39 2021 +0200
  26. 942b89f BUILD: pools: fix build with DEBUG_FAIL_ALLOC by Willy Tarreau · Mon Apr 19 18:36:48 2021 +0200
  27. b2a853d CLEANUP: pools: uninline pool_put_to_cache() by Willy Tarreau · Mon Apr 19 11:49:26 2021 +0200
  28. fa19d20 MEDIUM: pools: make pool_put_to_cache() always call pool_put_to_local_cache() by Willy Tarreau · Mon Apr 19 08:50:45 2021 +0200
  29. 8721203 MINOR: pools: evict excess objects using pool_evict_from_local_cache() by Willy Tarreau · Mon Apr 19 08:14:03 2021 +0200
  30. b8498e9 MEDIUM: pools: make CONFIG_HAP_POOLS control both local and shared pools by Willy Tarreau · Sun Apr 18 10:23:02 2021 +0200
  31. 45e4e28 MINOR: pools: factor the release code into pool_put_to_os() by Willy Tarreau · Sat Apr 17 17:48:40 2021 +0200
  32. 2b5579f MINOR: pools: always use atomic ops to maintain counters by Willy Tarreau · Sat Apr 17 18:06:57 2021 +0200
  33. 1384364 MINOR: pools: split the OS-based allocator in two by Willy Tarreau · Sat Apr 17 16:57:25 2021 +0200
  34. 207c095 MINOR: pools: move the fault injector to __pool_alloc() by Willy Tarreau · Sat Apr 17 16:00:08 2021 +0200
  35. 20f88ab MINOR: pools: use cheaper randoms for fault injections by Willy Tarreau · Sat Apr 17 15:50:28 2021 +0200
  36. 635cced CLEANUP: pools: rename __pool_free() to pool_put_to_shared_cache() by Willy Tarreau · Sat Apr 17 14:11:39 2021 +0200
  37. 8c77ee5 CLEANUP: pools: rename pool_*_{from,to}_cache() to *_local_cache() by Willy Tarreau · Thu Apr 15 20:12:48 2021 +0200
  38. 8fe726f CLEANUP: pools: re-merge pool_refill_alloc() and __pool_refill_alloc() by Willy Tarreau · Thu Apr 15 18:20:12 2021 +0200
  39. eb3cc29 MEDIUM: pools: unify pool_refill_alloc() across all models by Willy Tarreau · Thu Apr 15 18:13:13 2021 +0200
  40. 64383b8 MINOR: pools: make the basic pool_refill_alloc()/pool_free() update needed_avg by Willy Tarreau · Thu Apr 15 17:23:15 2021 +0200
  41. 53a7fe4 MINOR: pools: enable the fault injector in all allocation modes by Willy Tarreau · Thu Apr 15 16:43:18 2021 +0200
  42. 2d6f628 MINOR: pools: rename CONFIG_HAP_LOCAL_POOLS to CONFIG_HAP_POOLS by Willy Tarreau · Thu Apr 15 16:24:00 2021 +0200
  43. d5140e7 MINOR: pool: remove the size field from pool_cache_head by Willy Tarreau · Sat Apr 17 14:05:10 2021 +0200
  44. 9f3129e MEDIUM: pools: move the cache into the pool header by Willy Tarreau · Sat Apr 17 00:31:38 2021 +0200
  45. 3e970b1 MINOR: pools: drop the unused static history of artificially failed allocs by Willy Tarreau · Thu Apr 15 16:36:07 2021 +0200
  46. 932dd19 BUG/MINOR: pools: maintain consistent ->allocated count on alloc failures by Willy Tarreau · Thu Apr 15 17:31:19 2021 +0200
  47. 4781b15 CLEANUP: atomic/tree-wide: replace single increments/decrements with inc/dec by Willy Tarreau · Tue Apr 06 13:53:36 2021 +0200
  48. 3b1c9a3 CLEANUP: mark defproxy as const on parse tune.fail-alloc by Amaury Denoyelle · Mon Mar 22 11:21:36 2021 +0100
  49. 0bae075 MEDIUM: pools: add CONFIG_HAP_NO_GLOBAL_POOLS and CONFIG_HAP_GLOBAL_POOLS by Willy Tarreau · Tue Mar 02 20:05:09 2021 +0100
  50. 88366c2 MEDIUM: pools: call malloc_trim() from pool_gc() by Willy Tarreau · Tue Nov 03 15:53:34 2020 +0100
  51. 20dc3cd MINOR: pools: move the LRU cache heads to thread_info by Willy Tarreau · Sun Jun 28 00:54:27 2020 +0200
  52. 47d1718 CLEANUP: assorted typo fixes in the code and comments by Ilya Shipitsin · Sun Jun 21 21:42:57 2020 +0500
  53. b255105 CLEANUP: include: tree-wide alphabetical sort of include files by Willy Tarreau · Tue Jun 09 09:07:15 2020 +0200
  54. 36979d9 REORG: include: move the error reporting functions to from log.h to errors.h by Willy Tarreau · Fri Jun 05 17:27:29 2020 +0200
  55. 6be7849 REORG: include: move cfgparse.h to haproxy/cfgparse.h by Willy Tarreau · Fri Jun 05 00:00:29 2020 +0200
  56. aeed4a8 REORG: include: move log.h to haproxy/log{,-t}.h by Willy Tarreau · Thu Jun 04 22:01:04 2020 +0200
  57. f1d32c4 REORG: include: move channel.h to haproxy/channel{,-t}.h by Willy Tarreau · Thu Jun 04 21:07:02 2020 +0200
  58. 5e539c9 REORG: include: move stream_interface.h to haproxy/stream_interface{,-t}.h by Willy Tarreau · Thu Jun 04 20:45:39 2020 +0200
  59. 83487a8 REORG: include: move cli.h to haproxy/cli{,-t}.h by Willy Tarreau · Thu Jun 04 20:19:54 2020 +0200
  60. 2eec9b5 REORG: include: move stats.h to haproxy/stats{,-t}.h by Willy Tarreau · Thu Jun 04 19:58:55 2020 +0200
  61. 3f0f82e REORG: move applet.h to haproxy/applet{,-t}.h by Willy Tarreau · Thu Jun 04 19:42:41 2020 +0200
  62. f268ee8 REORG: include: split global.h into haproxy/global{,-t}.h by Willy Tarreau · Thu Jun 04 17:05:57 2020 +0200
  63. 48fbcae REORG: tools: split common/standard.h into haproxy/tools{,-t}.h by Willy Tarreau · Wed Jun 03 18:09:46 2020 +0200
  64. a04ded5 REORG: include: move activity to haproxy/ by Willy Tarreau · Tue Jun 02 10:29:48 2020 +0200
  65. d0ef439 REORG: include: move common/memory.h to haproxy/pool.h by Willy Tarreau · Tue Jun 02 09:38:52 2020 +0200[Renamed (99%) from src/memory.c]
  66. ed891fd MEDIUM: memory: make local pools independent on lockless pools by Willy Tarreau · Mon Jun 01 19:00:28 2020 +0200
  67. fb117e6 MEDIUM: memory: don't let pool_put_to_cache() free the objects itself by Willy Tarreau · Mon Jun 01 18:16:57 2020 +0200
  68. 24aa1ee REORG: memory: move the OS-level allocator to haproxy/pool-os.h by Willy Tarreau · Sat May 30 18:56:17 2020 +0200
  69. 606135a CLEANUP: pool: include freq_ctr.h and remove locally duplicated functions by Willy Tarreau · Mon Jun 01 12:35:03 2020 +0200
  70. af613e8 CLEANUP: thread: rename __decl_hathreads() to __decl_thread() by Willy Tarreau · Fri Jun 05 08:40:51 2020 +0200
  71. 3f567e4 REORG: include: split hathreads into haproxy/thread.h and haproxy/thread-t.h by Willy Tarreau · Thu May 28 15:29:19 2020 +0200
  72. 853b297 REORG: include: split mini-clist into haproxy/list and list-t.h by Willy Tarreau · Wed May 27 18:01:47 2020 +0200
  73. 58017ee REORG: include: move the BUG_ON() code to haproxy/bug.h by Willy Tarreau · Wed May 27 16:51:33 2020 +0200
  74. 4c7e4b7 REORG: include: update all files to use haproxy/api.h or api-t.h if needed by Willy Tarreau · Wed May 27 12:58:42 2020 +0200
  75. 21072b9 CLEANUP: pools: use the regular lock for the flush operation on lockless pools by Willy Tarreau · Fri May 29 17:23:05 2020 +0200
  76. a1e4f8c MINOR: pools: compute an estimate of each pool's average needed objects by Willy Tarreau · Fri May 08 08:31:56 2020 +0200
  77. cece694 BUG/MINOR: pools: use %u not %d to report pool stats in "show pools" by Willy Tarreau · Wed May 06 17:10:37 2020 +0200
  78. c0e2ff2 MEDIUM: memory: make pool_gc() run under thread isolation by Willy Tarreau · Fri Apr 24 06:15:24 2020 +0200
  79. 899fb8a MINOR: memory: Change the flush_lock to a spinlock, and don't get it in alloc. by Olivier Houchard · Wed Mar 18 15:48:29 2020 +0100
  80. 51d9339 BUG/MEDIUM: pools: Always update free_list in pool_gc(). by Olivier Houchard · Thu Mar 12 19:05:39 2020 +0100
  81. 52bf839 BUG/MEDIUM: random: implement a thread-safe and process-safe PRNG by Willy Tarreau · Sun Mar 08 00:42:37 2020 +0100
  82. 0fbf28a Revert "BUG/MEDIUM: random: implement per-thread and per-process random sequences" by Willy Tarreau · Sat Mar 07 11:24:39 2020 +0100
  83. 1c306aa BUG/MEDIUM: random: implement per-thread and per-process random sequences by Willy Tarreau · Fri Mar 06 19:04:55 2020 +0100
  84. 04f5fe8 BUG/MEDIUM: memory: Add a rwlock before freeing memory. by Olivier Houchard · Sat Feb 01 17:49:31 2020 +0100
  85. 8af97eb MINOR: memory: Only init the pool spinlock once. by Olivier Houchard · Sat Feb 01 17:45:32 2020 +0100
  86. b6fa08b BUG/MEDIUM: memory_pool: Update the seq number in pool_flush(). by Olivier Houchard · Sat Feb 01 17:37:22 2020 +0100
  87. 8286754 MINOR: pools: always pre-initialize allocated memory outside of the lock by Willy Tarreau · Thu Jul 04 11:48:16 2019 +0200
  88. 3e853ea MINOR: pools: release the pool's lock during the malloc/free calls by Willy Tarreau · Thu Jul 04 11:30:00 2019 +0200
  89. 2f6d3c0 BUG/MINOR: memory: Set objects size for pools in the per-thread cache by Christopher Faulet · Tue Jun 25 21:45:59 2019 +0200
  90. a8b2ce0 MINOR: activity: report the number of failed pool/buffer allocations by Willy Tarreau · Tue May 28 17:04:16 2019 +0200
  91. 64a47b9 CLEANUP: memory: make the fault injection code use the OTHER_LOCK label by Willy Tarreau · Mon May 20 11:09:00 2019 +0200
  92. 6a38b32 BUILD: threads: fix again the __ha_cas_dw() definition by Willy Tarreau · Sat May 11 18:04:24 2019 +0200
  93. 2087276 MEDIUM: memory: Use the new _HA_ATOMIC_* macros. by Olivier Houchard · Fri Mar 08 18:53:35 2019 +0100
  94. 9c4f08a BUG/MINOR: tune.fail-alloc: Don't forget to initialize ret. by Olivier Houchard · Fri Feb 01 16:28:04 2019 +0100
  95. dc21ff7 MINOR: debug: Add an option that causes random allocation failures. by Olivier Houchard · Tue Jan 29 15:20:16 2019 +0100
  96. 7f0165e MEDIUM: memory: make the pool cache an array and not a thread_local by Willy Tarreau · Mon Nov 26 17:09:46 2018 +0100
  97. 2455ceb MEDIUM: memory: use pool_destroy_all() to destroy all pools on deinit() by Willy Tarreau · Mon Nov 26 15:57:34 2018 +0100
  98. 7107c8b MINOR: memory: add a callback function to create a pool by Willy Tarreau · Mon Nov 26 11:44:35 2018 +0100
  99. 0108d90 MEDIUM: init: convert all trivial registration calls to initcalls by Willy Tarreau · Sun Nov 25 19:14:37 2018 +0100
  100. db39843 MINOR: stream-int: replace si_cant_put() with si_rx_room_{blk,rdy}() by Willy Tarreau · Thu Nov 15 11:08:52 2018 +0100