aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/bonding/bond_netlink.c
diff options
context:
space:
mode:
authorVincent Bernat <vincent@bernat.ch>2019-07-06 23:01:08 +0200
committerDavid S. Miller <davem@davemloft.net>2019-07-08 19:28:44 -0700
commitee4f56f46ab7a795dc8f7ecdfa11b616a5754b50 (patch)
tree69ec23b7ee7a92e39bd32a35617962c493f470a2 /drivers/net/bonding/bond_netlink.c
parentcoallocate socket_wq with socket itself (diff)
downloadlinux-dev-ee4f56f46ab7a795dc8f7ecdfa11b616a5754b50.tar.xz
linux-dev-ee4f56f46ab7a795dc8f7ecdfa11b616a5754b50.zip
bonding: fix value exported by Netlink for peer_notif_delay
IFLA_BOND_PEER_NOTIF_DELAY was set to the value of downdelay instead of peer_notif_delay. After this change, the correct value is exported. Fixes: 07a4ddec3ce9 ("bonding: add an option to specify a delay between peer notifications") Signed-off-by: Vincent Bernat <vincent@bernat.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/bonding/bond_netlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/bonding/bond_netlink.c b/drivers/net/bonding/bond_netlink.c
index a259860a7208..b43b51646b11 100644
--- a/drivers/net/bonding/bond_netlink.c
+++ b/drivers/net/bonding/bond_netlink.c
@@ -547,7 +547,7 @@ static int bond_fill_info(struct sk_buff *skb,
goto nla_put_failure;
if (nla_put_u32(skb, IFLA_BOND_PEER_NOTIF_DELAY,
- bond->params.downdelay * bond->params.miimon))
+ bond->params.peer_notif_delay * bond->params.miimon))
goto nla_put_failure;
if (nla_put_u8(skb, IFLA_BOND_USE_CARRIER, bond->params.use_carrier))