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 PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Wed, 23 Jul 2014 11:20:12 -0700 From: Stephen Hemminger <stephen@...workplumber.org> To: Andy Zhou <azhou@...ira.com> Cc: davem@...emloft.net, netdev@...r.kernel.org, Jesse Gross <jesse@...ira.com> Subject: Re: [net-next 05/10] net: Add Geneve tunneling protocol driver On Tue, 22 Jul 2014 03:19:48 -0700 Andy Zhou <azhou@...ira.com> wrote: > + geneveh->ver = GENEVE_VER; > + geneveh->opt_len = options_len / 4; > + geneveh->oam = !!(tun_flags & TUNNEL_OAM); > + geneveh->critical = !!(tun_flags & TUNNEL_CRIT_OPT); > + geneveh->rsvd1 = 0; Bitfield's suck in C. Setting bitfield values individually generates slow code because the compiler has to generate multiple mask operations. Better to change this part to one set of shifts and do one load. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists