Skip to content

Commit a32d983

Browse files
Jyri Sarhalgirdwood
authored andcommitted
module_adapter: dp: Decrease default heap size from 20k to 16k
Decrease default heap size from 20k to 16k. It appears the 20k heap size is too big for the system to survive our CI capture stress test. Luckily 16k is enough for SRC module in that test, so lets drop the default to a number that works better than previous. Signed-off-by: Jyri Sarha <jyri.sarha@linux.intel.com>
1 parent 8496b82 commit a32d983

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/audio/module_adapter/module_adapter.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ static struct dp_heap_user *module_adapter_dp_heap_new(const struct comp_ipc_con
6262
{
6363
/* src-lite with 8 channels has been seen allocating 14k in one go */
6464
/* FIXME: the size will be derived from configuration */
65-
const size_t buf_size = 20 * 1024;
65+
const size_t buf_size = 16 * 1024;
6666

6767
/* Keep uncached to match the default SOF heap! */
6868
uint8_t *mod_heap_mem = rballoc_align(SOF_MEM_FLAG_USER | SOF_MEM_FLAG_COHERENT,

0 commit comments

Comments
 (0)