public inbox for linux-media@vger.kernel.org
 help / color / mirror / Atom feed
From: Mauro Carvalho Chehab <mchehab@redhat.com>
To: Andy Walls <awalls@md.metrocast.net>
Cc: Hans Verkuil <hverkuil@xs4all.nl>,
	linux-media@vger.kernel.org,
	Hans Verkuil <hans.verkuil@cisco.com>,
	Pawel Osciak <pawel@osciak.com>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	Kyungmin Park <kyungmin.park@samsung.com>
Subject: Re: [RFCv3 PATCH 12/18] vb2_poll: don't start DMA, leave that to the first read().
Date: Wed, 29 Jun 2011 08:37:25 -0300	[thread overview]
Message-ID: <4E0B0E75.5030505@redhat.com> (raw)
In-Reply-To: <1309324089.2359.89.camel@palomino.walls.org>

Em 29-06-2011 02:08, Andy Walls escreveu:
> On Tue, 2011-06-28 at 21:00 -0300, Mauro Carvalho Chehab wrote:
>> Em 28-06-2011 20:14, Andy Walls escreveu:
>>> On Tue, 2011-06-28 at 09:43 -0300, Mauro Carvalho Chehab wrote:
>>>> Em 28-06-2011 09:21, Andy Walls escreveu:
>>>
>>>>> It is also the case that a driver's poll method should never sleep.
>>>>
>>>> True.
>>>
>>>>> One issue is how to start streaming with apps that:
>>>>> - Open /dev/video/ in a nonblocking mode, and
>>>>> - Use the read() method
>>>>>
>>>>> while doing it in a way that is POSIX compliant and doesn't break existing apps.  
>>>>
>>>> Well, a first call for poll() may rise a thread that will prepare the buffers, and
>>>> return with 0 while there's no data available.
>>>
>>> Sure, but that doesn't solve the problem of an app only select()-ing or
>>> poll()-ing for exception fd's and not starting any IO.
>>
>> Well, a file descriptor can be used only for one thing: or it is a stream file
>> descriptor, or it is an event descriptor. You can't have both for the same
>> file descriptor. If an application need to check for both, the standard Unix way is:
>>
>> 	fd_set set;
>>
>> 	FD_ZERO (&set);
>> 	FD_SET (fd_stream, &set);
>> 	FD_SET (fd_event, &set);
>>
>> 	select (FD_SETSIZE, &set, NULL, NULL, &timeout);
>>
>> In other words, or the events nodes need to be different, or an ioctl is needed
>> in order to tell the Kernel that the associated file descriptor will be used
>> for an event, and that vb2 should not bother with it.
> 
> Um, no, that is not correct for Unix fd's and socket descriptors in
> general.  I realize that v4l2 events need to be enabled with an ioctl(),
> but do we have a restriction that that can't happen on the same fd as
> the one used for streaming?
> 
> Back in the days before threads were commonly available on Unix systems,
> a process would use a single thread calling select() to handle I/O on a
> serial port:
> 
> 	fd_set rfds, wfds;
> 	int ttyfd;
> 	...
> 	FD_ZERO(&rfds);
> 	FD_SET(ttyfd, &rfds);
> 	FD_ZERO(&wfds);
> 	FD_SET(ttyfd, &wfds);
> 
> 	n = select(ttyfd+1, &rfds, &wfds, NULL, NULL);
> 
> Or TCP socket
> 
> 	fd_set rfds, wfds, efds;
> 	int sockd;
> 	...
> 	FD_ZERO(&rfds);
> 	FD_SET(sockd, &rfds);
> 	FD_ZERO(&wfds);
> 	FD_SET(sockd, &wfds);
> 	FD_ZERO(&efds);
> 	FD_SET(sockd, &efds);
> 
> 	n = select(sockd+1, &rfds, &wfds, &efds, NULL);

On both serial and socket devices, if select returns a file descriptor,
the data is there or the device/socket got disconnected.

