[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <Y0lDPQ+mm9nD+raq@unreal>
Date: Fri, 14 Oct 2022 14:08:45 +0300
From: Leon Romanovsky <leon@...nel.org>
To: Sabrina Dubroca <sd@...asysnail.net>
Cc: netdev@...r.kernel.org, Antoine Tenart <atenart@...nel.org>
Subject: Re: [PATCH net 3/5] macsec: fix secy->n_rx_sc accounting
On Fri, Oct 14, 2022 at 09:43:41AM +0200, Sabrina Dubroca wrote:
> 2022-10-14, 09:16:56 +0300, Leon Romanovsky wrote:
> [...]
> > > @@ -1897,15 +1899,16 @@ static int macsec_add_rxsc(struct sk_buff *skb, struct genl_info *info)
> > > secy = &macsec_priv(dev)->secy;
> > > sci = nla_get_sci(tb_rxsc[MACSEC_RXSC_ATTR_SCI]);
> > >
> > > - rx_sc = create_rx_sc(dev, sci);
> > > +
> > > + if (tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE])
> > > + active = !!nla_get_u8(tb_rxsc[MACSEC_RXSC_ATTR_ACTIVE]);
> >
> > You don't need !! to assign to bool variables and can safely omit them.
>
> Yeah, but I'm just moving existing code, see below.
Not really, original code was "rx_sc->active = ...", but you changed to
use local value. So it is perfectly fine to fix the !! too.
Thanks
Powered by blists - more mailing lists