mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-15 04:56:43 +07:00
media: vicodec: move v4l2_ctrl_request_complete after spin_unlock
v4l2_ctrl_request_complete can sleep, so can't be called while a spinlock is held. Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>
This commit is contained in:
parent
22670e7772
commit
e5bc0e1ddd
@ -442,14 +442,14 @@ static void device_run(void *priv)
|
||||
ctx->comp_has_next_frame = false;
|
||||
}
|
||||
v4l2_m2m_buf_done(dst_buf, state);
|
||||
if (ctx->is_stateless && src_req)
|
||||
v4l2_ctrl_request_complete(src_req, &ctx->hdl);
|
||||
|
||||
ctx->comp_size = 0;
|
||||
ctx->header_size = 0;
|
||||
ctx->comp_magic_cnt = 0;
|
||||
ctx->comp_has_frame = false;
|
||||
spin_unlock(ctx->lock);
|
||||
if (ctx->is_stateless && src_req)
|
||||
v4l2_ctrl_request_complete(src_req, &ctx->hdl);
|
||||
|
||||
if (ctx->is_enc)
|
||||
v4l2_m2m_job_finish(dev->stateful_enc.m2m_dev, ctx->fh.m2m_ctx);
|
||||
|
Loading…
Reference in New Issue
Block a user