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: <20220829231812.19979-1-kuniyu@amazon.com> Date: Mon, 29 Aug 2022 16:18:12 -0700 From: Kuniyuki Iwashima <kuniyu@...zon.com> To: <edumazet@...gle.com> CC: <davem@...emloft.net>, <kuba@...nel.org>, <kuni1840@...il.com>, <kuniyu@...zon.com>, <netdev@...r.kernel.org>, <pabeni@...hat.com> Subject: Re: [PATCH v2 net-next 5/5] tcp: Introduce optional per-netns ehash. From: Eric Dumazet <edumazet@...gle.com> Date: Mon, 29 Aug 2022 15:59:04 -0700 > On Mon, Aug 29, 2022 at 9:21 AM Kuniyuki Iwashima <kuniyu@...zon.com> wrote: > > > > The more sockets we have in the hash table, the longer we spend looking > > up the socket. While running a number of small workloads on the same > > host, they penalise each other and cause performance degradation.> > > ... > > +static int proc_tcp_child_ehash_entries(struct ctl_table *table, int write, > > + void *buffer, size_t *lenp, loff_t *ppos) > > +{ > > + unsigned int tcp_child_ehash_entries; > > + int ret; > > + > > + ret = proc_douintvec_minmax(table, write, buffer, lenp, ppos); > > + if (!write || ret) > > + return ret; > > + > > + tcp_child_ehash_entries = READ_ONCE(*(unsigned int *)table->data); > > + if (tcp_child_ehash_entries) > > + tcp_child_ehash_entries = roundup_pow_of_two(tcp_child_ehash_entries); > > This is not thread safe. Oh, I didn't know that. Thank you for pointing out! > > You could simply perform the roundup_pow_of_two() elsewhere, > eg in tcp_set_hashinfo() (and leave the sysctl as set by the user) Will do so and update the doc and changelog. > > > + > > + WRITE_ONCE(*(unsigned int *)table->data, tcp_child_ehash_entries); > > + > > + return 0; > > +} > > +
Powered by blists - more mailing lists