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.
This commit is contained in:
Willy Tarreau 2026-03-12 10:52:27 +01:00
parent 892adf3cc1
commit f7820bcbaa

View file

@ -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)