]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
ip/bond: add coupled_control support
authorAahil Awatramani <aahila@google.com>
Thu, 25 Jan 2024 23:11:47 +0000 (23:11 +0000)
committerDavid Ahern <dsahern@kernel.org>
Wed, 7 Feb 2024 16:26:36 +0000 (16:26 +0000)
coupled_control specifies whether the LACP state machine's MUX in the
802.3ad mode should have separate Collecting and Distributing states per
IEEE 802.1AX-2008 5.4.15 for coupled and independent control state.

By default this setting is on and does not separate the Collecting and
Distributing states, maintaining the bond in coupled control. If set off,
will toggle independent control state machine which will seperate
Collecting and Distributing states.

Signed-off-by: Aahil Awatramani <aahila@google.com>
v2:
  Dropped uapi header change
  Use of print_on_off and parse_on_off
Signed-off-by: David Ahern <dsahern@kernel.org>
ip/iplink_bond.c

index 214244daad2f2e4e9289e862a5cea9152e34854b..19af67d001f0711da1b3e5156d9a5ffa1471f813 100644 (file)
@@ -148,6 +148,7 @@ static void print_explain(FILE *f)
                "                [ tlb_dynamic_lb TLB_DYNAMIC_LB ]\n"
                "                [ lacp_rate LACP_RATE ]\n"
                "                [ lacp_active LACP_ACTIVE]\n"
+               "                [ coupled_control COUPLED_CONTROL ]\n"
                "                [ ad_select AD_SELECT ]\n"
                "                [ ad_user_port_key PORTKEY ]\n"
                "                [ ad_actor_sys_prio SYSPRIO ]\n"
@@ -163,6 +164,7 @@ static void print_explain(FILE *f)
                "LACP_ACTIVE := off|on\n"
                "LACP_RATE := slow|fast\n"
                "AD_SELECT := stable|bandwidth|count\n"
+               "COUPLED_CONTROL := off|on\n"
        );
 }
 
@@ -176,13 +178,14 @@ static int bond_parse_opt(struct link_util *lu, int argc, char **argv,
 {
        __u8 mode, use_carrier, primary_reselect, fail_over_mac;
        __u8 xmit_hash_policy, num_peer_notif, all_slaves_active;
-       __u8 lacp_active, lacp_rate, ad_select, tlb_dynamic_lb;
+       __u8 lacp_active, lacp_rate, ad_select, tlb_dynamic_lb, coupled_control;
        __u16 ad_user_port_key, ad_actor_sys_prio;
        __u32 miimon, updelay, downdelay, peer_notify_delay, arp_interval, arp_validate;
        __u32 arp_all_targets, resend_igmp, min_links, lp_interval;
        __u32 packets_per_slave;
        __u8 missed_max;
        unsigned int ifindex;
+       int ret;
 
        while (argc > 0) {
                if (matches(*argv, "mode") == 0) {
@@ -367,6 +370,12 @@ static int bond_parse_opt(struct link_util *lu, int argc, char **argv,
 
                        lacp_active = get_index(lacp_active_tbl, *argv);
                        addattr8(n, 1024, IFLA_BOND_AD_LACP_ACTIVE, lacp_active);
+               } else if (strcmp(*argv, "coupled_control") == 0) {
+                       NEXT_ARG();
+                       coupled_control = parse_on_off("coupled_control", *argv, &ret);
+                       if (ret)
+                               return ret;
+                       addattr8(n, 1024, IFLA_BOND_COUPLED_CONTROL, coupled_control);
                } else if (matches(*argv, "ad_select") == 0) {
                        NEXT_ARG();
                        if (get_index(ad_select_tbl, *argv) < 0)
@@ -659,6 +668,13 @@ static void bond_print_opt(struct link_util *lu, FILE *f, struct rtattr *tb[])
                             lacp_rate);
        }
 
+       if (tb[IFLA_BOND_COUPLED_CONTROL]) {
+               print_on_off(PRINT_ANY,
+                            "coupled_control",
+                            "coupled_control %s ",
+                            rta_getattr_u8(tb[IFLA_BOND_COUPLED_CONTROL]));
+       }
+
        if (tb[IFLA_BOND_AD_SELECT]) {
                const char *ad_select = get_name(ad_select_tbl,
                                                 rta_getattr_u8(tb[IFLA_BOND_AD_SELECT]));