lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <4007f5af-3bcf-6e8b-3229-c6d81d68b994@blackwall.org> Date: Mon, 13 Nov 2023 11:14:01 +0200 From: Nikolay Aleksandrov <razor@...ckwall.org> To: Hangbin Liu <liuhangbin@...il.com>, netdev@...r.kernel.org Cc: "David S . Miller" <davem@...emloft.net>, David Ahern <dsahern@...nel.org>, Eric Dumazet <edumazet@...gle.com>, Jakub Kicinski <kuba@...nel.org>, Paolo Abeni <pabeni@...hat.com>, Ido Schimmel <idosch@...sch.org>, Roopa Prabhu <roopa@...dia.com>, Stephen Hemminger <stephen@...workplumber.org>, Florian Westphal <fw@...len.de>, Andrew Lunn <andrew@...n.ch>, Florian Fainelli <f.fainelli@...il.com>, Vladimir Oltean <olteanv@...il.com>, Jiri Pirko <jiri@...nulli.us> Subject: Re: [RFC PATCHv3 net-next 01/10] net: bridge: add document for IFLA_BR enum On 11/10/23 12:15, Hangbin Liu wrote: > Add document for IFLA_BR enum so we can use it in > Documentation/networking/bridge.rst. > > Signed-off-by: Hangbin Liu <liuhangbin@...il.com> > --- > include/uapi/linux/if_link.h | 270 +++++++++++++++++++++++++++++++++++ > 1 file changed, 270 insertions(+) > > diff --git a/include/uapi/linux/if_link.h b/include/uapi/linux/if_link.h > index 29ff80da2775..32d6980b78d1 100644 > --- a/include/uapi/linux/if_link.h > +++ b/include/uapi/linux/if_link.h > @@ -461,6 +461,276 @@ enum in6_addr_gen_mode { > > /* Bridge section */ > > +/** > + * DOC: The bridge enum defination s/defination/definition/ > + * > + * please *note* that all the timer in the following section is in clock_t > + * type, which is seconds multiplied by user_hz (generally defined as 100). "please *note* that the timer values in the following section are expected in clock_t format, which is..." user_hz is a constant, use USER_HZ > + * > + * @IFLA_BR_FORWARD_DELAY > + * The bridge forwarding delay is the time spent in LISTENING state > + * (before moving to LEARNING) and in LEARNING state (before moving > + * to FORWARDING). Only relevant if STP is enabled. > + * > + * The valid values are between (2 * USER_HZ) and (30 * USER_HZ). > + * The default value is (15 * USER_HZ). > + * rest looks good
Powered by blists - more mailing lists