mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-02 12:10:23 -04:00
media: v4l2-mem2mem: prevent pollerr when last_buffer_dequeued is set
If the last buffer was dequeued from the capture queue,
signal userspace. DQBUF(CAPTURE) will return -EPIPE.
But if output queue is empty and capture queue is empty,
v4l2_m2m_poll_for_data will return EPOLLERR,
This is very easy to happen in drain.
When last_buffer_dequeued is set, we shouldn't return EPOLLERR,
but return EPOLLIN | EPOLLRDNORM.
Fixes: 1698a7f151 ("media: v4l2-mem2mem: simplify poll logic")
Signed-off-by: Ming Qian <ming.qian@nxp.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
This commit is contained in:
committed by
Mauro Carvalho Chehab
parent
38c771014c
commit
d4de27a9b1
@@ -925,7 +925,7 @@ static __poll_t v4l2_m2m_poll_for_data(struct file *file,
|
||||
if ((!src_q->streaming || src_q->error ||
|
||||
list_empty(&src_q->queued_list)) &&
|
||||
(!dst_q->streaming || dst_q->error ||
|
||||
list_empty(&dst_q->queued_list)))
|
||||
(list_empty(&dst_q->queued_list) && !dst_q->last_buffer_dequeued)))
|
||||
return EPOLLERR;
|
||||
|
||||
spin_lock_irqsave(&src_q->done_lock, flags);
|
||||
|
||||
Reference in New Issue
Block a user