Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 98f41f69 authored by Weiping Pan's avatar Weiping Pan Committed by David S. Miller
Browse files

bonding:update speed/duplex for NETDEV_CHANGE



Zheng Liang(lzheng@redhat.com) found a bug that if we config bonding with
arp monitor, sometimes bonding driver cannot get the speed and duplex from
its slaves, it will assume them to be 100Mb/sec and Full, please see
/proc/net/bonding/bond0.
But there is no such problem when uses miimon.

(Take igb for example)
I find that the reason is that after dev_open() in bond_enslave(),
bond_update_speed_duplex() will call igb_get_settings()
, but in that function,
it runs ethtool_cmd_speed_set(ecmd, -1); ecmd->duplex = -1;
because igb get an error value of status.
So even dev_open() is called, but the device is not really ready to get its
settings.

Maybe it is safe for us to call igb_get_settings() only after
this message shows up, that is "igb: p4p1 NIC Link is Up 1000 Mbps Full Duplex,
Flow Control: RX".

So I prefer to update the speed and duplex for a slave when reseices
NETDEV_CHANGE/NETDEV_UP event.

Changelog
V2:
1 remove the "fake 100/Full" logic in bond_update_speed_duplex(),
  set speed and duplex to -1 when it gets error value of speed and duplex.
2 delete the warning in bond_enslave() if bond_update_speed_duplex() returns
  error.
3 make bond_info_show_slave() handle bad values of speed and duplex.

Signed-off-by: default avatarWeiping Pan <wpan@redhat.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent deede2fa
Loading
Loading
Loading
Loading
+12 −25
Original line number Original line Diff line number Diff line
@@ -550,7 +550,7 @@ static int bond_set_carrier(struct bonding *bond)
/*
/*
 * Get link speed and duplex from the slave's base driver
 * Get link speed and duplex from the slave's base driver
 * using ethtool. If for some reason the call fails or the
 * using ethtool. If for some reason the call fails or the
 * values are invalid, fake speed and duplex to 100/Full
 * values are invalid, set speed and duplex to -1,
 * and return error.
 * and return error.
 */
 */
static int bond_update_speed_duplex(struct slave *slave)
static int bond_update_speed_duplex(struct slave *slave)
@@ -560,9 +560,8 @@ static int bond_update_speed_duplex(struct slave *slave)
	u32 slave_speed;
	u32 slave_speed;
	int res;
	int res;


	/* Fake speed and duplex */
	slave->speed = -1;
	slave->speed = SPEED_100;
	slave->duplex = -1;
	slave->duplex = DUPLEX_FULL;


	res = __ethtool_get_settings(slave_dev, &ecmd);
	res = __ethtool_get_settings(slave_dev, &ecmd);
	if (res < 0)
	if (res < 0)
@@ -1751,16 +1750,7 @@ int bond_enslave(struct net_device *bond_dev, struct net_device *slave_dev)
		new_slave->link  = BOND_LINK_DOWN;
		new_slave->link  = BOND_LINK_DOWN;
	}
	}


	if (bond_update_speed_duplex(new_slave) &&
	bond_update_speed_duplex(new_slave);
	    (new_slave->link != BOND_LINK_DOWN)) {
		pr_warning("%s: Warning: failed to get speed and duplex from %s, assumed to be 100Mb/sec and Full.\n",
			   bond_dev->name, new_slave->dev->name);

		if (bond->params.mode == BOND_MODE_8023AD) {
			pr_warning("%s: Warning: Operation of 802.3ad mode requires ETHTOOL support in base driver for proper aggregator selection.\n",
				   bond_dev->name);
		}
	}


	if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
	if (USES_PRIMARY(bond->params.mode) && bond->params.primary[0]) {
		/* if there is a primary slave, remember it */
		/* if there is a primary slave, remember it */
@@ -3220,6 +3210,7 @@ static int bond_slave_netdev_event(unsigned long event,
{
{
	struct net_device *bond_dev = slave_dev->master;
	struct net_device *bond_dev = slave_dev->master;
	struct bonding *bond = netdev_priv(bond_dev);
	struct bonding *bond = netdev_priv(bond_dev);
	struct slave *slave = NULL;


	switch (event) {
	switch (event) {
	case NETDEV_UNREGISTER:
	case NETDEV_UNREGISTER:
@@ -3230,10 +3221,8 @@ static int bond_slave_netdev_event(unsigned long event,
				bond_release(bond_dev, slave_dev);
				bond_release(bond_dev, slave_dev);
		}
		}
		break;
		break;
	case NETDEV_UP:
	case NETDEV_CHANGE:
	case NETDEV_CHANGE:
		if (bond->params.mode == BOND_MODE_8023AD || bond_is_lb(bond)) {
			struct slave *slave;

		slave = bond_get_slave_by_dev(bond, slave_dev);
		slave = bond_get_slave_by_dev(bond, slave_dev);
		if (slave) {
		if (slave) {
			u32 old_speed = slave->speed;
			u32 old_speed = slave->speed;
@@ -3241,9 +3230,7 @@ static int bond_slave_netdev_event(unsigned long event,


			bond_update_speed_duplex(slave);
			bond_update_speed_duplex(slave);


				if (bond_is_lb(bond))
			if (bond->params.mode == BOND_MODE_8023AD) {
					break;

				if (old_speed != slave->speed)
				if (old_speed != slave->speed)
					bond_3ad_adapter_speed_changed(slave);
					bond_3ad_adapter_speed_changed(slave);
				if (old_duplex != slave->duplex)
				if (old_duplex != slave->duplex)
+10 −2
Original line number Original line Diff line number Diff line
@@ -157,8 +157,16 @@ static void bond_info_show_slave(struct seq_file *seq,
	seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
	seq_printf(seq, "\nSlave Interface: %s\n", slave->dev->name);
	seq_printf(seq, "MII Status: %s\n",
	seq_printf(seq, "MII Status: %s\n",
		   (slave->link == BOND_LINK_UP) ?  "up" : "down");
		   (slave->link == BOND_LINK_UP) ?  "up" : "down");
	if (slave->speed == -1)
		seq_printf(seq, "Speed: %s\n", "Unknown");
	else
		seq_printf(seq, "Speed: %d Mbps\n", slave->speed);
		seq_printf(seq, "Speed: %d Mbps\n", slave->speed);

	if (slave->duplex == -1)
		seq_printf(seq, "Duplex: %s\n", "Unknown");
	else
		seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");
		seq_printf(seq, "Duplex: %s\n", slave->duplex ? "full" : "half");

	seq_printf(seq, "Link Failure Count: %u\n",
	seq_printf(seq, "Link Failure Count: %u\n",
		   slave->link_failure_count);
		   slave->link_failure_count);