aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/uvc/uvc_queue.c
diff options
context:
space:
mode:
authorLaurent Pinchart <laurent.pinchart@skynet.be>2009-06-04 09:26:39 -0300
committerMauro Carvalho Chehab <mchehab@redhat.com>2009-06-16 19:07:30 -0300
commit23ff6043add670713bbf2f6ee5d520459cfdfae9 (patch)
treeb275b1baf5e1f9940b27e388784ed999ab1c6e93 /drivers/media/video/uvc/uvc_queue.c
parentd732c44c1a4b54e3c59ad92069bc2fd848aca5f3 (diff)
downloadkernel_samsung_smdk4412-23ff6043add670713bbf2f6ee5d520459cfdfae9.zip
kernel_samsung_smdk4412-23ff6043add670713bbf2f6ee5d520459cfdfae9.tar.gz
kernel_samsung_smdk4412-23ff6043add670713bbf2f6ee5d520459cfdfae9.tar.bz2
V4L/DVB (11945): uvcvideo: Don't accept to change the format when buffers are allocated.
Setting a new frame format or size will likely change the buffer size required to store a complete video frame. To avoid a buffer overflow, don't allow VIDIOC_S_FMT calls when video buffers are already allocated. Signed-off-by: Laurent Pinchart <laurent.pinchart@skynet.be> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/uvc/uvc_queue.c')
-rw-r--r--drivers/media/video/uvc/uvc_queue.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/media/video/uvc/uvc_queue.c b/drivers/media/video/uvc/uvc_queue.c
index 0155752..f854698 100644
--- a/drivers/media/video/uvc/uvc_queue.c
+++ b/drivers/media/video/uvc/uvc_queue.c
@@ -172,6 +172,20 @@ int uvc_free_buffers(struct uvc_video_queue *queue)
return 0;
}
+/*
+ * Check if buffers have been allocated.
+ */
+int uvc_queue_allocated(struct uvc_video_queue *queue)
+{
+ int allocated;
+
+ mutex_lock(&queue->mutex);
+ allocated = queue->count != 0;
+ mutex_unlock(&queue->mutex);
+
+ return allocated;
+}
+
static void __uvc_query_buffer(struct uvc_buffer *buf,
struct v4l2_buffer *v4l2_buf)
{