Re: [RFCv3 PATCH 12/18] vb2_poll: don't start DMA, leave that to the first read().

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Tuesday, June 28, 2011 09:33:57 Hans Verkuil wrote:
> On Monday, June 27, 2011 23:52:37 Mauro Carvalho Chehab wrote:
> > Em 07-06-2011 12:05, Hans Verkuil escreveu:
> > > From: Hans Verkuil <hans.verkuil@xxxxxxxxx>
> > > 
> > > The vb2_poll function would start read-DMA if called without any streaming
> > > in progress. This unfortunately does not work if the application just wants
> > > to poll for exceptions. This information of what the application is polling
> > > for is sadly unavailable in the driver.
> > > 
> > > Andy Walls suggested to just return POLLIN | POLLRDNORM and let the first
> > > call to read() start the DMA. This initial read() call will return EAGAIN
> > > since no actual data is available yet, but it does start the DMA.
> > > 
> > > Applications must handle EAGAIN in any case since there can be other reasons
> > > for EAGAIN as well.
> > > 
> > > Signed-off-by: Hans Verkuil <hans.verkuil@xxxxxxxxx>
> > > ---
> > >  drivers/media/video/videobuf2-core.c |   17 +++--------------
> > >  1 files changed, 3 insertions(+), 14 deletions(-)
> > > 
> > > diff --git a/drivers/media/video/videobuf2-core.c b/drivers/media/video/videobuf2-core.c
> > > index 6ba1461..ad75c95 100644
> > > --- a/drivers/media/video/videobuf2-core.c
> > > +++ b/drivers/media/video/videobuf2-core.c
> > > @@ -1372,27 +1372,16 @@ static int __vb2_cleanup_fileio(struct vb2_queue *q);
> > >  unsigned int vb2_poll(struct vb2_queue *q, struct file *file, poll_table *wait)
> > >  {
> > >  	unsigned long flags;
> > > -	unsigned int ret;
> > >  	struct vb2_buffer *vb = NULL;
> > >  
> > >  	/*
> > >  	 * Start file I/O emulator only if streaming API has not been used yet.
> > >  	 */
> > >  	if (q->num_buffers == 0 && q->fileio == NULL) {
> > > -		if (!V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_READ)) {
> > > -			ret = __vb2_init_fileio(q, 1);
> > > -			if (ret)
> > > -				return POLLERR;
> > > -		}
> > > -		if (V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_WRITE)) {
> > > -			ret = __vb2_init_fileio(q, 0);
> > > -			if (ret)
> > > -				return POLLERR;
> > > -			/*
> > > -			 * Write to OUTPUT queue can be done immediately.
> > > -			 */
> > > +		if (!V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_READ))
> > > +			return POLLIN | POLLRDNORM;
> > > +		if (V4L2_TYPE_IS_OUTPUT(q->type) && (q->io_modes & VB2_WRITE))
> > >  			return POLLOUT | POLLWRNORM;
> > > -		}
> > >  	}
> > 
> > There is one behavior change on this patchset:  __vb2_init_fileio() checks for some
> > troubles that may happen during device streaming initialization, returning POLLERR
> > if there is a problem there.
> > 
> > By moving this code to be called only at read, it means the poll() will not fail
> > anymore, but the first read() will fail. The man page for read() doesn't tell that
> > -EBUSY or -ENOMEM could happen there. The same happens with V4L2 specs. So, it is
> > clearly violating kernel ABI.
> > 
> > NACK.
> 
> Actually, almost nothing changes in the ABI. It's counterintuitive, but
> this is what happens:
> 
> 1) The poll() function in a driver does not actually return any error codes.
> It never did. It returns a poll mask, which is expected to be POLLERR in case
> of any error. All that it does is that select() returns if it waits for reading
> or writing. Any actual error codes are never propagated. This means BTW that
> our poll manual page is wrong (what a surprise), most of those error codes can
> never be returned.
> 
> 2) Suppose we try to start streaming in poll. If this works, then poll returns,
> with POLLIN set, and the next read() will succeed (actually, it can return an
> error as well, but for other error conditions in case of e.g. hardware errors).
> 
> The problem with this is of course that this will also start the streaming if
> all we wanted to wait for was an exception. That's not what we want at all.
> Ideally we could inspect in the driver what the caller wanted to wait for, but
> that information is not available, unfortunately.
> 
> 3) The other case is that we try to start streaming in poll and it fails.
> In that case any errors are lost and poll returns POLLERR (note that the poll(2)
> manual page says that POLLERR is for output only, but clearly in the linux
> kernel it is accepted both input and output).
> 
> But for the select() call this POLLERR information is lost as well and the
> application will call read() anyway, which now will attempt to start the
> streaming (again after poll() tried it the first time) and this time it
> returns the actual error code.
> 
> Just try this with capture-example: start it in mmap mode, then try to run
> it in read mode from a second console. The EBUSY error comes from the read()
> command, not from select(). With or without this patch, capture-example
> behaves exactly the same.
> 
> The only ABI change I see is with poll(2) and epoll(7) where POLLERR is no
> longer returned. Since this isn't documented at all anyway (and the poll(2)
> manual page is actually unclear about whether you can expect it), I am
> actually quite happy with this change. After this analysis I realized it is
> even better than expected.
> 
> I never liked that poll starts streaming, poll should be a fast function,
> not something that does a lot of other things.
> 
> It's actually a very nice change, but I admit that it is tricky to analyze.

Just two more remarks: POLLERR as a poll return code is pretty useless:
applications can't use it to determine what the error is. There is a big
difference between a ENOMEM or a EBUSY. The only way to find out is to do
a read().

Another problem I have with starting streaming in poll() is that starting
streaming can take a long time depending on the hardware. That's really not
what poll() is for. If this fd is part of a larger set with e.g. socket fds,
then you really don't want to have the event polling thread block for 10s of
milliseconds.

It's a very poor design. Changing this part doesn't affect applications as
far as I can see, but it makes poll() much simpler and usable again when you
just want to poll for events.

Note also that this change only affects applications that use the poll API
as opposed to select(), test for POLLERR in revents, use read() instead of
the streaming API and do not test for read() errors.

That's one API change I'm happy to make.

Regards,

	Hans
--
To unsubscribe from this list: send the line "unsubscribe linux-media" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[Index of Archives]     [Linux Input]     [Video for Linux]     [Gstreamer Embedded]     [Mplayer Users]     [Linux USB Devel]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Yosemite Backpacking]
  Powered by Linux