aboutsummaryrefslogtreecommitdiff
path: root/lib/bond.c
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2011-10-17 12:22:34 -0700
committerBen Pfaff <blp@nicira.com>2011-10-17 12:22:34 -0700
commite6b2255c2cd7933f8e25bca154aaf3cc67886b5c (patch)
treec7320c5873123f3b86b2f354742cb06a41ccfef0 /lib/bond.c
parent5af5b5324cfc096ff80e96b06b3eb4d6f03307a3 (diff)
bond: Demote active-backup WARN to DBG.
This log message comes up for packets that are flooded through the network. If the upstream switch doesn't realize that an active-backup bond is in use, and there is significant packet flooding in the network, then we will get a lot of these messages. (This message doesn't get logged for multicast or broadcast packets since they get dropped earlier in the function.) Reported-by: Eivind Bulie Haanaes Bug-report: http://forums.citrix.com/thread.jspa?messageID=1589125 CC: Paul Fazzone <pfazzone@nicira.com>
Diffstat (limited to 'lib/bond.c')
-rw-r--r--lib/bond.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bond.c b/lib/bond.c
index 1f2b641a..73ee814c 100644
--- a/lib/bond.c
+++ b/lib/bond.c
@@ -585,9 +585,9 @@ bond_check_admissibility(struct bond *bond, const void *slave_,
if (bond->active_slave != slave) {
static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(1, 5);
- VLOG_WARN_RL(&rl, "active-backup bond received packet on backup"
- " slave (%s) destined for " ETH_ADDR_FMT,
- slave->name, ETH_ADDR_ARGS(eth_dst));
+ VLOG_DBG_RL(&rl, "active-backup bond received packet on backup"
+ " slave (%s) destined for " ETH_ADDR_FMT,
+ slave->name, ETH_ADDR_ARGS(eth_dst));
return BV_DROP;
}
}