From 295e48944b200b595a72902a81e1ed8cad6a3866 Mon Sep 17 00:00:00 2001 From: Tony Printezis Date: Mon, 18 May 2026 11:51:12 -0700 Subject: [PATCH] Set SEC_MAX_NALLOCS to 8. --- include/jemalloc/internal/sec.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/jemalloc/internal/sec.h b/include/jemalloc/internal/sec.h index 1def4a96..0ac2a018 100644 --- a/include/jemalloc/internal/sec.h +++ b/include/jemalloc/internal/sec.h @@ -101,7 +101,7 @@ sec_size_supported(sec_t *sec, size_t size) { #define SEC_MIN_NALLOCS 2 /* Max number of extents we will allocate out of a single huge page. */ -#define SEC_MAX_NALLOCS 4 +#define SEC_MAX_NALLOCS 8 /* Attempt to fill the SEC up to max_bytes / SEC_MAX_BYTES_DIV */ #define SEC_MAX_BYTES_DIV 4