[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAD4GDZyshPDo0CD8CvTwgHH1kuOeRZRNP3qiSXSmW3=epCEZrA@mail.gmail.com>
Date: Wed, 4 Dec 2024 13:24:50 +0000
From: Donald Hunter <donald.hunter@...il.com>
To: Jakub Kicinski <kuba@...nel.org>
Cc: netdev@...r.kernel.org, "David S. Miller" <davem@...emloft.net>,
Eric Dumazet <edumazet@...gle.com>, Paolo Abeni <pabeni@...hat.com>, Simon Horman <horms@...nel.org>,
Johannes Berg <johannes@...solutions.net>, linux-wireless@...r.kernel.org,
donald.hunter@...hat.com
Subject: Re: [PATCH net-next v1 3/7] tools/net/ynl: support decoding C arrays
as enums
On Wed, 4 Dec 2024 at 02:03, Jakub Kicinski <kuba@...nel.org> wrote:
>
> On Tue, 3 Dec 2024 13:06:51 +0000 Donald Hunter wrote:
> > Add support for translating arrays of scalars into enum names.
>
> But not formatting hints.. ? ;)
Oooh, good catch. This does suggest that a refactor is needed for
scalar handling.
> > Signed-off-by: Donald Hunter <donald.hunter@...il.com>
> > ---
> > tools/net/ynl/lib/ynl.py | 2 ++
> > 1 file changed, 2 insertions(+)
> >
> > diff --git a/tools/net/ynl/lib/ynl.py b/tools/net/ynl/lib/ynl.py
> > index 0d39a83574d5..f07a8404f71a 100644
> > --- a/tools/net/ynl/lib/ynl.py
> > +++ b/tools/net/ynl/lib/ynl.py
> > @@ -627,6 +627,8 @@ class YnlFamily(SpecFamily):
> > decoded = self._decode_struct(attr.raw, attr_spec.struct_name)
> > elif attr_spec.sub_type:
> > decoded = attr.as_c_array(attr_spec.sub_type)
> > + if 'enum' in attr_spec:
> > + decoded = [ self._decode_enum(x, attr_spec) for x in decoded]
>
> nit: missing space after 'decoded' or extra space before self, with
> that fixed:
ack.
> Acked-by: Jakub Kicinski <kuba@...nel.org>
Powered by blists - more mailing lists