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: Tue, 13 Oct 2020 08:55:29 +0200 From: Eric Dumazet <eric.dumazet@...il.com> To: Muchun Song <songmuchun@...edance.com>, Eric Dumazet <eric.dumazet@...il.com> Cc: Eric Dumazet <edumazet@...gle.com>, Cong Wang <xiyou.wangcong@...il.com>, Greg KH <gregkh@...uxfoundation.org>, rafael@...nel.org, "Michael S. Tsirkin" <mst@...hat.com>, Jason Wang <jasowang@...hat.com>, David Miller <davem@...emloft.net>, Jakub Kicinski <kuba@...nel.org>, Alexey Dobriyan <adobriyan@...il.com>, Andrew Morton <akpm@...ux-foundation.org>, Alexey Kuznetsov <kuznet@....inr.ac.ru>, Hideaki YOSHIFUJI <yoshfuji@...ux-ipv6.org>, Steffen Klassert <steffen.klassert@...unet.com>, Herbert Xu <herbert@...dor.apana.org.au>, Shakeel Butt <shakeelb@...gle.com>, Will Deacon <will@...nel.org>, Michal Hocko <mhocko@...e.com>, Roman Gushchin <guro@...com>, Neil Brown <neilb@...e.de>, rppt@...nel.org, Sami Tolvanen <samitolvanen@...gle.com>, "Kirill A. Shutemov" <kirill.shutemov@...ux.intel.com>, Feng Tang <feng.tang@...el.com>, Paolo Abeni <pabeni@...hat.com>, Willem de Bruijn <willemb@...gle.com>, Randy Dunlap <rdunlap@...radead.org>, Florian Westphal <fw@...len.de>, gustavoars@...nel.org, Pablo Neira Ayuso <pablo@...filter.org>, Dexuan Cui <decui@...rosoft.com>, Jakub Sitnicki <jakub@...udflare.com>, Peter Zijlstra <peterz@...radead.org>, Christian Brauner <christian.brauner@...ntu.com>, "Eric W. Biederman" <ebiederm@...ssion.com>, Thomas Gleixner <tglx@...utronix.de>, dave@...olabs.net, Michel Lespinasse <walken@...gle.com>, Jann Horn <jannh@...gle.com>, chenqiwu@...omi.com, christophe.leroy@....fr, Minchan Kim <minchan@...nel.org>, Martin KaFai Lau <kafai@...com>, Alexei Starovoitov <ast@...nel.org>, Daniel Borkmann <daniel@...earbox.net>, Miaohe Lin <linmiaohe@...wei.com>, Kees Cook <keescook@...omium.org>, LKML <linux-kernel@...r.kernel.org>, virtualization@...ts.linux-foundation.org, Linux Kernel Network Developers <netdev@...r.kernel.org>, linux-fsdevel <linux-fsdevel@...r.kernel.org>, linux-mm <linux-mm@...ck.org> Subject: Re: [External] Re: [PATCH] mm: proc: add Sock to /proc/meminfo On 10/12/20 11:53 AM, Muchun Song wrote: > We are not complaining about TCP using too much memory, but how do > we know that TCP uses a lot of memory. When I firstly face this problem, > I do not know who uses the 25GB memory and it is not shown in the /proc/meminfo. > If we can know the amount memory of the socket buffer via /proc/meminfo, we > may not need to spend a lot of time troubleshooting this problem. Not everyone > knows that a lot of memory may be used here. But I believe many people > should know /proc/meminfo to confirm memory users. Adding yet another operations in networking fast path is a high cost to pay just to add one extra line in /proc/meminfo, while /proc/net/sockstat is already a good proxy, with per protocol details, instead of a single bucket. I reiterate that zero copy would make this counter out of sync, unless special support is added (adding yet another operations ?) Also your patch does not address gazillions of page allocations from drivers in RX path. Here at Google the majority of networking mm usage when hosts are under stress is in RX path, when out of order queues start to grow in TCP sockets. Allocations in TX path were greatly reduced and optimally sized with the introduction of /proc/sys/net/ipv4/tcp_notsent_lowat. We have gazillions of put_page()/__free_page()/__free_pages()/alloc_page()/... all over the places, adding yet another tracking of "this page is used by networking stacks" is going to be quite a big project. I thought memcg was a better goal in the long run, lets focus on it.
Powered by blists - more mailing lists