Skip to content

Commit 8f703e8

Browse files
lyakhkv2019i
authored andcommitted
userspace: ll: ipc: increase IPC processing timeout
Sometimes 10ms aren't enough for userspace IPC processing, increase it to 100ms. Signed-off-by: Guennadi Liakhovetski <guennadi.liakhovetski@linux.intel.com> Signed-off-by: Kai Vehmanen <kai.vehmanen@linux.intel.com>
1 parent 63d0e16 commit 8f703e8

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
@@ -356,7 +356,7 @@ int ipc_user_forward_cmd(uint32_t primary, uint32_t extension)
356356
k_event_set(pdata->event, IPC_USER_EVENT_CMD);
357357

358358
/* Wait for user thread to complete */
359-
ret = k_sem_take(pdata->sem, K_MSEC(10));
359+
ret = k_sem_take(pdata->sem, K_MSEC(100));
360360
if (ret) {
361361
LOG_ERR("IPC user: sem error %d\n", ret);
362362
/* fall through to complete the cmd */

0 commit comments

Comments
 (0)