Message ID | 20240503164304.87427-1-donald.hunter@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 9adcac6506185dd1a727f1784b89f30cd217ef7e |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | [net,v1] netlink: specs: Add missing bridge linkinfo attrs | expand |
On 03/05/2024 19:43, Donald Hunter wrote: > Attributes for FDB learned entries were added to the if_link netlink api > for bridge linkinfo but are missing from the rt_link.yaml spec. Add the > missing attributes to the spec. > > Fixes: ddd1ad68826d ("net: bridge: Add netlink knobs for number / max learned FDB entries") > Signed-off-by: Donald Hunter <donald.hunter@gmail.com> > --- > Documentation/netlink/specs/rt_link.yaml | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/Documentation/netlink/specs/rt_link.yaml b/Documentation/netlink/specs/rt_link.yaml > index 8e4d19adee8c..4e702ac8bf66 100644 > --- a/Documentation/netlink/specs/rt_link.yaml > +++ b/Documentation/netlink/specs/rt_link.yaml > @@ -1144,6 +1144,12 @@ attribute-sets: > - > name: mcast-querier-state > type: binary > + - > + name: fdb-n-learned > + type: u32 > + - > + name: fdb-max-learned > + type: u32 > - > name: linkinfo-brport-attrs > name-prefix: ifla-brport- Acked-by: Nikolay Aleksandrov <razor@blackwall.org>
> -----Original Message----- > From: Donald Hunter <donald.hunter@gmail.com> > Sent: Friday, May 3, 2024 9:43 AM > To: netdev@vger.kernel.org; Jakub Kicinski <kuba@kernel.org>; David S. Miller > <davem@davemloft.net>; Eric Dumazet <edumazet@google.com>; Paolo Abeni > <pabeni@redhat.com>; Jiri Pirko <jiri@resnulli.us>; Keller, Jacob E > <jacob.e.keller@intel.com>; Johannes Nixdorf <jnixdorf-oss@avm.de>; Ido > Schimmel <idosch@nvidia.com>; Nikolay Aleksandrov <razor@blackwall.org> > Cc: donald.hunter@redhat.com; Donald Hunter <donald.hunter@gmail.com> > Subject: [PATCH net v1] netlink: specs: Add missing bridge linkinfo attrs > > Attributes for FDB learned entries were added to the if_link netlink api > for bridge linkinfo but are missing from the rt_link.yaml spec. Add the > missing attributes to the spec. > > Fixes: ddd1ad68826d ("net: bridge: Add netlink knobs for number / max learned > FDB entries") > Signed-off-by: Donald Hunter <donald.hunter@gmail.com> Reviewed-by: Jacob Keller <jacob.e.keller@intel.com> > --- > Documentation/netlink/specs/rt_link.yaml | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/Documentation/netlink/specs/rt_link.yaml > b/Documentation/netlink/specs/rt_link.yaml > index 8e4d19adee8c..4e702ac8bf66 100644 > --- a/Documentation/netlink/specs/rt_link.yaml > +++ b/Documentation/netlink/specs/rt_link.yaml > @@ -1144,6 +1144,12 @@ attribute-sets: > - > name: mcast-querier-state > type: binary > + - > + name: fdb-n-learned > + type: u32 > + - > + name: fdb-max-learned > + type: u32 > - > name: linkinfo-brport-attrs > name-prefix: ifla-brport- > -- > 2.44.0
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski <kuba@kernel.org>: On Fri, 3 May 2024 17:43:04 +0100 you wrote: > Attributes for FDB learned entries were added to the if_link netlink api > for bridge linkinfo but are missing from the rt_link.yaml spec. Add the > missing attributes to the spec. > > Fixes: ddd1ad68826d ("net: bridge: Add netlink knobs for number / max learned FDB entries") > Signed-off-by: Donald Hunter <donald.hunter@gmail.com> > > [...] Here is the summary with links: - [net,v1] netlink: specs: Add missing bridge linkinfo attrs https://git.kernel.org/netdev/net/c/9adcac650618 You are awesome, thank you!
diff --git a/Documentation/netlink/specs/rt_link.yaml b/Documentation/netlink/specs/rt_link.yaml index 8e4d19adee8c..4e702ac8bf66 100644 --- a/Documentation/netlink/specs/rt_link.yaml +++ b/Documentation/netlink/specs/rt_link.yaml @@ -1144,6 +1144,12 @@ attribute-sets: - name: mcast-querier-state type: binary + - + name: fdb-n-learned + type: u32 + - + name: fdb-max-learned + type: u32 - name: linkinfo-brport-attrs name-prefix: ifla-brport-
Attributes for FDB learned entries were added to the if_link netlink api for bridge linkinfo but are missing from the rt_link.yaml spec. Add the missing attributes to the spec. Fixes: ddd1ad68826d ("net: bridge: Add netlink knobs for number / max learned FDB entries") Signed-off-by: Donald Hunter <donald.hunter@gmail.com> --- Documentation/netlink/specs/rt_link.yaml | 6 ++++++ 1 file changed, 6 insertions(+)