mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-12 12:25:18 +02:00
media: cec: cec-adap: always cancel work in cec_transmit_msg_fh
[ Upstream commit9fe2816816
] Do not check for !data->completed, just always call cancel_delayed_work_sync(). This fixes a small race condition. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Reported-by: Yang, Chenyuan <cy54@illinois.edu> Closes: https://lore.kernel.org/linux-media/PH7PR11MB57688E64ADE4FE82E658D86DA09EA@PH7PR11MB5768.namprd11.prod.outlook.com/ Fixes:490d84f6d7
("media: cec: forgot to cancel delayed work") Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
75aafce64a
commit
8f40b92f54
|
@ -909,7 +909,6 @@ int cec_transmit_msg_fh(struct cec_adapter *adap, struct cec_msg *msg,
|
||||||
*/
|
*/
|
||||||
mutex_unlock(&adap->lock);
|
mutex_unlock(&adap->lock);
|
||||||
wait_for_completion_killable(&data->c);
|
wait_for_completion_killable(&data->c);
|
||||||
if (!data->completed)
|
|
||||||
cancel_delayed_work_sync(&data->work);
|
cancel_delayed_work_sync(&data->work);
|
||||||
mutex_lock(&adap->lock);
|
mutex_lock(&adap->lock);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user