summaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding/bond_main.c
diff options
context:
space:
mode:
authorKrzysztof Piotr Oledzki2010-10-06 23:25:06 +0200
committerDavid S. Miller2010-10-06 23:25:06 +0200
commit700c2a779e6d5a60e2ef4716e75ea7f41546602f (patch)
treec2558f87d2db5d9bc1e2c4110970d6db27d5c02b /drivers/net/bonding/bond_main.c
parentbnx2x: update version to 1.60.00-1 (diff)
downloadkernel-qcow2-linux-700c2a779e6d5a60e2ef4716e75ea7f41546602f.tar.gz
kernel-qcow2-linux-700c2a779e6d5a60e2ef4716e75ea7f41546602f.tar.xz
kernel-qcow2-linux-700c2a779e6d5a60e2ef4716e75ea7f41546602f.zip
bonding: print information about speed and duplex seen by the driver
before: bonding: bond0: link status definitely up for interface eth5 bonding: bond0: link status definitely up for interface eth0 after: bonding: bond0: link status definitely up for interface eth5, 100 Mbps full duplex. bonding: bond0: link status definitely up for interface eth0, 100 Mbps full duplex. Signed-off-by: Krzysztof Piotr Oledzki <ole@ans.pl> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/bonding/bond_main.c')
-rw-r--r--drivers/net/bonding/bond_main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 6f5e6b453da6..e498ce3defad 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -2406,8 +2406,9 @@ static void bond_miimon_commit(struct bonding *bond)
slave->state = BOND_STATE_BACKUP;
}
- pr_info("%s: link status definitely up for interface %s.\n",
- bond->dev->name, slave->dev->name);
+ pr_info("%s: link status definitely up for interface %s, %d Mbps %s duplex.\n",
+ bond->dev->name, slave->dev->name,
+ slave->speed, slave->duplex ? "full" : "half");
/* notify ad that the link status has changed */
if (bond->params.mode == BOND_MODE_8023AD)