* [PATCH] b44: fix carrier detection on bind
@ 2010-10-11 22:42 Paul Fertser
2010-10-11 22:45 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Paul Fertser @ 2010-10-11 22:42 UTC (permalink / raw)
To: Gary Zambrano; +Cc: David S. Miller, netdev, Paul Fertser, stable
For carrier detection to work properly when binding the driver with a cable
unplugged, netif_carrier_off() should be called after register_netdev(),
not before.
Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Cc: stable@kernel.org
---
Without this it's quite annoying to boot a laptop without ethernet
connection as the userspace is getting confused and can even add a default
route through a non-functional interface (when it's configured to use
static ip).
drivers/net/b44.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/b44.c b/drivers/net/b44.c
index 37617ab..d711eb6 100644
--- a/drivers/net/b44.c
+++ b/drivers/net/b44.c
@@ -2161,8 +2161,6 @@ static int __devinit b44_init_one(struct ssb_device *sdev,
dev->irq = sdev->irq;
SET_ETHTOOL_OPS(dev, &b44_ethtool_ops);
- netif_carrier_off(dev);
-
err = ssb_bus_powerup(sdev->bus, 0);
if (err) {
dev_err(sdev->dev,
@@ -2204,6 +2202,8 @@ static int __devinit b44_init_one(struct ssb_device *sdev,
goto err_out_powerdown;
}
+ netif_carrier_off(dev);
+
ssb_set_drvdata(sdev, dev);
/* Chip reset provides power to the b44 MAC & PCI cores, which
--
1.7.2.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] b44: fix carrier detection on bind
2010-10-11 22:42 [PATCH] b44: fix carrier detection on bind Paul Fertser
@ 2010-10-11 22:45 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2010-10-11 22:45 UTC (permalink / raw)
To: fercerpav; +Cc: zambrano, netdev, stable
From: Paul Fertser <fercerpav@gmail.com>
Date: Tue, 12 Oct 2010 02:42:30 +0400
> For carrier detection to work properly when binding the driver with a cable
> unplugged, netif_carrier_off() should be called after register_netdev(),
> not before.
>
> Signed-off-by: Paul Fertser <fercerpav@gmail.com>
Applied, thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-10-11 22:45 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-11 22:42 [PATCH] b44: fix carrier detection on bind Paul Fertser
2010-10-11 22:45 ` David Miller
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).