From: Laurent Chavey <chavey@google.com>
To: Simon Kagstrom <simon.kagstrom@netinsight.net>
Cc: netdev@vger.kernel.org, davem@davemloft.net, davej@redhat.com,
ben@decadent.org.uk
Subject: Re: [PATCH 3/3] via-velocity: Fix races on shared interrupts
Date: Wed, 10 Feb 2010 09:41:59 -0800 [thread overview]
Message-ID: <97949e3e1002100941s34010bdfu1a52f95693d3a9e9@mail.gmail.com> (raw)
In-Reply-To: <20100205165545.28832c53@marrow.netinsight.se>
On Fri, Feb 5, 2010 at 7:55 AM, Simon Kagstrom
<simon.kagstrom@netinsight.net> wrote:
> This patch fixes two potential races in the velocity driver:
>
> * Move the ACK and error handler to the interrupt handler. This fixes a
> potential race with shared interrupts when the other device interrupts
> before the NAPI poll handler has finished. As the velocity driver hasn't
> acked it's own interrupt, it will then steal the interrupt from the
> other device.
>
> * Use spin_trylock in the interrupt handler. To avoid having the
> interrupt off for long periods of time, velocity_poll uses non-irqsave
> spinlocks. In the current code, the interrupt handler will deadlock if
> e.g., the NAPI poll handler is executing when an interrupt (for another
> device) comes in since it tries to take the already held lock.
>
> Signed-off-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
> Signed-off-by: Anders Grafstrom <anders.grafstrom@netinsight.net>
> ---
> drivers/net/via-velocity.c | 26 +++++++++++++++++---------
> 1 files changed, 17 insertions(+), 9 deletions(-)
>
> diff --git a/drivers/net/via-velocity.c b/drivers/net/via-velocity.c
> index 5e213f7..6882e7c 100644
> --- a/drivers/net/via-velocity.c
> +++ b/drivers/net/via-velocity.c
> @@ -2148,16 +2148,8 @@ static int velocity_poll(struct napi_struct *napi, int budget)
> struct velocity_info *vptr = container_of(napi,
> struct velocity_info, napi);
> unsigned int rx_done;
> - u32 isr_status;
>
> spin_lock(&vptr->lock);
> - isr_status = mac_read_isr(vptr->mac_regs);
> -
> - /* Ack the interrupt */
> - mac_write_isr(vptr->mac_regs, isr_status);
> - if (isr_status & (~(ISR_PRXI | ISR_PPRXI | ISR_PTXI | ISR_PPTXI)))
> - velocity_error(vptr, isr_status);
> -
> /*
> * Do rx and tx twice for performance (taken from the VIA
> * out-of-tree driver).
> @@ -2194,7 +2186,16 @@ static irqreturn_t velocity_intr(int irq, void *dev_instance)
> struct velocity_info *vptr = netdev_priv(dev);
> u32 isr_status;
>
> - spin_lock(&vptr->lock);
> + /* Check if the lock is taken, and if so ignore the interrupt. This
> + * can happen with shared interrupts, where the other device can
> + * interrupt during velocity_poll (where the lock is held).
> + *
> + * With spinlock debugging active on a uniprocessor, this will give
> + * a warning which can safely be ignored.
> + */
> + if (!spin_trylock(&vptr->lock))
> + return IRQ_NONE;
does the thread handling the interrupts check that an new
interrupts was received while it was servicing a previous one ?
wondering if there is a potential for an event that generates the interrupt
to be missed.
> +
> isr_status = mac_read_isr(vptr->mac_regs);
>
> /* Not us ? */
> @@ -2203,10 +2204,17 @@ static irqreturn_t velocity_intr(int irq, void *dev_instance)
> return IRQ_NONE;
> }
>
> + /* Ack the interrupt */
> + mac_write_isr(vptr->mac_regs, isr_status);
> +
> if (likely(napi_schedule_prep(&vptr->napi))) {
> mac_disable_int(vptr->mac_regs);
> __napi_schedule(&vptr->napi);
> }
> +
> + if (isr_status & (~(ISR_PRXI | ISR_PPRXI | ISR_PTXI | ISR_PPTXI)))
> + velocity_error(vptr, isr_status);
> +
> spin_unlock(&vptr->lock);
>
> return IRQ_HANDLED;
> --
> 1.6.0.4
>
> --
> To unsubscribe from this list: send the line "unsubscribe netdev" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
next prev parent reply other threads:[~2010-02-10 17:42 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-02-05 15:52 [PATCH 0/3]: via-velocity: Fixes for locking issues Simon Kagstrom
2010-02-05 15:54 ` [PATCH 1/3] via-velocity: Remove unused IRQ status parameter from rx_srv and tx_srv Simon Kagstrom
2010-02-05 15:55 ` [PATCH 2/3] via-velocity: Take spinlock on set coalesce Simon Kagstrom
2010-02-05 15:55 ` [PATCH 3/3] via-velocity: Fix races on shared interrupts Simon Kagstrom
2010-02-10 17:41 ` Laurent Chavey [this message]
2010-02-11 8:05 ` Simon Kagstrom
2010-02-10 0:31 ` [PATCH 0/3]: via-velocity: Fixes for locking issues David Miller
2010-02-10 9:33 ` Simon Kagstrom
2010-02-10 9:37 ` [PATCH v2 1/3] via-velocity: Remove unused IRQ status parameter from rx_srv and tx_srv Simon Kagstrom
2010-02-10 9:38 ` [PATCH v2 2/3] via-velocity: Take spinlock on set coalesce Simon Kagstrom
2010-02-10 9:38 ` [PATCH v2 3/3] via-velocity: Fix races on shared interrupts Simon Kagstrom
2010-02-10 18:55 ` [PATCH 0/3]: via-velocity: Fixes for locking issues David Miller
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=97949e3e1002100941s34010bdfu1a52f95693d3a9e9@mail.gmail.com \
--to=chavey@google.com \
--cc=ben@decadent.org.uk \
--cc=davej@redhat.com \
--cc=davem@davemloft.net \
--cc=netdev@vger.kernel.org \
--cc=simon.kagstrom@netinsight.net \
/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).