> Waiting for data to arrive on an fd, while not streaming is an error
> condition for select() should return. 

Yes, but poll() starts the streaming, if the mmap mode were not started, 
according with the V4L2 spec:
	http://linuxtv.org/downloads/v4l-dvb-apis/func-poll.html

Thanks,
Mauro.

  reply	other threads:[~2011-06-29 11:37 UTC|newest]

Thread overview: 42+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-06-07 15:05 [RFCv3 PATCH 00/18] Add Control Event and autofoo/foo support Hans Verkuil
2011-06-07 15:05 ` [RFCv3 PATCH 01/18] v4l2-ctrls: introduce call_op define Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 02/18] v4l2-ctrls: simplify error_idx handling Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 03/18] v4l2-ctrls: drivers should be able to ignore the READ_ONLY flag Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 04/18] v4l2-ioctl: add ctrl_handler to v4l2_fh Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 05/18] v4l2-subdev: implement per-filehandle control handlers Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 06/18] v4l2-ctrls: fix and improve volatile control handling Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 07/18] v4l2-controls.txt: update to latest v4l2-ctrl.c changes Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 08/18] v4l2-ctrls: add v4l2_ctrl_auto_cluster to simplify autogain/gain scenarios Hans Verkuil
2011-06-20 13:05     ` Laurent Pinchart
2011-06-20 13:16       ` Hans Verkuil
2011-06-27 20:57     ` Mauro Carvalho Chehab
2011-06-28  6:08       ` Hans Verkuil
2011-06-28 10:25         ` Mauro Carvalho Chehab
2011-06-27 21:10     ` Mauro Carvalho Chehab
2011-06-28  6:11       ` Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 09/18] DocBook: Improve cluster documentation and document the new autoclusters Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 10/18] vivi: add autogain/gain support to test the autocluster functionality Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 11/18] v4l2-ctrls: add v4l2_fh pointer to the set control functions Hans Verkuil
2011-06-27 21:20     ` Mauro Carvalho Chehab
2011-06-28  6:22       ` Hans Verkuil
2011-06-28 10:27         ` Mauro Carvalho Chehab
2011-06-07 15:05   ` [RFCv3 PATCH 12/18] vb2_poll: don't start DMA, leave that to the first read() Hans Verkuil
2011-06-27 21:52     ` Mauro Carvalho Chehab
2011-06-28  7:33       ` Hans Verkuil
2011-06-28  9:01         ` Hans Verkuil
2011-06-28 11:20         ` Mauro Carvalho Chehab
2011-06-28 12:21           ` Andy Walls
2011-06-28 12:43             ` Mauro Carvalho Chehab
2011-06-28 13:58               ` Hans Verkuil
2011-06-29  6:30                 ` Hans Verkuil
2011-06-28 23:14               ` Andy Walls
2011-06-29  0:00                 ` Mauro Carvalho Chehab
2011-06-29  5:08                   ` Andy Walls
2011-06-29 11:37                     ` Mauro Carvalho Chehab [this message]
2011-06-07 15:05   ` [RFCv3 PATCH 13/18] v4l2-ctrls: add control events Hans Verkuil
2011-06-20 13:33     ` Laurent Pinchart
2011-06-07 15:05   ` [RFCv3 PATCH 14/18] v4l2-ctrls: simplify event subscription Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 15/18] V4L2 spec: document control events Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 16/18] vivi: support " Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 17/18] ivtv: add control event support Hans Verkuil
2011-06-07 15:05   ` [RFCv3 PATCH 18/18] v4l2-compat-ioctl32: add VIDIOC_DQEVENT support Hans Verkuil

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4E0B0E75.5030505@redhat.com \
    --to=mchehab@redhat.com \
    --cc=awalls@md.metrocast.net \
    --cc=hans.verkuil@cisco.com \
    --cc=hverkuil@xs4all.nl \
    --cc=kyungmin.park@samsung.com \
    --cc=linux-media@vger.kernel.org \
    --cc=m.szyprowski@samsung.com \
    --cc=pawel@osciak.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox