Change code not to rearm bond_mii_monitor() when value 0 is set for miimon. Signed-off-by: Makito SHIOKAWA --- drivers/net/bonding/bond_main.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) --- a/drivers/net/bonding/bond_main.c +++ b/drivers/net/bonding/bond_main.c @@ -2388,7 +2388,8 @@ void bond_mii_monitor(struct work_struct delay = ((bond->params.miimon * HZ) / 1000) ? : 1; read_unlock(&bond->lock); - queue_delayed_work(bond->wq, &bond->mii_work, delay); + if (bond->params.miimon) + queue_delayed_work(bond->wq, &bond->mii_work, delay); } static __be32 bond_glean_dev_ip(struct net_device *dev) -- Makito SHIOKAWA MIRACLE LINUX CORPORATION -- 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