From: khilman@baylibre.com (Kevin Hilman)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 1/4] [media] davinci: vpif_capture: don't lock over s_stream
Date: Tue, 06 Dec 2016 08:49:38 -0800 [thread overview]
Message-ID: <m237i1gfz1.fsf@baylibre.com> (raw)
In-Reply-To: <4747860.QGGHSuFRpz@avalon> (Laurent Pinchart's message of "Wed, 30 Nov 2016 10:32:33 +0200")
Laurent Pinchart <laurent.pinchart@ideasonboard.com> writes:
> Hi Kevin,
>
> Thank you for the patch.
>
> On Tuesday 29 Nov 2016 15:57:09 Kevin Hilman wrote:
>> Video capture subdevs may be over I2C and may sleep during xfer, so we
>> cannot do IRQ-disabled locking when calling the subdev.
>>
>> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
>> ---
>> drivers/media/platform/davinci/vpif_capture.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/media/platform/davinci/vpif_capture.c
>> b/drivers/media/platform/davinci/vpif_capture.c index
>> 5104cc0ee40e..9f8f41c0f251 100644
>> --- a/drivers/media/platform/davinci/vpif_capture.c
>> +++ b/drivers/media/platform/davinci/vpif_capture.c
>> @@ -193,7 +193,10 @@ static int vpif_start_streaming(struct vb2_queue *vq,
>> unsigned int count) }
>> }
>>
>> + spin_unlock_irqrestore(&common->irqlock, flags);
>> ret = v4l2_subdev_call(ch->sd, video, s_stream, 1);
>> + spin_lock_irqsave(&common->irqlock, flags);
>
> I always get anxious when I see a spinlock being released randomly with an
> operation in the middle of a protected section. Looking at the code it looks
> like the spinlock is abused here. irqlock should only protect the dma_queue
> and should thus only be taken around the following code:
>
> spin_lock_irqsave(&common->irqlock, flags);
> /* Get the next frame from the buffer queue */
> common->cur_frm = common->next_frm = list_entry(common->dma_queue.next,
> struct vpif_cap_buffer, list);
> /* Remove buffer from the buffer queue */
> list_del(&common->cur_frm->list);
> spin_unlock_irqrestore(&common->irqlock, flags);
Yes, that looks correct. Will update.
> The code that is currently protected by the lock in the start and stop
> streaming functions should be protected by a mutex instead.
I tried taking the mutex here, but lockdep pointed out a deadlock. I
may not be fully understanding the V4L2 internals here, but it seems
that the ioctl is already taking a mutex, so taking it again in
start/stop streaming is a deadlock. Unless you think the locking should
be nested here, it seems to me that the mutex isn't needed.
Kevin
WARNING: multiple messages have this Message-ID (diff)
From: Kevin Hilman <khilman@baylibre.com>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: devicetree@vger.kernel.org, Sekhar Nori <nsekhar@ti.com>,
Hans Verkuil <hverkuil@xs4all.nl>,
Sakari Ailus <sakari.ailus@iki.fi>,
linux-arm-kernel@lists.infradead.org,
linux-media@vger.kernel.org
Subject: Re: [PATCH v4 1/4] [media] davinci: vpif_capture: don't lock over s_stream
Date: Tue, 06 Dec 2016 08:49:38 -0800 [thread overview]
Message-ID: <m237i1gfz1.fsf@baylibre.com> (raw)
In-Reply-To: <4747860.QGGHSuFRpz@avalon> (Laurent Pinchart's message of "Wed, 30 Nov 2016 10:32:33 +0200")
Laurent Pinchart <laurent.pinchart@ideasonboard.com> writes:
> Hi Kevin,
>
> Thank you for the patch.
>
> On Tuesday 29 Nov 2016 15:57:09 Kevin Hilman wrote:
>> Video capture subdevs may be over I2C and may sleep during xfer, so we
>> cannot do IRQ-disabled locking when calling the subdev.
>>
>> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
>> ---
>> drivers/media/platform/davinci/vpif_capture.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/media/platform/davinci/vpif_capture.c
>> b/drivers/media/platform/davinci/vpif_capture.c index
>> 5104cc0ee40e..9f8f41c0f251 100644
>> --- a/drivers/media/platform/davinci/vpif_capture.c
>> +++ b/drivers/media/platform/davinci/vpif_capture.c
>> @@ -193,7 +193,10 @@ static int vpif_start_streaming(struct vb2_queue *vq,
>> unsigned int count) }
>> }
>>
>> + spin_unlock_irqrestore(&common->irqlock, flags);
>> ret = v4l2_subdev_call(ch->sd, video, s_stream, 1);
>> + spin_lock_irqsave(&common->irqlock, flags);
>
> I always get anxious when I see a spinlock being released randomly with an
> operation in the middle of a protected section. Looking at the code it looks
> like the spinlock is abused here. irqlock should only protect the dma_queue
> and should thus only be taken around the following code:
>
> spin_lock_irqsave(&common->irqlock, flags);
> /* Get the next frame from the buffer queue */
> common->cur_frm = common->next_frm = list_entry(common->dma_queue.next,
> struct vpif_cap_buffer, list);
> /* Remove buffer from the buffer queue */
> list_del(&common->cur_frm->list);
> spin_unlock_irqrestore(&common->irqlock, flags);
Yes, that looks correct. Will update.
> The code that is currently protected by the lock in the start and stop
> streaming functions should be protected by a mutex instead.
I tried taking the mutex here, but lockdep pointed out a deadlock. I
may not be fully understanding the V4L2 internals here, but it seems
that the ioctl is already taking a mutex, so taking it again in
start/stop streaming is a deadlock. Unless you think the locking should
be nested here, it seems to me that the mutex isn't needed.
Kevin
WARNING: multiple messages have this Message-ID (diff)
From: Kevin Hilman <khilman@baylibre.com>
To: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Cc: linux-media@vger.kernel.org, Hans Verkuil <hverkuil@xs4all.nl>,
Sakari Ailus <sakari.ailus@iki.fi>,
linux-arm-kernel@lists.infradead.org,
Sekhar Nori <nsekhar@ti.com>, Rob Herring <robh@kernel.org>,
devicetree@vger.kernel.org
Subject: Re: [PATCH v4 1/4] [media] davinci: vpif_capture: don't lock over s_stream
Date: Tue, 06 Dec 2016 08:49:38 -0800 [thread overview]
Message-ID: <m237i1gfz1.fsf@baylibre.com> (raw)
In-Reply-To: <4747860.QGGHSuFRpz@avalon> (Laurent Pinchart's message of "Wed, 30 Nov 2016 10:32:33 +0200")
Laurent Pinchart <laurent.pinchart@ideasonboard.com> writes:
> Hi Kevin,
>
> Thank you for the patch.
>
> On Tuesday 29 Nov 2016 15:57:09 Kevin Hilman wrote:
>> Video capture subdevs may be over I2C and may sleep during xfer, so we
>> cannot do IRQ-disabled locking when calling the subdev.
>>
>> Signed-off-by: Kevin Hilman <khilman@baylibre.com>
>> ---
>> drivers/media/platform/davinci/vpif_capture.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/media/platform/davinci/vpif_capture.c
>> b/drivers/media/platform/davinci/vpif_capture.c index
>> 5104cc0ee40e..9f8f41c0f251 100644
>> --- a/drivers/media/platform/davinci/vpif_capture.c
>> +++ b/drivers/media/platform/davinci/vpif_capture.c
>> @@ -193,7 +193,10 @@ static int vpif_start_streaming(struct vb2_queue *vq,
>> unsigned int count) }
>> }
>>
>> + spin_unlock_irqrestore(&common->irqlock, flags);
>> ret = v4l2_subdev_call(ch->sd, video, s_stream, 1);
>> + spin_lock_irqsave(&common->irqlock, flags);
>
> I always get anxious when I see a spinlock being released randomly with an
> operation in the middle of a protected section. Looking at the code it looks
> like the spinlock is abused here. irqlock should only protect the dma_queue
> and should thus only be taken around the following code:
>
> spin_lock_irqsave(&common->irqlock, flags);
> /* Get the next frame from the buffer queue */
> common->cur_frm = common->next_frm = list_entry(common->dma_queue.next,
> struct vpif_cap_buffer, list);
> /* Remove buffer from the buffer queue */
> list_del(&common->cur_frm->list);
> spin_unlock_irqrestore(&common->irqlock, flags);
Yes, that looks correct. Will update.
> The code that is currently protected by the lock in the start and stop
> streaming functions should be protected by a mutex instead.
I tried taking the mutex here, but lockdep pointed out a deadlock. I
may not be fully understanding the V4L2 internals here, but it seems
that the ioctl is already taking a mutex, so taking it again in
start/stop streaming is a deadlock. Unless you think the locking should
be nested here, it seems to me that the mutex isn't needed.
Kevin
next prev parent reply other threads:[~2016-12-06 16:49 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-29 23:57 [PATCH v4 0/4] davinci: VPIF: add DT support Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-11-29 23:57 ` [PATCH v4 1/4] [media] davinci: vpif_capture: don't lock over s_stream Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-11-30 8:32 ` Laurent Pinchart
2016-11-30 8:32 ` Laurent Pinchart
2016-12-06 16:49 ` Kevin Hilman [this message]
2016-12-06 16:49 ` Kevin Hilman
2016-12-06 16:49 ` Kevin Hilman
2016-12-07 15:47 ` Laurent Pinchart
2016-12-07 15:47 ` Laurent Pinchart
2016-12-07 15:47 ` Laurent Pinchart
2016-12-07 16:06 ` Kevin Hilman
2016-12-07 16:06 ` Kevin Hilman
2016-12-07 16:06 ` Kevin Hilman
2016-11-29 23:57 ` [PATCH v4 2/4] [media] davinci: VPIF: add basic support for DT init Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-11-29 23:57 ` [PATCH v4 3/4] [media] davinci: vpif_capture: get subdevs from DT Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-11-29 23:57 ` [PATCH v4 4/4] [media] dt-bindings: add TI VPIF documentation Kevin Hilman
2016-11-29 23:57 ` Kevin Hilman
2016-12-05 22:27 ` Rob Herring
2016-12-05 22:27 ` Rob Herring
2016-12-05 22:27 ` Rob Herring
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=m237i1gfz1.fsf@baylibre.com \
--to=khilman@baylibre.com \
--cc=linux-arm-kernel@lists.infradead.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.