From 9a07a8ab3b70bb9e52a377aecf1461d9b6d347b0 Mon Sep 17 00:00:00 2001 From: Guennadi Liakhovetski Date: Mon, 4 May 2026 12:20:01 +0200 Subject: [PATCH] audio: module: increase heap size The check-src-play.sh test fails on PTL nocodec with 20k module heap and passes with 24k. Increase it to 28k to add a bit of security until we switch to using module configuration. Signed-off-by: Guennadi Liakhovetski --- src/audio/module_adapter/module_adapter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/module_adapter/module_adapter.c b/src/audio/module_adapter/module_adapter.c index 772af199f0c1..b6e2e301aad8 100644 --- a/src/audio/module_adapter/module_adapter.c +++ b/src/audio/module_adapter/module_adapter.c @@ -63,7 +63,7 @@ static struct vregion *module_adapter_dp_heap_new(const struct comp_ipc_config * { /* src-lite with 8 channels has been seen allocating 14k in one go */ /* FIXME: the size will be derived from configuration */ - const size_t buf_size = 20 * 1024; + const size_t buf_size = 28 * 1024; /* * A 1-to-1 replacement of the original heap implementation would be to