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
| ||
|
Message-ID: <54D9C18B.5090208@iogearbox.net> Date: Tue, 10 Feb 2015 09:30:03 +0100 From: Daniel Borkmann <daniel@...earbox.net> To: Thomas Graf <tgraf@...g.ch> CC: Josh Hunt <johunt@...mai.com>, Pablo Neira Ayuso <pablo@...filter.org>, Patrick McHardy <kaber@...sh.net>, netfilter-devel@...r.kernel.org, netdev@...r.kernel.org Subject: Re: [PATCH 1/3] rhashtable: require max_shift definition On 02/10/2015 01:58 AM, Thomas Graf wrote: > On 02/09/15 at 07:48pm, Josh Hunt wrote: >> if ((params->key_len && !params->hashfn) || >> - (!params->key_len && !params->obj_hashfn)) >> + (!params->key_len && !params->obj_hashfn) || >> + (!params->max_shift)) >> return -EINVAL; > > You can drop the parenthesis around the new max_shift check. Also, I think the test should be expanded to check if there's a grow_decision given and only in that case require max_shift to be non-zero, otherwise we would require users who don't want to expand their table to give a upper expansion limit. Thanks, Daniel -- 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