From: Willy Tarreau Date: Thu, 12 Mar 2026 09:52:27 +0000 (+0100) Subject: MINOR: activity: raise the default number of memprofile buckets to 4k X-Git-Tag: v3.4-dev7~46 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f7820bcbaa3cdecf8bdbefc1169f92f52f4e3cfb;p=thirdparty%2Fhaproxy.git MINOR: activity: raise the default number of memprofile buckets to 4k It was set to 1k by default but with the refinement of exec_ctx it's becoming short, so let's raise it now. --- diff --git a/include/haproxy/defaults.h b/include/haproxy/defaults.h index 04eae5df0..72a9bc13a 100644 --- a/include/haproxy/defaults.h +++ b/include/haproxy/defaults.h @@ -601,7 +601,7 @@ * store stats. */ #ifndef MEMPROF_HASH_BITS -# define MEMPROF_HASH_BITS 10 +# define MEMPROF_HASH_BITS 12 #endif #define MEMPROF_HASH_BUCKETS (1U << MEMPROF_HASH_BITS)