]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
bonding: update LACP activity flag after setting lacp_active
authorHangbin Liu <liuhangbin@gmail.com>
Fri, 15 Aug 2025 06:19:58 +0000 (06:19 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 28 Aug 2025 14:28:49 +0000 (16:28 +0200)
[ Upstream commit b64d035f77b1f02ab449393342264b44950a75ae ]

The port's actor_oper_port_state activity flag should be updated immediately
after changing the lacp_active option to reflect the current mode correctly.

Fixes: 3a755cd8b7c6 ("bonding: add new option lacp_active")
Signed-off-by: Hangbin Liu <liuhangbin@gmail.com>
Link: https://patch.msgid.link/20250815062000.22220-2-liuhangbin@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/net/bonding/bond_3ad.c
drivers/net/bonding/bond_options.c
include/net/bond_3ad.h

index c99ffe6c683a3853c67225f0828bfbadafe938db..56b18ab2fa2895dfde8c79999c3d52355677719c 100644 (file)
@@ -2734,6 +2734,31 @@ void bond_3ad_update_lacp_rate(struct bonding *bond)
        spin_unlock_bh(&bond->mode_lock);
 }
 
+/**
+ * bond_3ad_update_lacp_active - change the lacp active
+ * @bond: bonding struct
+ *
+ * Update actor_oper_port_state when lacp_active is modified.
+ */
+void bond_3ad_update_lacp_active(struct bonding *bond)
+{
+       struct port *port = NULL;
+       struct list_head *iter;
+       struct slave *slave;
+       int lacp_active;
+
+       lacp_active = bond->params.lacp_active;
+       spin_lock_bh(&bond->mode_lock);
+       bond_for_each_slave(bond, slave, iter) {
+               port = &(SLAVE_AD_INFO(slave)->port);
+               if (lacp_active)
+                       port->actor_oper_port_state |= LACP_STATE_LACP_ACTIVITY;
+               else
+                       port->actor_oper_port_state &= ~LACP_STATE_LACP_ACTIVITY;
+       }
+       spin_unlock_bh(&bond->mode_lock);
+}
+
 size_t bond_3ad_stats_size(void)
 {
        return nla_total_size_64bit(sizeof(u64)) + /* BOND_3AD_STAT_LACPDU_RX */
index 6d003c0ef6698f5dd4ca7c29963238238bacc8d9..b282ed5b59a982b26ed6a9d3073f0fa323f4e067 100644 (file)
@@ -1618,6 +1618,7 @@ static int bond_option_lacp_active_set(struct bonding *bond,
        netdev_dbg(bond->dev, "Setting LACP active to %s (%llu)\n",
                   newval->string, newval->value);
        bond->params.lacp_active = newval->value;
+       bond_3ad_update_lacp_active(bond);
 
        return 0;
 }
index c5e57c6bd8736759086f8cc263f9028796850f12..29f2a681aa1420b297d0c118ec0308ff8eebba74 100644 (file)
@@ -302,6 +302,7 @@ int bond_3ad_lacpdu_recv(const struct sk_buff *skb, struct bonding *bond,
                         struct slave *slave);
 int bond_3ad_set_carrier(struct bonding *bond);
 void bond_3ad_update_lacp_rate(struct bonding *bond);
+void bond_3ad_update_lacp_active(struct bonding *bond);
 void bond_3ad_update_ad_actor_settings(struct bonding *bond);
 int bond_3ad_stats_fill(struct sk_buff *skb, struct bond_3ad_stats *stats);
 size_t bond_3ad_stats_size(void);