[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20101010.211956.112597497.davem@davemloft.net>
Date: Sun, 10 Oct 2010 21:19:56 -0700 (PDT)
From: David Miller <davem@...emloft.net>
To: oskar@...utronix.de
Cc: netdev@...r.kernel.org, dan@...eddedalley.com,
bigeasy@...utronix.de, hjk@...utronix.de
Subject: Re: [PATCH] net/fec: carrier off initially to avoid root mount
failure
From: Oskar Schirmer <oskar@...utronix.de>
Date: Thu, 7 Oct 2010 14:30:30 +0200
> with hardware slow in negotiation, the system did freeze
> while trying to mount root on nfs at boot time.
>
> the link state has not been initialised so network stack
> tried to start transmission right away. this caused instant
> retries, as the driver solely stated business upon link down,
> rendering the system unusable.
>
> notify carrier off initially to prevent transmission until
> phylib will report link up.
>
> Signed-off-by: Oskar Schirmer <oskar@...utronix.de>
I did some more investigation into this situation, and for now I'm
going to apply your patch. It is correct, and it also matches what
the only other seemingly correct driver I could find using phylib does
(gianfar) :-) Actually, although I didn't check, bi-modal drivers
(those that only use phylib for some phy types) like tg3 probably do
the right thing here too.
Longer term I think the right thing to do might be:
1) Create some notion of "network device has managed carrier"
This could simply be a flag bit in the netdev or netdev_ops,
or some other kind of attribute.
2) Managed carrier devices start with netif_carrier_off(), otherwise
the device starts with netif_carrier_on().
Then we gut all of the probe time netif_carrir_*() calls in all
of the drivers.
And hopefully it's less error prone than it is right now.
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists