From: David Miller <davem@davemloft.net>
To: netdev@axxeo.de
Cc: netdev@vger.kernel.org, Ariel.Hendel@sun.com,
greg.onufer@sun.com, jeff@garzik.org, Ashley.Saulsbury@sun.com,
Matheos.Worku@sun.com
Subject: Re: [PATCH]: Third (final?) release of Sun Neptune driver
Date: Fri, 05 Oct 2007 17:08:49 -0700 (PDT) [thread overview]
Message-ID: <20071005.170849.78481094.davem@davemloft.net> (raw)
In-Reply-To: <200710051849.50091.netdev@axxeo.de>
From: Ingo Oeser <netdev@axxeo.de>
Date: Fri, 5 Oct 2007 18:49:49 +0200
> Ingo Oeser schrieb:
> > > +static void niu_init_xif(struct niu *);
> > > +
> > > +static int link_status_10g(struct niu *np, int *link_up_p)
> > > +{
> > > + unsigned long flags;
> > > + int err, link_up;
> > > +
> > > + if (np->link_config.loopback_mode != LOOPBACK_DISABLED)
> > > + return -EINVAL;
> > > +
> > > + link_up = 0;
> > > +
> > > + spin_lock_irqsave(&np->lock, flags);
> > > +
> > > + err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
> > > + BCM8704_PMD_RCV_SIGDET);
> > > + if (err < 0)
> > > + return err;
> >
> > missing spin_unlock_irqsave()?
>
> I mean spin_unlock_irqrestore()
Definitely a locking error, fixed below, thanks for catching
this Ingo!
>From 586752eb74a7f303eb2e0693bba0f0a8111ef1e7 Mon Sep 17 00:00:00 2001
From: David S. Miller <davem@sunset.davemloft.net>
Date: Fri, 5 Oct 2007 17:07:15 -0700
Subject: [PATCH] [NIU]: Fix locking errors in link_status_10g().
When MDIO accesses give an error we forget to drop the
np->lock, noticed by Ingo Oeser.
Signed-off-by: David S. Miller <davem@davemloft.net>
---
drivers/net/niu.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/net/niu.c b/drivers/net/niu.c
index 64b988b..1a38530 100644
--- a/drivers/net/niu.c
+++ b/drivers/net/niu.c
@@ -1100,21 +1100,21 @@ static int link_status_10g(struct niu *np, int *link_up_p)
err = mdio_read(np, np->phy_addr, BCM8704_PMA_PMD_DEV_ADDR,
BCM8704_PMD_RCV_SIGDET);
if (err < 0)
- return err;
+ goto out_err;
if (!(err & PMD_RCV_SIGDET_GLOBAL))
goto out;
err = mdio_read(np, np->phy_addr, BCM8704_PCS_DEV_ADDR,
BCM8704_PCS_10G_R_STATUS);
if (err < 0)
- return err;
+ goto out_err;
if (!(err & PCS_10G_R_STATUS_BLK_LOCK))
goto out;
err = mdio_read(np, np->phy_addr, BCM8704_PHYXS_DEV_ADDR,
BCM8704_PHYXS_XGXS_LANE_STAT);
if (err < 0)
- return err;
+ goto out_err;
if (err != (PHYXS_XGXS_LANE_STAT_ALINGED |
PHYXS_XGXS_LANE_STAT_MAGIC |
@@ -1133,6 +1133,10 @@ out:
*link_up_p = link_up;
return 0;
+
+out_err:
+ spin_unlock_irqrestore(&np->lock, flags);
+ return err;
}
static int link_status_1g(struct niu *np, int *link_up_p)
--
1.5.3.3
next prev parent reply other threads:[~2007-10-06 0:08 UTC|newest]
Thread overview: 40+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-05 10:12 [PATCH]: Third (final?) release of Sun Neptune driver David Miller
2007-10-05 15:35 ` Stephen Hemminger
2007-10-05 22:49 ` David Miller
2007-10-05 22:54 ` David Miller
2007-10-05 23:31 ` Jeff Garzik
2007-10-05 22:56 ` David Miller
2007-10-05 23:07 ` David Miller
2007-10-05 23:24 ` David Miller
2007-10-05 23:32 ` Jeff Garzik
2007-10-05 23:27 ` David Miller
2007-10-05 15:39 ` Stephen Hemminger
2007-10-05 21:12 ` David Miller
2007-10-05 21:18 ` Stephen Hemminger
2007-10-05 23:30 ` David Miller
2007-10-05 15:40 ` Stephen Hemminger
2007-10-05 21:12 ` David Miller
2007-10-05 21:14 ` Jeff Garzik
2007-10-05 21:21 ` Stephen Hemminger
2007-10-05 21:40 ` David Miller
2007-10-05 21:38 ` David Miller
2007-10-05 23:42 ` David Miller
2007-10-05 15:43 ` Stephen Hemminger
2007-10-06 0:04 ` David Miller
2007-10-06 0:28 ` Stephen Hemminger
2007-10-06 0:46 ` David Miller
2007-10-06 8:32 ` Johannes Berg
2007-10-05 16:46 ` Ingo Oeser
2007-10-05 16:49 ` Ingo Oeser
2007-10-06 0:08 ` David Miller [this message]
2007-10-08 16:04 ` Oliver Hartkopp
2007-10-05 16:55 ` Jeff Garzik
2007-10-05 17:45 ` Matheos Worku
2007-10-05 21:18 ` David Miller
2007-10-05 21:20 ` David Miller
[not found] ` <470677A0.5060502@sun.com>
2007-10-05 21:24 ` David Miller
2007-10-05 22:18 ` Matheos Worku
2007-10-05 22:43 ` David Miller
2007-10-06 0:10 ` David Miller
2007-10-08 16:01 ` Oliver Hartkopp
2007-10-08 23:08 ` 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=20071005.170849.78481094.davem@davemloft.net \
--to=davem@davemloft.net \
--cc=Ariel.Hendel@sun.com \
--cc=Ashley.Saulsbury@sun.com \
--cc=Matheos.Worku@sun.com \
--cc=greg.onufer@sun.com \
--cc=jeff@garzik.org \
--cc=netdev@axxeo.de \
--cc=netdev@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).