[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Za7GBaCiE+LUv6ZZ@gmail.com>
Date: Mon, 22 Jan 2024 11:46:13 -0800
From: Breno Leitao <leitao@...ian.org>
To: Alessandro Marcolini <alessandromarcolini99@...il.com>
Cc: davem@...emloft.net, edumazet@...gle.com, kuba@...nel.org,
pabeni@...hat.com, donald.hunter@...il.com, sdf@...gle.com,
chuck.lever@...cle.com, lorenzo@...nel.org,
jacob.e.keller@...el.com, jiri@...nulli.us, netdev@...r.kernel.org
Subject: Re: [PATCH net-next 3/3] tools: ynl: add encoding support for
'sub-message' to ynl
On Mon, Jan 22, 2024 at 08:19:41PM +0100, Alessandro Marcolini wrote:
> Add encoding support for 'sub-message' attribute and for resolving
> sub-message selectors at different nesting level from the key
> attribute.
>
> Also, add encoding support for multi-attr attributes.
>
> Signed-off-by: Alessandro Marcolini <alessandromarcolini99@...il.com>
> ---
> tools/net/ynl/lib/ynl.py | 54 +++++++++++++++++++++++++++++++++++-----
> 1 file changed, 48 insertions(+), 6 deletions(-)
>
> diff --git a/tools/net/ynl/lib/ynl.py b/tools/net/ynl/lib/ynl.py
> index 1e10512b2117..f8c56944f7e7 100644
> --- a/tools/net/ynl/lib/ynl.py
> +++ b/tools/net/ynl/lib/ynl.py
> @@ -449,7 +449,7 @@ class YnlFamily(SpecFamily):
> self.sock.setsockopt(Netlink.SOL_NETLINK, Netlink.NETLINK_ADD_MEMBERSHIP,
> mcast_id)
>
> - def _add_attr(self, space, name, value):
> + def _add_attr(self, space, name, value, vals):
> try:
> attr = self.attr_sets[space][name]
> except KeyError:
> @@ -458,8 +458,13 @@ class YnlFamily(SpecFamily):
> if attr["type"] == 'nest':
> nl_type |= Netlink.NLA_F_NESTED
> attr_payload = b''
> - for subname, subvalue in value.items():
> - attr_payload += self._add_attr(attr['nested-attributes'], subname, subvalue)
> + # Check if it's a list of values (i.e. it contains multi-attr elements)
> + for subname, subvalue in (
> + ((k, v) for item in value for k, v in item.items())
> + if isinstance(value, list)
> + else value.items()
> + ):
This is a bit hard to read.
Is it possible to make it a bit easier to read?
Powered by blists - more mailing lists