mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 10:01:41 +00:00
[media] vb2: fix wrong owner check
Check against q->fileio to see if the queue owner should be set or not. The former check against the return value of read or write is wrong, since read/write can return an error, even if the queue is in streaming mode. For example, EAGAIN when in non-blocking mode. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
This commit is contained in:
parent
d2210f9e2e
commit
8c82c75c39
@ -2278,7 +2278,7 @@ ssize_t vb2_fop_write(struct file *file, char __user *buf,
|
||||
goto exit;
|
||||
err = vb2_write(vdev->queue, buf, count, ppos,
|
||||
file->f_flags & O_NONBLOCK);
|
||||
if (err >= 0)
|
||||
if (vdev->queue->fileio)
|
||||
vdev->queue->owner = file->private_data;
|
||||
exit:
|
||||
if (lock)
|
||||
@ -2300,7 +2300,7 @@ ssize_t vb2_fop_read(struct file *file, char __user *buf,
|
||||
goto exit;
|
||||
err = vb2_read(vdev->queue, buf, count, ppos,
|
||||
file->f_flags & O_NONBLOCK);
|
||||
if (err >= 0)
|
||||
if (vdev->queue->fileio)
|
||||
vdev->queue->owner = file->private_data;
|
||||
exit:
|
||||
if (lock)
|
||||
|
Loading…
Reference in New Issue
Block a user