Skip to content

Commit 1a47712

Browse files
committed
[nrf-fromlist] ipc: icmsg: increase stack size of RX work queue thread
Increases default size of stack used by work queue RX thread from 1024 to 2048 to avoid memory issues. After adding the buffer with the default size of 128 that is allocated on the thread's stack, there is too little stack left during heavy stress. Upstream PR: zephyrproject-rtos/zephyr#79557 Signed-off-by: Piotr Koziar <[email protected]>
1 parent b83478a commit 1a47712

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

subsys/ipc/ipc_service/lib/Kconfig.icmsg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ if IPC_SERVICE_BACKEND_ICMSG_WQ_ENABLE
5151

5252
config IPC_SERVICE_BACKEND_ICMSG_WQ_STACK_SIZE
5353
int "Size of RX work queue stack"
54-
default 1024
54+
default 2048
5555
help
5656
Size of stack used by work queue RX thread. This work queue is
5757
created to prevent notifying service users about received data

0 commit comments

Comments
 (0)