public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] media: v4l2-mem2mem: fix mem order in last buf
@ 2024-02-10 18:04 Hsia-Jun Li
  2024-02-14 20:38 ` Nicolas Dufresne
  0 siblings, 1 reply; 10+ messages in thread
From: Hsia-Jun Li @ 2024-02-10 18:04 UTC (permalink / raw)
  To: linux-media
  Cc: mchehab, hverkuil-cisco, sebastian.fricke, nicolas.dufresne,
	alexious, ayaka, linux-kernel, Hsia-Jun(Randy) Li

From: "Hsia-Jun(Randy) Li" <randy.li@synaptics.com>

The has_stopped property in struct v4l2_m2m_ctx is operated
without a lock protecction. Then the userspace calls to
v4l2_m2m_encoder_cmd()/v4l2_m2m_decoder_cmd() may lead to
a critical section issue.

Signed-off-by: Hsia-Jun(Randy) Li <randy.li@synaptics.com>
---
 drivers/media/v4l2-core/v4l2-mem2mem.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/media/v4l2-core/v4l2-mem2mem.c b/drivers/media/v4l2-core/v4l2-mem2mem.c
index 75517134a5e9..f1de71031e02 100644
--- a/drivers/media/v4l2-core/v4l2-mem2mem.c
+++ b/drivers/media/v4l2-core/v4l2-mem2mem.c
@@ -635,9 +635,9 @@ void v4l2_m2m_last_buffer_done(struct v4l2_m2m_ctx *m2m_ctx,
 			       struct vb2_v4l2_buffer *vbuf)
 {
 	vbuf->flags |= V4L2_BUF_FLAG_LAST;
-	vb2_buffer_done(&vbuf->vb2_buf, VB2_BUF_STATE_DONE);
-
 	v4l2_m2m_mark_stopped(m2m_ctx);
+
+	vb2_buffer_done(&vbuf->vb2_buf, VB2_BUF_STATE_DONE);
 }
 EXPORT_SYMBOL_GPL(v4l2_m2m_last_buffer_done);
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2024-02-22  6:45 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-10 18:04 [PATCH] media: v4l2-mem2mem: fix mem order in last buf Hsia-Jun Li
2024-02-14 20:38 ` Nicolas Dufresne
2024-02-15  3:16   ` Randy Li
2024-02-15  8:41     ` Hans Verkuil
2024-02-16 19:09       ` Nicolas Dufresne
2024-02-21 10:37         ` Hsia-Jun Li
2024-02-21 15:32           ` Nicolas Dufresne
2024-02-22  6:45             ` Hsia-Jun Li
2024-02-16 18:56     ` Nicolas Dufresne
2024-02-18  3:51       ` Hsia-Jun Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox