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: <54EDF4DD.1060709@iogearbox.net> Date: Wed, 25 Feb 2015 17:14:21 +0100 From: Daniel Borkmann <daniel@...earbox.net> To: David Laight <David.Laight@...LAB.COM>, "davem@...emloft.net" <davem@...emloft.net> CC: "tgraf@...g.ch" <tgraf@...g.ch>, "pablo@...filter.org" <pablo@...filter.org>, "johunt@...mai.com" <johunt@...mai.com>, "kaber@...sh.net" <kaber@...sh.net>, "netdev@...r.kernel.org" <netdev@...r.kernel.org> Subject: Re: [PATCH net 2/2] rhashtable: remove indirection for grow/shrink decision functions On 02/25/2015 04:51 PM, David Laight wrote: > From: Daniel Borkmann [ >> On 02/25/2015 04:41 PM, David Laight wrote: >> ... >>> Why not cache the 'number of items before we need to expand' value >>> after each expansion, setting it to 'infinite' when expansion is disabled. >>> Then the above check is a simple comparison. >>> You probably don't even need an atomic_read() - provided something is >>> double checked once the first test determines that an expansion is needed. >> >> Did you read my cover letter? ;) > > I probably didn't infer the relevant references :-) > > Actually even if some code wanted other rules, provided they > are based on comparing the 'number of items' to a preset limit > the limit could be set during expansion/contraction. The shift itself doesn't need to be atomic, if we store that in the table directly instead of rhashtable, once on allocation it's being set and can stay immutable during its table lifetime. The nelems can be a percpu_counter where we have a batched sync point and can make that dependent on the current table shift as we don't need to be overly precise, we can just read the sync'ed value. Currently, nelems are also being used by rhashtable users outside of the core code to track if we are still allowed to insert new elements, but I think we might also want to address that at some point. -- 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