From: Simon Glass <sjg@chromium.org> The full test suite with multi-entry bootflow scanning causes more concurrent allocations, overflowing the 12000-entry mcheck registry. Increase it to 20000 to provide headroom. Signed-off-by: Simon Glass <sjg@chromium.org> --- common/mcheck_core.inc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/mcheck_core.inc.h b/common/mcheck_core.inc.h index fa152790d45..65f83836d61 100644 --- a/common/mcheck_core.inc.h +++ b/common/mcheck_core.inc.h @@ -71,7 +71,7 @@ #define PADDINGFLOOD ((char)0x58) // Full test suite can exceed 10000 concurrent allocations -#define REGISTRY_SZ 12000 +#define REGISTRY_SZ 20000 #define CANARY_DEPTH 2 // avoid problems with BSS at early stage: -- 2.43.0