]> git.ipfire.org Git - thirdparty/iproute2.git/commitdiff
bridge: vlan: add global mcast_query_interval option
authorNikolay Aleksandrov <nikolay@nvidia.com>
Sat, 28 Aug 2021 11:08:01 +0000 (14:08 +0300)
committerDavid Ahern <dsahern@kernel.org>
Wed, 1 Sep 2021 03:28:29 +0000 (21:28 -0600)
Add control and dump support for the global mcast_query_interval
option which controls the interval between queries sent by the bridge
after the end of the startup phase. To be consistent with the same
bridge-wide option the value is reported with USER_HZ granularity and
the same granularity is expected when setting it.
Syntax:
 $ bridge vlan global set dev bridge vid 1 mcast_query_interval 13000

Signed-off-by: Nikolay Aleksandrov <nikolay@nvidia.com>
Signed-off-by: David Ahern <dsahern@kernel.org>
bridge/vlan.c
man/man8/bridge.8

index 275589af8691953845a230feb5d4df05ddb7cb7a..0d70753ad71f70eb660b7f0973c0ced8f14a424e 100644 (file)
@@ -47,6 +47,7 @@ static void usage(void)
                "                      [ mcast_startup_query_count STARTUP_QUERY_COUNT ]\n"
                "                      [ mcast_membership_interval MEMBERSHIP_INTERVAL ]\n"
                "                      [ mcast_querier_interval QUERIER_INTERVAL ]\n"
+               "                      [ mcast_query_interval QUERY_INTERVAL ]\n"
                "       bridge vlan global { show } [ dev DEV ] [ vid VLAN_ID ]\n");
        exit(-1);
 }
@@ -466,6 +467,14 @@ static int vlan_global_option_set(int argc, char **argv)
                        addattr64(&req.n, 1024,
                                  BRIDGE_VLANDB_GOPTS_MCAST_QUERIER_INTVL,
                                  val64);
+               } else if (strcmp(*argv, "mcast_query_interval") == 0) {
+                       NEXT_ARG();
+                       if (get_u64(&val64, *argv, 0))
+                               invarg("invalid mcast_query_interval",
+                                      *argv);
+                       addattr64(&req.n, 1024,
+                                 BRIDGE_VLANDB_GOPTS_MCAST_QUERY_INTVL,
+                                 val64);
                } else {
                        if (strcmp(*argv, "help") == 0)
                                NEXT_ARG();
@@ -844,6 +853,12 @@ static void print_vlan_global_opts(struct rtattr *a, int ifindex)
                             "mcast_querier_interval %llu ",
                             rta_getattr_u64(vattr));
        }
+       if (vtb[BRIDGE_VLANDB_GOPTS_MCAST_QUERY_INTVL]) {
+               vattr = vtb[BRIDGE_VLANDB_GOPTS_MCAST_QUERY_INTVL];
+               print_lluint(PRINT_ANY, "mcast_query_interval",
+                            "mcast_query_interval %llu ",
+                            rta_getattr_u64(vattr));
+       }
        print_nl();
        close_json_object();
 }
index f5c72ec83f9394c585a874f439954787cafdea9e..cb1170f8d5c9bcf050dd8da7a23d4931f77a2caf 100644 (file)
@@ -173,7 +173,9 @@ bridge \- show / manipulate bridge addresses and devices
 .B mcast_membership_interval
 .IR MEMBERSHIP_INTERVAL " ] [ "
 .B mcast_querier_interval
-.IR QUERIER_INTERVAL " ]"
+.IR QUERIER_INTERVAL " ] [ "
+.B mcast_query_interval
+.IR QUERY_INTERVAL " ]"
 
 .ti -8
 .BR "bridge vlan global" " [ " show " ] [ "
@@ -981,6 +983,11 @@ after this delay has passed, the bridge will start to send its own queries
 .BI mcast_querier
 was enabled).
 
+.TP
+.BI mcast_query_interval " QUERY_INTERVAL "
+interval between queries sent by the bridge after the end of the
+startup phase.
+
 .SS bridge vlan global show - list global vlan options.
 
 This command displays the global VLAN options for each VLAN entry.