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>
Derek Cormier derek.cormier@lab.ntt.co.jp
Duffie Cooley dcooley@nicira.com
DK Moon dkmoon@nicira.com
+Eivind Bulie Haanaes
Gaetano Catalli gaetano.catalli@gmail.com
George Shuklin amarao@desunote.ru
Ghanem Bahri bahri.ghanem@gmail.com
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;
}
}