Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for a deadlock startup problem where "port_serial_task" is suspended and never resumed. (IDFGH-14964) #107

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

klew
Copy link

@klew klew commented Mar 27, 2025

port_serial_task is started with "enable" set to false. Then in main loop it checked if "enable" was false and called vTaskSuspend. Another task, which called mbc_slave_create_serial and mbc_slave_start, may cause that mb_port_ser_enable is called between checking "enable" flag and vTaskSuspend in port_serial_task. As a result, mb_port_ser_enable calls vTaskResume on a non-suspended task.
Then control is given back to port_serial_task, which calls vTaskSuspend and stucks in this state forever.

Fix is replacing vTaskSuspend and vTaskResume with a semaphore based ulTaskNotifyWait and vTaskNotifyGive. Additionally "enable" flag is checked in while loop instead of "if".

suspended and never resumed.

port_serial_task is started with "enable" set to false. Then in main
loop it checked if "enable" was false and called vTaskSuspend.
Another task, which called mbc_slave_create_serial and mbc_slave_start,
may cause that mb_port_ser_enable is called between checking "enable"
flag and vTaskSuspend in port_serial_task. As a result, mb_port_ser_enable
calls vTaskResume on a non-suspended task.
Then control is given back to port_serial_task, which calls vTaskSuspend and
stucks in this state forever.

Fix is replacing vTaskSuspend and vTaskResume with a semaphore based
ulTaskNotifyWait and vTaskNotifyGive. Additionally "enable" flag is
checked in while loop instead of "if".
@CLAassistant
Copy link

CLAassistant commented Mar 27, 2025

CLA assistant check
All committers have signed the CLA.

@github-actions github-actions bot changed the title Fix for a deadlock startup problem where "port_serial_task" is suspended and never resumed. Fix for a deadlock startup problem where "port_serial_task" is suspended and never resumed. (IDFGH-14964) Mar 27, 2025
@alisitsyn
Copy link
Collaborator

@klew,

Thank you for contribution. Looks good for now. I will take a look a bit later to check and apply.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants