linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] v4l2 VIDIOC_DQBUF typo in 2.6.18
@ 2006-09-25 12:58 Jonathan Corbet
  2006-09-25 13:24 ` Mauro Carvalho Chehab
  0 siblings, 1 reply; 2+ messages in thread
From: Jonathan Corbet @ 2006-09-25 12:58 UTC (permalink / raw)
  To: linux-kernel; +Cc: akpm, mchehab, stable, s.hauer


It seems that, in the rush to create the new V4L2 ioctl() API, the
VIDIOC_DQBUF code got cut-and-pasted in without being fixed up.  I went
and made a patch, only to discover that Sascha Hauer beat me to it.
That patch doesn't seem to have been picked up yet, however.  Since it's
important (streaming I/O will not work without it), here's an attempt to
spread it a bit more widely.

jon


From: Sascha Hauer <s.hauer@pengutronix.de>
Subject: [PATCH] copy-paste bug in videodev.c
Date: Mon, 11 Sep 2006 10:50:55 +0200
To: video4linux-list@redhat.com

This patch fixes a copy-paste bug in videodev.c where the vidioc_qbuf()
function gets called for the dqbuf ioctl.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>

diff --git a/drivers/media/video/videodev.c
b/drivers/media/video/videodev.c
index 88bf2af..8abee33 100644
--- a/drivers/media/video/videodev.c
+++ b/drivers/media/video/videodev.c
@@ -739,13 +739,13 @@ static int __video_do_ioctl(struct inode
 	case VIDIOC_DQBUF:
 	{
 		struct v4l2_buffer *p=arg;
-		if (!vfd->vidioc_qbuf)
+		if (!vfd->vidioc_dqbuf)
 			break;
 		ret = check_fmt (vfd, p->type);
 		if (ret)
 			break;
 
-		ret=vfd->vidioc_qbuf(file, fh, p);
+		ret=vfd->vidioc_dqbuf(file, fh, p);
 		if (!ret)
 			dbgbuf(cmd,vfd,p);
 		break;


-- 
 Dipl.-Ing. Sascha Hauer | http://www.pengutronix.de
  Pengutronix - Linux Solutions for Science and Industry
    Handelsregister: Amtsgericht Hildesheim, HRA 2686
      Hannoversche Str. 2, 31134 Hildesheim, Germany
    Phone: +49-5121-206917-0 |  Fax: +49-5121-206917-9

--
video4linux-list mailing list
Unsubscribe mailto:video4linux-list-request@redhat.com?subject=unsubscribe
https://www.redhat.com/mailman/listinfo/video4linux-list


--=-=-=--

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

* Re: [PATCH] v4l2 VIDIOC_DQBUF typo in 2.6.18
  2006-09-25 12:58 [PATCH] v4l2 VIDIOC_DQBUF typo in 2.6.18 Jonathan Corbet
@ 2006-09-25 13:24 ` Mauro Carvalho Chehab
  0 siblings, 0 replies; 2+ messages in thread
From: Mauro Carvalho Chehab @ 2006-09-25 13:24 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: linux-kernel, akpm, stable, s.hauer

Hi, Jonathan,

Em Seg, 2006-09-25 às 06:58 -0600, Jonathan Corbet escreveu:
> It seems that, in the rush to create the new V4L2 ioctl() API, the
> VIDIOC_DQBUF code got cut-and-pasted in without being fixed up.
Yes.
> I went and made a patch, only to discover that Sascha Hauer beat me to it.
It is already corrected at my -git tree and at V4L/DVB development tree,
available at http://linuxtv.org/hg. The correction is also at -mm
series.

This trouble were discovered too late at 2.6.18 cycle, and affected just
vivi module, used to emulate a v4l2 driver. It is likely to affect just
driver and userspace developers.

> That patch doesn't seem to have been picked up yet, however.  Since it's
> important (streaming I/O will not work without it), here's an attempt to
> spread it a bit more widely.

Cheers, 
Mauro.


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

end of thread, other threads:[~2006-09-25 13:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-09-25 12:58 [PATCH] v4l2 VIDIOC_DQBUF typo in 2.6.18 Jonathan Corbet
2006-09-25 13:24 ` Mauro Carvalho Chehab

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).