Skip to content

Commit 894dda5

Browse files
committed
userspace: ll: ipc: increase IPC processing timeout
Sometimes 10ms aren't enough for userspace IPC processing, increase it to 20ms. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com>
1 parent 44063bf commit 894dda5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/ipc/ipc-common.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -431,7 +431,7 @@ int ipc_user_forward_cmd(struct ipc4_message_request *ipc4)
431431
k_event_set(pdata->event, IPC_USER_EVENT_CMD);
432432

433433
/* Wait for user thread to complete */
434-
ret = k_sem_take(pdata->sem, K_MSEC(10));
434+
ret = k_sem_take(pdata->sem, K_MSEC(100));
435435
if (ret) {
436436
LOG_ERR("IPC user: sem error %d\n", ret);
437437
return ret;

0 commit comments

Comments
 (0)