From: Huang Shijie <shijie8@gmail.com>
To: Hans Verkuil <hverkuil@xs4all.nl>
Cc: linux-media@vger.kernel.org, Hans Verkuil <hans.verkuil@cisco.com>
Subject: Re: [RFC PATCH 16/18] tlg2300: allow multiple opens.
Date: Sun, 03 Feb 2013 23:54:07 -0500 [thread overview]
Message-ID: <510F3EEF.4090700@gmail.com> (raw)
In-Reply-To: <b4fbf6957c11847887cc13bb62281ef43fe8249d.1359627298.git.hans.verkuil@cisco.com>
于 2013年01月31日 05:25, Hans Verkuil 写道:
> From: Hans Verkuil <hans.verkuil@cisco.com>
>
> Due to a poor administration of the driver state it wasn't possible to open
> a video or vbi device multiple times.
>
> Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
> ---
> drivers/media/usb/tlg2300/pd-common.h | 1 -
> drivers/media/usb/tlg2300/pd-video.c | 40 +++++++++++++--------------------
> 2 files changed, 15 insertions(+), 26 deletions(-)
>
> diff --git a/drivers/media/usb/tlg2300/pd-common.h b/drivers/media/usb/tlg2300/pd-common.h
> index cb5cb0f..3010496 100644
> --- a/drivers/media/usb/tlg2300/pd-common.h
> +++ b/drivers/media/usb/tlg2300/pd-common.h
> @@ -26,7 +26,6 @@
> #define POSEIDON_STATE_ANALOG (0x0001)
> #define POSEIDON_STATE_FM (0x0002)
> #define POSEIDON_STATE_DVBT (0x0004)
> -#define POSEIDON_STATE_VBI (0x0008)
> #define POSEIDON_STATE_DISCONNECT (0x0080)
>
> #define PM_SUSPEND_DELAY 3
> diff --git a/drivers/media/usb/tlg2300/pd-video.c b/drivers/media/usb/tlg2300/pd-video.c
> index 4c045b3..834428d 100644
> --- a/drivers/media/usb/tlg2300/pd-video.c
> +++ b/drivers/media/usb/tlg2300/pd-video.c
> @@ -1352,12 +1352,14 @@ static int pd_video_open(struct file *file)
> mutex_lock(&pd->lock);
> usb_autopm_get_interface(pd->interface);
>
> - if (vfd->vfl_type == VFL_TYPE_GRABBER
> - && !(pd->state & POSEIDON_STATE_ANALOG)) {
> - front = kzalloc(sizeof(struct front_face), GFP_KERNEL);
> - if (!front)
> - goto out;
> -
> + if (pd->state && !(pd->state & POSEIDON_STATE_ANALOG)) {
> + ret = -EBUSY;
> + goto out;
> + }
> + front = kzalloc(sizeof(struct front_face), GFP_KERNEL);
> + if (!front)
> + goto out;
> + if (vfd->vfl_type == VFL_TYPE_GRABBER) {
> pd->cur_transfer_mode = usb_transfer_mode;/* bulk or iso */
> init_video_context(&pd->video_data.context);
>
> @@ -1368,7 +1370,6 @@ static int pd_video_open(struct file *file)
> goto out;
> }
>
> - pd->state |= POSEIDON_STATE_ANALOG;
> front->type = V4L2_BUF_TYPE_VIDEO_CAPTURE;
> pd->video_data.users++;
> set_debug_mode(vfd, debug_mode);
> @@ -1379,13 +1380,7 @@ static int pd_video_open(struct file *file)
> V4L2_FIELD_INTERLACED,/* video is interlacd */
> sizeof(struct videobuf_buffer),/*it's enough*/
> front, NULL);
> - } else if (vfd->vfl_type == VFL_TYPE_VBI
> - && !(pd->state & POSEIDON_STATE_VBI)) {
> - front = kzalloc(sizeof(struct front_face), GFP_KERNEL);
> - if (!front)
> - goto out;
> -
> - pd->state |= POSEIDON_STATE_VBI;
> + } else {
> front->type = V4L2_BUF_TYPE_VBI_CAPTURE;
> pd->vbi_data.front = front;
> pd->vbi_data.users++;
> @@ -1396,19 +1391,15 @@ static int pd_video_open(struct file *file)
> V4L2_FIELD_NONE, /* vbi is NONE mode */
> sizeof(struct videobuf_buffer),
> front, NULL);
> - } else {
> - /* maybe add FM support here */
> - log("other ");
> - ret = -EINVAL;
> - goto out;
> }
>
> - front->pd = pd;
> - front->curr_frame = NULL;
> + pd->state |= POSEIDON_STATE_ANALOG;
> + front->pd = pd;
> + front->curr_frame = NULL;
> INIT_LIST_HEAD(&front->active);
> spin_lock_init(&front->queue_lock);
>
> - file->private_data = front;
> + file->private_data = front;
> kref_get(&pd->kref);
>
> mutex_unlock(&pd->lock);
> @@ -1429,8 +1420,6 @@ static int pd_video_release(struct file *file)
> mutex_lock(&pd->lock);
>
> if (front->type == V4L2_BUF_TYPE_VIDEO_CAPTURE) {
> - pd->state &= ~POSEIDON_STATE_ANALOG;
> -
> /* stop the device, and free the URBs */
> usb_transfer_stop(&pd->video_data);
> free_all_urb(&pd->video_data);
> @@ -1442,10 +1431,11 @@ static int pd_video_release(struct file *file)
> pd->file_for_stream = NULL;
> pd->video_data.users--;
> } else if (front->type == V4L2_BUF_TYPE_VBI_CAPTURE) {
> - pd->state &= ~POSEIDON_STATE_VBI;
> pd->vbi_data.front = NULL;
> pd->vbi_data.users--;
> }
> + if (!pd->vbi_data.users && !pd->video_data.users)
> + pd->state &= ~POSEIDON_STATE_ANALOG;
> videobuf_stop(&front->q);
> videobuf_mmap_free(&front->q);
>
Acked-by: Huang Shijie <shijie8@gmail.com>
next prev parent reply other threads:[~2013-02-03 15:50 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-31 10:25 [RFC PATCH 00/18] tlg2300: various v4l2-compliance fixes Hans Verkuil
2013-01-31 10:25 ` [RFC PATCH 01/18] tlg2300: use correct device parent Hans Verkuil
2013-01-31 10:25 ` [RFC PATCH 02/18] tlg2300: fix tuner and frequency handling of the radio device Hans Verkuil
2013-02-04 3:46 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 03/18] tlg2300: switch to unlocked_ioctl Hans Verkuil
2013-02-04 3:48 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 04/18] tlg2300: remove ioctls that are invalid for radio devices Hans Verkuil
2013-02-04 4:16 ` Huang Shijie
2013-02-04 8:34 ` Hans Verkuil
2013-02-05 4:03 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 05/18] tlg2300: embed video_device instead of allocating it Hans Verkuil
2013-02-04 4:26 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 06/18] tlg2300: add control handler for radio device node Hans Verkuil
2013-02-04 4:47 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 07/18] tlg2300: switch to v4l2_fh Hans Verkuil
2013-02-04 4:32 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 08/18] tlg2300: fix radio querycap Hans Verkuil
2013-02-04 4:36 ` Huang Shijie
2013-02-04 8:38 ` Hans Verkuil
2013-02-05 4:07 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 09/18] tlg2300: add missing video_unregister_device Hans Verkuil
2013-02-04 4:38 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 10/18] tlg2300: embed video_device Hans Verkuil
2013-02-04 4:39 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 11/18] tlg2300: fix querycap Hans Verkuil
2013-02-04 4:43 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 12/18] tlg2300: fix frequency handling Hans Verkuil
2013-02-04 4:44 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 13/18] tlg2300: fix missing audioset Hans Verkuil
2013-02-04 4:48 ` Huang Shijie
2013-02-04 8:39 ` Hans Verkuil
2013-02-05 4:07 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 14/18] tlg2300: implement the control framework Hans Verkuil
2013-02-04 4:46 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 15/18] tlg2300: remove empty vidioc_try_fmt_vid_cap, add missing g_std Hans Verkuil
2013-02-04 4:51 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 16/18] tlg2300: allow multiple opens Hans Verkuil
2013-02-04 4:54 ` Huang Shijie [this message]
2013-01-31 10:25 ` [RFC PATCH 17/18] tlg2300: Remove logs() macro Hans Verkuil
2013-02-04 4:54 ` Huang Shijie
2013-01-31 10:25 ` [RFC PATCH 18/18] tlg2300: update MAINTAINERS file Hans Verkuil
2013-02-04 4:55 ` Huang Shijie
2013-02-04 8:40 ` Hans Verkuil
2013-02-04 2:40 ` [RFC PATCH 01/18] tlg2300: use correct device parent Huang Shijie
2013-02-04 8:40 ` Hans Verkuil
2013-02-01 2:22 ` [RFC PATCH 00/18] tlg2300: various v4l2-compliance fixes Huang Shijie
2013-02-01 7:49 ` Hans Verkuil
2013-02-01 8:02 ` Huang Shijie
2013-02-01 8:07 ` 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=510F3EEF.4090700@gmail.com \
--to=shijie8@gmail.com \
--cc=hans.verkuil@cisco.com \
--cc=hverkuil@xs4all.nl \
--cc=linux-media@vger.kernel.org \
/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;
as well as URLs for NNTP newsgroup(s).