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
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Sun, 16 Apr 2023 12:18:05 +0000
From:   Emeel Hakim <ehakim@...dia.com>
To:     Jakub Kicinski <kuba@...nel.org>
CC:     "davem@...emloft.net" <davem@...emloft.net>,
        "pabeni@...hat.com" <pabeni@...hat.com>,
        "edumazet@...gle.com" <edumazet@...gle.com>,
        "sd@...asysnail.net" <sd@...asysnail.net>,
        "netdev@...r.kernel.org" <netdev@...r.kernel.org>,
        "leon@...nel.org" <leon@...nel.org>
Subject: RE: [PATCH net-next v5 5/5] macsec: Don't rely solely on the dst MAC
 address to identify destination MACsec device



> -----Original Message-----
> From: Jakub Kicinski <kuba@...nel.org>
> Sent: Friday, 14 April 2023 18:01
> To: Emeel Hakim <ehakim@...dia.com>
> Cc: davem@...emloft.net; pabeni@...hat.com; edumazet@...gle.com;
> sd@...asysnail.net; netdev@...r.kernel.org; leon@...nel.org
> Subject: Re: [PATCH net-next v5 5/5] macsec: Don't rely solely on the dst MAC
> address to identify destination MACsec device
> 
> External email: Use caution opening links or attachments
> 
> 
> On Thu, 13 Apr 2023 13:56:22 +0300 Emeel Hakim wrote:
> > +                     struct macsec_rx_sc *rx_sc = (md_dst && md_dst->type ==
> METADATA_MACSEC) ?
> > +                                                  find_rx_sc(&macsec->secy,
> > +                                                             md_dst->u.macsec_info.sci) : NULL;
> 
> Just a coding nit, in addition to Subbaraya's question:
> why use a ternary operator if the entire expression ends up being
> 3 lines of code? :| And well above 80 char.

right, maybe this is a better approach?

 struct macsec_rx_sc *rx_sc = NULL;

if (md_dst && md_dst->type == METADATA_MACSEC) 
        rx_sc  = find_rx_sc(&macsec->secy, md_dst->u.macsec_info.sci);

what do you think?

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