From ec93c9d282dc9e73fc2566554a4114a2c86e79b2 Mon Sep 17 00:00:00 2001 From: Pradyumn Rahar Date: Tue, 9 Sep 2025 15:23:22 +0000 Subject: [PATCH] bond: remove `lacp_active` option from reapply subset NM_SETTING_BOND_OPTION_LACP_ACTIVE is flagged as BOND_OPTFLAG_IFDOWN in the kernel and hence should not be in OPTIONS_REAPPLY_SUBSET. Authored-by: Mohith Kumar Thummaluru Signed-off-by: Mohith Kumar Thummaluru Signed-off-by: Pradyumn Rahar (cherry picked from commit 9c48bae3b2747fb182f74897c8b8251cb820c804) --- src/core/devices/nm-device-bond.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/devices/nm-device-bond.c b/src/core/devices/nm-device-bond.c index 673d236194..39e68e966b 100644 --- a/src/core/devices/nm-device-bond.c +++ b/src/core/devices/nm-device-bond.c @@ -52,8 +52,7 @@ NM_SETTING_BOND_OPTION_PACKETS_PER_SLAVE, NM_SETTING_BOND_OPTION_PRIMARY_RESELECT, \ NM_SETTING_BOND_OPTION_RESEND_IGMP, NM_SETTING_BOND_OPTION_USE_CARRIER, \ NM_SETTING_BOND_OPTION_XMIT_HASH_POLICY, NM_SETTING_BOND_OPTION_NUM_GRAT_ARP, \ - NM_SETTING_BOND_OPTION_PEER_NOTIF_DELAY, NM_SETTING_BOND_OPTION_ARP_MISSED_MAX, \ - NM_SETTING_BOND_OPTION_LACP_ACTIVE + NM_SETTING_BOND_OPTION_PEER_NOTIF_DELAY, NM_SETTING_BOND_OPTION_ARP_MISSED_MAX #define OPTIONS_REAPPLY_FULL \ OPTIONS_REAPPLY_SUBSET, NM_SETTING_BOND_OPTION_ACTIVE_SLAVE, \