[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1451545899-16584-2-git-send-email-zyjzyj2000@gmail.com>
Date: Thu, 31 Dec 2015 15:11:39 +0800
From: <zyjzyj2000@...il.com>
To: <jeffrey.t.kirsher@...el.com>, <jesse.brandeburg@...el.com>,
<shannon.nelson@...el.com>, <carolyn.wyborny@...el.com>,
<donald.c.skidmore@...el.com>, <bruce.w.allan@...el.com>,
<john.ronciak@...el.com>, <mitch.a.williams@...el.com>,
<intel-wired-lan@...ts.osuosl.org>, <netdev@...r.kernel.org>,
<e1000-devel@...ts.sourceforge.net>, <mark.d.rustad@...el.com>
CC: <venkat.viswanathan@...driver.com>,
<Boris.Shteinbock@...driver.com>, <Vincent.Bourg@...driver.com>
Subject: [PATCH V6 1/1] ixgbe: synchronize link_up and link_speed of a slave interface
From: Zhu Yanjun <yanjun.zhu@...driver.com>
According to the suggestions from Rustad, Mark D, to all the slave
interfaces, the link_speed and link_up should be synchronized since
the time span between link_up and link_speed will make some virtual
NICs not work well, such as a bonding driver in 802.3ad mode.
Signed-off-by: Zhu Yanjun <yanjun.zhu@...driver.com>
---
drivers/net/ethernet/intel/ixgbe/ixgbe_main.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
index aed8d02..fc461b9 100644
--- a/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
+++ b/drivers/net/ethernet/intel/ixgbe/ixgbe_main.c
@@ -6426,6 +6426,11 @@ static void ixgbe_watchdog_link_is_up(struct ixgbe_adapter *adapter)
if (netif_carrier_ok(netdev))
return;
+ /* For all slave interfaces, wait for the link_speed to be known. */
+ if ((netdev->flags & IFF_SLAVE) &&
+ (link_speed == IXGBE_LINK_SPEED_UNKNOWN))
+ return;
+
adapter->flags2 &= ~IXGBE_FLAG2_SEARCH_FOR_SFP;
switch (hw->mac.type) {
--
1.9.1
--
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