| Submitter | Krzysztof Oledzki |
|---|---|
| Date | Sept. 30, 2010, 4:18 p.m. |
| Message ID | <4ca4b873.iZ0Dea7Y1OFcVmf8%ole@ans.pl> |
| Download | mbox | patch |
| Permalink | /patch/66180/ |
| State | Accepted |
| Delegated to: | David Miller |
| Headers | show |
Comments
From: Krzysztof Piotr Oledzki <ole@ans.pl> Date: Thu, 30 Sep 2010 18:18:59 +0200 >>From d4fb10933bb88f2bf410b0abe42f151c13e3df85 Mon Sep 17 00:00:00 2001 > From: Krzysztof Piotr Oledzki <ole@ans.pl> > Date: Thu, 30 Sep 2010 17:05:19 +0200 > Subject: 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> Applied. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c index fb70c3e..721abc4 100644 --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -2368,8 +2368,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)