netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net phy: Check for aneg completion before setting state to PHY_RUNNING
@ 2014-04-24  2:52 Balakumaran Kannan
  2014-04-24 18:53 ` Florian Fainelli
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Balakumaran Kannan @ 2014-04-24  2:52 UTC (permalink / raw)
  To: f.fainelli, netdev

phy_state_machine should check whether auto-negotiatin is completed
before changing phydev->state from PHY_NOLINK to PHY_RUNNING. If
auto-negotiation is not completed phydev->state should be set to
PHY_AN.

Signed-off-by: Balakumaran Kannan <kumaran.4353@gmail.com>
---
 drivers/net/phy/phy.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/drivers/net/phy/phy.c b/drivers/net/phy/phy.c
index 1b6d09a..a972056 100644
--- a/drivers/net/phy/phy.c
+++ b/drivers/net/phy/phy.c
@@ -765,6 +765,17 @@ void phy_state_machine(struct work_struct *work)
 			break;
 
 		if (phydev->link) {
+			if (AUTONEG_ENABLE == phydev->autoneg) {
+				err = phy_aneg_done(phydev);
+				if (err < 0)
+					break;
+
+				if (!err) {
+					phydev->state = PHY_AN;
+					phydev->link_timeout = PHY_AN_TIMEOUT;
+					break;
+				}
+			}
 			phydev->state = PHY_RUNNING;
 			netif_carrier_on(phydev->attached_dev);
 			phydev->adjust_link(phydev->attached_dev);
-- 
1.8.2.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2014-05-02 19:51 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-24  2:52 [PATCH] net phy: Check for aneg completion before setting state to PHY_RUNNING Balakumaran Kannan
2014-04-24 18:53 ` Florian Fainelli
2014-04-25  5:53   ` Balakumaran Kannan
2014-04-25 17:08     ` David Miller
2014-05-01  2:11     ` Florian Fainelli
2014-04-28 20:17 ` David Miller
2014-05-01  2:11 ` Florian Fainelli
2014-05-02 19:51 ` 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).