V4L/DVB (13230): s2255drv: Don't conditionalize video buffer completion on waiting...
authorMike Isely <isely@pobox.com>
Wed, 23 Sep 2009 21:06:57 +0000 (18:06 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Sat, 7 Nov 2009 14:55:10 +0000 (12:55 -0200)
commit1f95725755ab67f3198df3b5bf7517f926f310ca
tree9efac277e8c0db2e0a22e1716d1d58ab3ba0b578
parent78c948ab0cc44f9c8ae397d7d9d217bb498bfa2f
V4L/DVB (13230): s2255drv: Don't conditionalize video buffer completion on waiting processes

The s2255 driver had logic which aborted processing of a video frame
if there was no process waiting on the video buffer in question.  That
simply doesn't work when the application is doing things in an
asynchronous manner.  If the application went to the trouble to queue
the buffer in the first place, then the driver should always attempt
to complete it - even if the application at that moment has its
attention turned elsewhere.  Applications which always blocked waiting
for I/O on the capture device would not have been affected by this.
Applications which *mostly* blocked waiting for I/O on the capture
device probably only would have been somewhat affected (frame lossage,
at a rate which goes up as the application blocks less).  Applications
which never blocked on the capture device (e.g. polling only) however
would never have been able to receive any video frames, since in that
case this "is anyone waiting on this?" check on the buffer never would
have evalutated true.  This patch just deletes that harmful check
against the buffer's wait queue.

Signed-off-by: Mike Isely <isely@pobox.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
CC: stable@kernel.org
drivers/media/video/s2255drv.c