aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWengang Wang <[email protected]>2014-12-23 09:24:36 +0800
committerDavid S. Miller <[email protected]>2014-12-27 02:20:55 -0500
commita22a9e4141474b9f314947f159817050a1db58d8 (patch)
treefb404f0f744aa61d7bd3d9950a8cdebd3da3f6a3
parent24f626d3439f61d87fca0c0c07f614fba41a4e92 (diff)
bonding: change error message to debug message in __bond_release_one()
In __bond_release_one(), when the interface is not a slave or not a slave of "this" master, it log error message. The message actually should be a debug message matching what bond_enslave() does. Signed-off-by: Wengang Wang <[email protected]> Acked-by: Ding Tianhong <[email protected]> Signed-off-by: Andy Gospodarek <[email protected]> Signed-off-by: David S. Miller <[email protected]>
-rw-r--r--drivers/net/bonding/bond_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_main.c b/drivers/net/bonding/bond_main.c
index 184c434ae305..0dceba1a2ba1 100644
--- a/drivers/net/bonding/bond_main.c
+++ b/drivers/net/bonding/bond_main.c
@@ -1648,7 +1648,7 @@ static int __bond_release_one(struct net_device *bond_dev,
/* slave is not a slave or master is not master of this slave */
if (!(slave_dev->flags & IFF_SLAVE) ||
!netdev_has_upper_dev(slave_dev, bond_dev)) {
- netdev_err(bond_dev, "cannot release %s\n",
+ netdev_dbg(bond_dev, "cannot release %s\n",
slave_dev->name);
return -EINVAL;
}