All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vasily Averin <vvs-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
To: cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
	Michal Hocko <mhocko-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Shakeel Butt <shakeelb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>,
	Johannes Weiner <hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org>,
	Vladimir Davydov
	<vdavydov.dev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Cc: Roman Gushchin <guro-b10kYP2dOMg@public.gmane.org>,
	Alexander Viro
	<viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org>,
	Alexey Dobriyan
	<adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Andrei Vagin <avagin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Andrew Morton
	<akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org>,
	Borislav Petkov <bp-Gina5bIWoIWzQB+pC5nmwQ@public.gmane.org>,
	Christian Brauner
	<christian.brauner-GeWIH/nMZzLQT0dZR+AlfA@public.gmane.org>,
	David Ahern <dsahern-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	"David S. Miller" <davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org>,
	Dmitry Safonov
	<0x7f454c46-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>,
	Eric Dumazet <edumazet-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>,
	"Eric W. Biederman"
	<ebiederm-aS9lmoZGLiVWk0Htik3J/w@public.gmane.org>,
	Greg Kroah-Hartman
	<gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org>,
	Hideaki YOSHIFUJI
	<yoshfuji-VfPWfsRibaP+Ru+s062T9g@public.gmane.org>,
	"H. Peter Anvin" <hpa-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org>,
	Ingo Molnar <mingo-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
	Jakub Kicinski <kuba-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	"J. Bruce Fields"
	<bfields-uC3wQj2KruNg9hUCZPvPmw@public.gmane.org>,
	Jeff Layton <jlayton-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
	Jens Axboe <axboe@kernel.d>
Subject: [PATCH v3 00/16] memcg accounting from OpenVZ
Date: Thu, 22 Apr 2021 13:35:54 +0300	[thread overview]
Message-ID: <8664122a-99d3-7199-869a-781b21b7e712@virtuozzo.com> (raw)
In-Reply-To: <dddf6b29-debd-dcb5-62d0-74909d610edb-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>

OpenVZ uses memory accounting 20+ years since v2.2.x linux kernels. 
Initially we used our own accounting subsystem, then partially committed
it to upstream, and a few years ago switched to cgroups v1.
Now we're rebasing again, revising our old patches and trying to push
them upstream.

We try to protect the host system from any misuse of kernel memory 
allocation triggered by untrusted users inside the containers.

Patch-set is addressed mostly to cgroups maintainers and cgroups@ mailing
list, though I would be very grateful for any comments from maintainersi
of affected subsystems or other people added in cc:

Compared to the upstream, we additionally account the following kernel objects:
- network devices and its Tx/Rx queues
- ipv4/v6 addresses and routing-related objects
- inet_bind_bucket cache objects
- VLAN group arrays
- ipv6/sit: ip_tunnel_prl
- scm_fp_list objects used by SCM_RIGHTS messages of Unix sockets 
- nsproxy and namespace objects itself
- IPC objects: semaphores, message queues and share memory segments
- mounts
- pollfd and select bits arrays
- signals and posix timers
- file lock
- fasync_struct used by the file lease code and driver's fasync queues 
- tty objects
- per-mm LDT

We have an incorrect/incomplete/obsoleted accounting for few other kernel
objects: sk_filter, af_packets, netlink and xt_counters for iptables.
They require rework and probably will be dropped at all.

Also we're going to add an accounting for nft, however it is not ready yet.

We have not tested performance on upstream, however, our performance team
compares our current RHEL7-based production kernel and reports that
they are at least not worse as the according original RHEL7 kernel.

v3:
- added new patches for other kind of accounted objects
- combined patches for ip address/routing-related objects
- improved description
- re-ordered and rebased for linux 5.12-rc8

v2:
- squashed old patch 1 "accounting for allocations called with disabled BH"
   with old patch 2 "accounting for fib6_nodes cache" used such kind of memory allocation 
- improved patch description
- subsystem maintainers added to cc:

Vasily Averin (16):
  memcg: enable accounting for net_device and Tx/Rx queues
  memcg: enable accounting for IP address and routing-related objects
  memcg: enable accounting for inet_bin_bucket cache
  memcg: enable accounting for VLAN group array
  memcg: ipv6/sit: account and don't WARN on ip_tunnel_prl structs
    allocation
  memcg: enable accounting for scm_fp_list objects
  memcg: enable accounting for new namesapces and struct nsproxy
  memcg: enable accounting of ipc resources
  memcg: enable accounting for mnt_cache entries
  memcg: enable accounting for pollfd and select bits arrays
  memcg: enable accounting for signals
  memcg: enable accounting for posix_timers_cache slab
  memcg: enable accounting for file lock caches
  memcg: enable accounting for fasync_cache
  memcg: enable accounting for tty-related objects
  memcg: enable accounting for ldt_struct objects

 arch/x86/kernel/ldt.c      |  7 ++++---
 drivers/tty/tty_io.c       |  4 ++--
 fs/fcntl.c                 |  3 ++-
 fs/locks.c                 |  6 ++++--
 fs/namespace.c             |  7 ++++---
 fs/select.c                |  4 ++--
 ipc/msg.c                  |  2 +-
 ipc/namespace.c            |  2 +-
 ipc/sem.c                  | 10 ++++++----
 ipc/shm.c                  |  2 +-
 kernel/cgroup/namespace.c  |  2 +-
 kernel/nsproxy.c           |  2 +-
 kernel/pid_namespace.c     |  2 +-
 kernel/signal.c            |  2 +-
 kernel/time/namespace.c    |  4 ++--
 kernel/time/posix-timers.c |  4 ++--
 kernel/user_namespace.c    |  2 +-
 mm/memcontrol.c            |  2 +-
 net/8021q/vlan.c           |  2 +-
 net/core/dev.c             |  6 +++---
 net/core/fib_rules.c       |  4 ++--
 net/core/scm.c             |  4 ++--
 net/dccp/proto.c           |  2 +-
 net/ipv4/devinet.c         |  2 +-
 net/ipv4/fib_trie.c        |  4 ++--
 net/ipv4/tcp.c             |  4 +++-
 net/ipv6/addrconf.c        |  2 +-
 net/ipv6/ip6_fib.c         |  4 ++--
 net/ipv6/route.c           |  2 +-
 net/ipv6/sit.c             |  5 +++--
 30 files changed, 59 insertions(+), 49 deletions(-)

-- 
1.8.3.1


  parent reply	other threads:[~2021-04-22 10:35 UTC|newest]

Thread overview: 305+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-09  8:03 [PATCH 0/9] memcg accounting from OpenVZ Vasily Averin
2021-03-09  8:03 ` Vasily Averin
2021-03-09 21:12 ` Shakeel Butt
2021-03-09 21:12   ` Shakeel Butt
2021-03-10 10:17   ` Vasily Averin
2021-03-10 10:17     ` Vasily Averin
2021-03-10 10:41     ` Michal Hocko
2021-03-10 10:41       ` Michal Hocko
2021-03-11  7:00       ` Vasily Averin
2021-03-11  7:00         ` Vasily Averin
2021-03-11  8:35         ` Michal Hocko
2021-03-11  8:35           ` Michal Hocko
     [not found]           ` <YEnWUrYOArju66ym-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2021-03-15 12:22             ` [PATCH v2 0/8] " Vasily Averin
2021-04-22 10:36               ` [PATCH v3 01/16] memcg: enable accounting for net_device and Tx/Rx queues Vasily Averin
2021-04-22 10:36                 ` Vasily Averin
2021-04-22 10:36               ` [PATCH v3 02/16] memcg: enable accounting for IP address and routing-related objects Vasily Averin
2021-04-22 10:36                 ` Vasily Averin
2021-04-22 10:36               ` [PATCH v3 03/16] memcg: enable accounting for inet_bin_bucket cache Vasily Averin
2021-04-22 10:36                 ` Vasily Averin
2021-04-22 10:36               ` [PATCH v3 04/16] memcg: enable accounting for VLAN group array Vasily Averin
2021-04-22 10:36                 ` Vasily Averin
2021-04-22 10:36               ` [PATCH v3 05/16] memcg: ipv6/sit: account and don't WARN on ip_tunnel_prl structs allocation Vasily Averin
2021-04-22 10:36                 ` Vasily Averin
2021-04-22 10:36               ` [PATCH v3 06/16] memcg: enable accounting for scm_fp_list objects Vasily Averin
2021-04-22 10:36                 ` Vasily Averin
     [not found]               ` <dddf6b29-debd-dcb5-62d0-74909d610edb-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-03-16  7:15                 ` [PATCH v2 0/8] memcg accounting from OpenVZ Vasily Averin
2021-04-22 10:35                 ` Vasily Averin [this message]
2021-04-28  6:51                   ` [PATCH v4 00/16] " Vasily Averin
2021-04-28  6:51                     ` Vasily Averin
2021-07-15 17:11                     ` Shakeel Butt
2021-07-15 17:11                       ` Shakeel Butt
2021-07-16  4:11                       ` Vasily Averin
2021-07-16  4:11                         ` Vasily Averin
2021-07-16 12:55                         ` Shakeel Butt
2021-07-16 12:55                           ` Shakeel Butt
2021-07-19 10:44                           ` [PATCH v5 " Vasily Averin
2021-07-19 10:44                             ` Vasily Averin
2021-07-26 18:59                             ` [PATCH v6 00/16] memcg accounting from Vasily Averin
2021-07-26 18:59                               ` Vasily Averin
2021-07-26 21:59                               ` David Miller
2021-07-27  4:44                                 ` [PATCH v6 00/16] memcg accounting from OpenVZ Vasily Averin
2021-07-27  4:44                                   ` Vasily Averin
2021-07-27  5:33                                   ` [PATCH v7 00/10] " Vasily Averin
2021-07-27  5:33                                     ` Vasily Averin
     [not found]                                   ` <cover.1627362057.git.vvs@virtuozzo.com>
2021-07-27  5:33                                     ` [PATCH v7 01/10] memcg: enable accounting for mnt_cache entries Vasily Averin
2021-07-27  5:33                                       ` Vasily Averin
2021-07-27  6:44                                       ` Shakeel Butt
2021-07-27  6:44                                         ` Shakeel Butt
2021-07-27  7:21                                       ` Christian Brauner
2021-07-27  7:21                                         ` Christian Brauner
2021-07-27  5:33                                     ` [PATCH v7 02/10] memcg: enable accounting for pollfd and select bits arrays Vasily Averin
2021-07-27 21:39                                       ` Shakeel Butt
2021-07-27 21:39                                         ` Shakeel Butt
2021-07-27  5:33                                     ` [PATCH v7 03/10] memcg: enable accounting for file lock caches Vasily Averin
2021-07-27 21:41                                       ` Shakeel Butt
2021-07-27  5:33                                     ` [PATCH v7 04/10] memcg: enable accounting for fasync_cache Vasily Averin
2021-07-27 21:50                                       ` Shakeel Butt
2021-07-27 21:50                                         ` Shakeel Butt
2021-07-27  5:33                                     ` [PATCH v7 05/10] memcg: enable accounting for new namesapces and struct nsproxy Vasily Averin
2021-07-27  5:33                                       ` Vasily Averin
2021-07-27 21:51                                       ` Shakeel Butt
2021-07-27  5:33                                     ` [PATCH v7 06/10] memcg: enable accounting of ipc resources Vasily Averin
2021-07-27  5:33                                       ` Vasily Averin
2021-07-27 22:33                                       ` Shakeel Butt
2021-07-27  5:34                                     ` [PATCH v7 07/10] memcg: enable accounting for signals Vasily Averin
2021-07-27  5:34                                       ` Vasily Averin
2021-07-27  5:34                                     ` [PATCH v7 08/10] memcg: enable accounting for posix_timers_cache slab Vasily Averin
2021-07-27  5:34                                       ` Vasily Averin
2021-07-27 22:33                                       ` Shakeel Butt
2021-07-27 22:33                                         ` Shakeel Butt
2021-07-27  5:34                                     ` [PATCH v7 09/10] memcg: enable accounting for tty-related objects Vasily Averin
2021-07-27  5:34                                       ` Vasily Averin
2021-07-27  6:09                                       ` Greg Kroah-Hartman
2021-07-27  6:09                                         ` Greg Kroah-Hartman
2021-07-27  6:54                                       ` Jiri Slaby
2021-07-27  6:54                                         ` Jiri Slaby
2021-07-27  8:02                                         ` Vasily Averin
2021-07-27  8:02                                           ` Vasily Averin
2021-07-27  9:26                                           ` [PATCH TTY] memcg: drop GFP_KERNEL_ACCOUNT use in tty_save_termios() Vasily Averin
2021-07-27  9:26                                             ` Vasily Averin
2021-07-27  9:32                                             ` Greg Kroah-Hartman
2021-07-27  9:32                                               ` Greg Kroah-Hartman
2022-02-28  9:13                                             ` [PATCH v2] memcg: enable accounting for tty-related objects Vasily Averin
2021-07-27  9:30                                           ` [PATCH v7 09/10] " Greg Kroah-Hartman
2021-07-27  9:30                                             ` Greg Kroah-Hartman
2021-07-27  5:34                                     ` [PATCH v7 10/10] memcg: enable accounting for ldt_struct objects Vasily Averin
2021-07-27  5:34                                       ` Vasily Averin
2021-07-27 22:36                                       ` Shakeel Butt
     [not found]                             ` <cover.1627321321.git.vvs@virtuozzo.com>
2021-07-26 18:59                               ` [PATCH v6 01/16] memcg: enable accounting for net_device and Tx/Rx queues Vasily Averin
2021-07-26 18:59                                 ` Vasily Averin
2021-07-26 19:00                               ` [PATCH v6 02/16] memcg: enable accounting for IP address and routing-related objects Vasily Averin
2021-07-26 19:00                               ` [PATCH v6 03/16] memcg: enable accounting for inet_bin_bucket cache Vasily Averin
2021-07-26 19:00                                 ` Vasily Averin
2021-07-26 19:00                               ` [PATCH v6 04/16] memcg: enable accounting for VLAN group array Vasily Averin
2021-07-26 19:00                                 ` Vasily Averin
2021-07-26 19:00                               ` [PATCH v6 05/16] memcg: ipv6/sit: account and don't WARN on ip_tunnel_prl structs allocation Vasily Averin
2021-07-26 19:00                                 ` Vasily Averin
2021-07-26 19:00                               ` [PATCH v6 06/16] memcg: enable accounting for scm_fp_list objects Vasily Averin
2021-07-26 19:00                                 ` Vasily Averin
2021-07-26 19:00                               ` [PATCH v6 07/16] memcg: enable accounting for mnt_cache entries Vasily Averin
2021-07-26 19:00                                 ` Vasily Averin
2021-07-26 19:00                               ` [PATCH v6 08/16] memcg: enable accounting for pollfd and select bits arrays Vasily Averin
2021-07-26 19:00                                 ` Vasily Averin
2021-07-26 19:01                               ` [PATCH v6 09/16] memcg: enable accounting for file lock caches Vasily Averin
2021-07-26 19:01                                 ` Vasily Averin
2021-07-26 19:01                               ` [PATCH v6 10/16] memcg: enable accounting for fasync_cache Vasily Averin
2021-07-26 19:01                                 ` Vasily Averin
2021-07-26 19:01                               ` [PATCH v6 11/16] memcg: enable accounting for new namesapces and struct nsproxy Vasily Averin
2021-07-26 19:01                                 ` Vasily Averin
2021-07-26 19:58                                 ` Kirill Tkhai
2021-07-26 19:58                                   ` Kirill Tkhai
2021-07-26 19:01                               ` [PATCH v6 12/16] memcg: enable accounting of ipc resources Vasily Averin
2021-07-26 19:01                                 ` Vasily Averin
2021-07-26 19:01                               ` [PATCH v6 13/16] memcg: enable accounting for signals Vasily Averin
2021-07-26 19:01                                 ` Vasily Averin
2021-07-26 19:01                               ` [PATCH v6 14/16] memcg: enable accounting for posix_timers_cache slab Vasily Averin
2021-07-26 19:01                                 ` Vasily Averin
2021-07-26 19:01                               ` [PATCH v6 15/16] memcg: enable accounting for tty-related objects Vasily Averin
2021-07-26 19:01                                 ` Vasily Averin
2021-07-26 19:01                               ` [PATCH v6 16/16] memcg: enable accounting for ldt_struct objects Vasily Averin
2021-07-26 19:01                                 ` Vasily Averin
     [not found]                           ` <cover.1626688654.git.vvs@virtuozzo.com>
2021-07-19 10:44                             ` [PATCH v5 01/16] memcg: enable accounting for net_device and Tx/Rx queues Vasily Averin
2021-07-19 10:44                               ` Vasily Averin
2021-07-19 10:44                             ` [PATCH v5 02/16] memcg: enable accounting for IP address and routing-related objects Vasily Averin
2021-07-19 10:44                               ` Vasily Averin
2021-07-19 14:00                               ` Dmitry Safonov
2021-07-19 14:00                                 ` Dmitry Safonov
2021-07-19 14:22                                 ` Shakeel Butt
2021-07-19 14:22                                   ` Shakeel Butt
2021-07-19 14:24                                   ` Dmitry Safonov
2021-07-19 14:24                                     ` Dmitry Safonov
2021-07-20 19:26                               ` Shakeel Butt
2021-07-20 19:26                                 ` Shakeel Butt
2021-07-26 10:23                                 ` Vasily Averin
2021-07-26 10:23                                   ` Vasily Averin
2021-07-26 13:48                                   ` Shakeel Butt
2021-07-26 16:53                                     ` [PATCH] memcg: replace in_interrupt() by !in_task() in active_memcg() Vasily Averin
2021-07-26 16:57                                       ` Shakeel Butt
2021-07-26 16:57                                         ` Shakeel Butt
2021-07-26 16:57                                         ` Shakeel Butt
2021-07-19 10:44                             ` [PATCH v5 03/16] memcg: enable accounting for inet_bin_bucket cache Vasily Averin
2021-07-19 10:44                             ` [PATCH v5 04/16] memcg: enable accounting for VLAN group array Vasily Averin
2021-07-19 10:44                             ` [PATCH v5 05/16] memcg: ipv6/sit: account and don't WARN on ip_tunnel_prl structs allocation Vasily Averin
2021-07-19 10:44                               ` Vasily Averin
2021-07-19 10:44                             ` [PATCH v5 06/16] memcg: enable accounting for scm_fp_list objects Vasily Averin
2021-07-19 10:44                               ` Vasily Averin
2021-07-19 10:45                             ` [PATCH v5 07/16] memcg: enable accounting for mnt_cache entries Vasily Averin
2021-07-19 10:45                               ` Vasily Averin
2021-07-19 10:45                             ` [PATCH v5 08/16] memcg: enable accounting for pollfd and select bits arrays Vasily Averin
2021-07-19 10:45                               ` Vasily Averin
2021-07-19 10:45                             ` [PATCH v5 09/16] memcg: enable accounting for file lock caches Vasily Averin
2021-07-19 10:45                               ` Vasily Averin
2021-07-19 10:45                             ` [PATCH v5 10/16] memcg: enable accounting for fasync_cache Vasily Averin
2021-07-19 10:45                               ` Vasily Averin
2021-07-19 10:45                             ` [PATCH v5 11/16] memcg: enable accounting for new namesapces and struct nsproxy Vasily Averin
2021-07-19 10:45                               ` Vasily Averin
2021-07-19 10:45                             ` [PATCH v5 12/16] memcg: enable accounting of ipc resources Vasily Averin
2021-07-19 10:45                               ` Vasily Averin
2021-07-19 10:45                             ` [PATCH v5 13/16] memcg: enable accounting for signals Vasily Averin
2021-07-19 10:45                               ` Vasily Averin
2021-07-19 17:32                               ` Eric W. Biederman
2021-07-19 17:32                                 ` Eric W. Biederman
2021-07-20  8:35                                 ` Vasily Averin
2021-07-20  8:35                                   ` Vasily Averin
2021-07-20 14:37                                   ` Shakeel Butt
2021-07-20 16:42                                   ` Eric W. Biederman
2021-07-20 16:42                                     ` Eric W. Biederman
2021-07-20 19:15                               ` Shakeel Butt
2021-07-20 19:15                                 ` Shakeel Butt
2021-07-19 10:45                             ` [PATCH v5 14/16] memcg: enable accounting for posix_timers_cache slab Vasily Averin
2021-07-19 10:45                             ` [PATCH v5 15/16] memcg: enable accounting for tty-related objects Vasily Averin
2021-07-19 10:45                               ` Vasily Averin
2021-07-19 10:46                             ` [PATCH v5 16/16] memcg: enable accounting for ldt_struct objects Vasily Averin
2021-07-19 10:46                               ` Vasily Averin
2021-04-28  6:51                   ` [PATCH v4 01/16] memcg: enable accounting for net_device and Tx/Rx queues Vasily Averin
2021-04-28  6:51                     ` Vasily Averin
2021-04-28  6:51                   ` [PATCH v4 02/16] memcg: enable accounting for IP address and routing-related objects Vasily Averin
2021-04-28  6:51                     ` Vasily Averin
2021-04-28  6:51                   ` [PATCH v4 03/16] memcg: enable accounting for inet_bin_bucket cache Vasily Averin
2021-04-28  6:52                   ` [PATCH v4 04/16] memcg: enable accounting for VLAN group array Vasily Averin
2021-04-28  6:52                     ` Vasily Averin
2021-04-28  6:52                   ` [PATCH v4 05/16] memcg: ipv6/sit: account and don't WARN on ip_tunnel_prl structs allocation Vasily Averin
2021-04-28  6:52                     ` Vasily Averin
2021-04-28  6:52                   ` [PATCH v4 06/16] memcg: enable accounting for scm_fp_list objects Vasily Averin
2021-04-28  6:52                     ` Vasily Averin
2021-04-28  6:52                   ` [PATCH v4 07/16] memcg: enable accounting for new namesapces and struct nsproxy Vasily Averin
2021-04-28  6:52                     ` Vasily Averin
2021-05-07 13:45                     ` Serge E. Hallyn
2021-05-07 13:45                       ` Serge E. Hallyn
2021-05-07 15:03                     ` Christian Brauner
2021-05-07 15:03                       ` Christian Brauner
2021-04-28  6:52                   ` [PATCH v4 08/16] memcg: enable accounting of ipc resources Vasily Averin
2021-04-28  6:52                     ` Vasily Averin
2021-04-28  6:53                   ` [PATCH v4 09/16] memcg: enable accounting for mnt_cache entries Vasily Averin
2021-04-28  6:53                     ` Vasily Averin
2021-04-28  6:53                   ` [PATCH v4 10/16] memcg: enable accounting for pollfd and select bits arrays Vasily Averin
2021-04-28  6:53                     ` Vasily Averin
2021-04-28  6:53                   ` [PATCH v4 11/16] memcg: enable accounting for signals Vasily Averin
2021-04-28  6:53                     ` Vasily Averin
2021-04-28  6:53                   ` [PATCH v4 12/16] memcg: enable accounting for posix_timers_cache slab Vasily Averin
2021-04-28  6:53                     ` Vasily Averin
2021-05-07 15:48                     ` Thomas Gleixner
2021-05-07 15:48                       ` Thomas Gleixner
2021-04-28  6:53                   ` [PATCH v4 13/16] memcg: enable accounting for file lock caches Vasily Averin
2021-04-28  6:53                     ` Vasily Averin
2021-04-28  6:54                   ` [PATCH v4 14/16] memcg: enable accounting for fasync_cache Vasily Averin
2021-04-28  6:54                     ` Vasily Averin
2021-04-28  6:54                   ` [PATCH v4 15/16] memcg: enable accounting for tty-related objects Vasily Averin
2021-04-28  6:54                     ` Vasily Averin
2021-04-28  7:38                     ` Greg Kroah-Hartman
2021-04-28  7:38                       ` Greg Kroah-Hartman
2021-04-28  6:54                   ` [PATCH v4 16/16] memcg: enable accounting for ldt_struct objects Vasily Averin
2021-04-28  6:54                     ` Vasily Averin
2021-04-22 10:36                 ` [PATCH v3 07/16] memcg: enable accounting for new namesapces and struct nsproxy Vasily Averin
2021-04-22 10:37                 ` [PATCH v3 08/16] memcg: enable accounting of ipc resources Vasily Averin
     [not found]                   ` <4ed65beb-bda3-1c93-fadf-296b760a32b2-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-04-23 12:16                     ` Alexey Dobriyan
     [not found]                       ` <YIK6ttdnfjOo6XCN-bi+AKbBUZKY6gyzm1THtWbp2dZbC/Bob@public.gmane.org>
2021-04-23 12:32                         ` Vasily Averin
     [not found]                           ` <dd9b1767-55e0-6754-3ac5-7e01de12f16e-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-04-23 13:40                             ` Michal Hocko
     [not found]                               ` <YILOab0/h83egjUw-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2021-04-23 13:49                                 ` Michal Hocko
     [not found]                                   ` <YILQa1qas7veJaCq-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2021-04-24 11:17                                     ` Vasily Averin
2021-04-26 10:18                                       ` [PATCH 0/2] ipc: allocations cleanup Vasily Averin
2021-04-26 10:18                                         ` Vasily Averin
2021-04-28  7:35                                         ` [PATCH v2 " Vasily Averin
2021-04-28  7:35                                           ` Vasily Averin
2021-04-28  7:35                                         ` [PATCH v2 1/2] ipc sem: use kvmalloc for sem_undo allocation Vasily Averin
2021-04-28  7:35                                         ` [PATCH v2 2/2] ipc: use kmalloc for msg_queue and shmid_kernel Vasily Averin
2021-04-28  7:35                                           ` Vasily Averin
2021-04-26 10:18                                       ` [PATCH 1/2] ipc sem: use kvmalloc for sem_undo allocation Vasily Averin
2021-04-26 10:18                                         ` Vasily Averin
2021-04-26 10:28                                         ` Michal Hocko
2021-04-26 16:22                                         ` Shakeel Butt
2021-04-26 16:22                                           ` Shakeel Butt
2021-04-26 20:29                                         ` Roman Gushchin
2021-04-26 20:29                                           ` Roman Gushchin
2021-04-26 10:18                                       ` [PATCH 2/2] ipc: use kmalloc for msg_queue and shmid_kernel Vasily Averin
2021-04-26 10:18                                         ` Vasily Averin
2021-04-26 10:25                                         ` Michal Hocko
2021-04-26 10:25                                           ` Michal Hocko
2021-04-28  5:15                                           ` Vasily Averin
2021-04-28  5:15                                             ` Vasily Averin
2021-04-28  6:33                                             ` Michal Hocko
2021-04-28  6:33                                               ` Michal Hocko
2021-04-26 16:23                                         ` Shakeel Butt
2021-04-26 16:23                                           ` Shakeel Butt
2021-04-26 20:29                                         ` Roman Gushchin
2021-04-26 20:29                                           ` Roman Gushchin
2021-04-22 10:37                 ` [PATCH v3 09/16] memcg: enable accounting for mnt_cache entries Vasily Averin
2021-04-22 10:37                 ` [PATCH v3 10/16] memcg: enable accounting for pollfd and select bits arrays Vasily Averin
2021-04-22 10:37                 ` [PATCH v3 11/16] memcg: enable accounting for signals Vasily Averin
2021-04-22 10:37                 ` [PATCH v3 12/16] memcg: enable accounting for posix_timers_cache slab Vasily Averin
2021-04-22 10:37                 ` [PATCH v3 13/16] memcg: enable accounting for file lock caches Vasily Averin
2021-04-22 10:37                 ` [PATCH v3 14/16] memcg: enable accounting for fasync_cache Vasily Averin
2021-04-22 10:37                 ` [PATCH v3 15/16] memcg: enable accounting for tty-related objects Vasily Averin
     [not found]                   ` <da450388-2fbc-1bb8-0839-b6480cb0eead-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-04-22 11:23                     ` Greg Kroah-Hartman
     [not found]                       ` <YIFcqcd4dCiNcILj-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2021-04-22 11:44                         ` Michal Hocko
     [not found]                           ` <YIFhuwlXKaAaY3IU-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2021-04-22 11:50                             ` Greg Kroah-Hartman
     [not found]                               ` <YIFjI3zHVQr4BjHc-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2021-04-22 12:22                                 ` Michal Hocko
2021-04-22 13:59                                 ` Vasily Averin
     [not found]                                   ` <6e697a1f-936d-5ffe-d29f-e4dcbe099799-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-04-23  7:53                                     ` Vasily Averin
     [not found]                                       ` <03cb1ce9-143a-1cd0-f34b-d608c3bbc66c-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-04-23  8:58                                         ` Michal Hocko
     [not found]                                           ` <YIKMMSf1uPrWmT2V-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2021-04-23 10:29                                             ` Vasily Averin
     [not found]                                               ` <31c49c60-44db-0363-3d07-5febe0048e86-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-04-23 10:57                                                 ` Greg Kroah-Hartman
2021-04-22 10:38                 ` [PATCH v3 16/16] memcg: enable accounting for ldt_struct objects Vasily Averin
     [not found]                   ` <94dd36cb-3abb-53fc-0f23-26c02094ddf4-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-04-22 12:26                     ` Borislav Petkov
     [not found]                       ` <20210422122615.GA7021-Jj63ApZU6fQ@public.gmane.org>
2021-04-23  3:13                         ` Vasily Averin
     [not found]                           ` <29fe6b29-d56a-6ea1-2fe7-2b015f6b74ef-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-04-23  6:20                             ` Michal Hocko
2021-03-15 12:23             ` [PATCH v2 1/8] memcg: accounting for fib6_nodes cache Vasily Averin
2021-03-15 15:13               ` David Ahern
2021-03-15 15:13                 ` David Ahern
2021-03-15 15:23               ` Shakeel Butt
2021-03-15 15:23                 ` Shakeel Butt
2021-03-15 17:09               ` Jakub Kicinski
2021-03-15 17:09                 ` Jakub Kicinski
2021-03-15 19:24                 ` Shakeel Butt
2021-03-15 19:24                   ` Shakeel Butt
2021-03-15 19:32                   ` Roman Gushchin
2021-03-15 19:32                     ` Roman Gushchin
2021-03-15 19:35                     ` Jakub Kicinski
2021-03-15 19:35                       ` Jakub Kicinski
2021-03-15 12:23             ` [PATCH v2 2/8] memcg: accounting for ip6_dst_cache Vasily Averin
2021-03-15 15:14               ` David Ahern
2021-03-15 15:14                 ` David Ahern
2021-03-15 12:23             ` [PATCH v2 3/8] memcg: accounting for fib_rules Vasily Averin
2021-03-15 15:14               ` David Ahern
2021-03-15 15:14                 ` David Ahern
2021-03-15 12:23             ` [PATCH v2 4/8] memcg: accounting for ip_fib caches Vasily Averin
2021-03-15 15:15               ` David Ahern
2021-03-15 15:15                 ` David Ahern
2021-03-15 12:23             ` [PATCH v2 5/8] memcg: accounting for fasync_cache Vasily Averin
2021-03-15 15:56               ` Shakeel Butt
2021-03-15 15:56                 ` Shakeel Butt
2021-03-15 12:23             ` [PATCH v2 6/8] memcg: accounting for mnt_cache entries Vasily Averin
2021-03-15 12:23             ` [PATCH v2 7/8] memcg: accounting for tty_struct objects Vasily Averin
     [not found]               ` <61134897-703e-a2a8-6f0b-0bf6e1b79dda-5HdwGun5lf+gSpxsJD1C4w@public.gmane.org>
2021-03-15 12:40                 ` Greg Kroah-Hartman
2021-03-15 12:24             ` [PATCH v2 8/8] memcg: accounting for ldt_struct objects Vasily Averin
2021-03-15 13:27               ` Borislav Petkov
2021-03-15 13:27                 ` Borislav Petkov
2021-03-15 15:48                 ` Shakeel Butt
2021-03-15 15:48                   ` Shakeel Butt
2021-03-15 15:58                   ` Michal Hocko
2021-03-15 15:58                     ` Michal Hocko
2021-03-15 15:59                   ` Borislav Petkov
2021-03-15 15:59                     ` Borislav Petkov
2021-03-11 15:14         ` [PATCH 0/9] memcg accounting from OpenVZ Shakeel Butt
2021-03-11 15:14           ` Shakeel Butt

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=8664122a-99d3-7199-869a-781b21b7e712@virtuozzo.com \
    --to=vvs-5hdwgun5lf+gspxsjd1c4w@public.gmane.org \
    --cc=0x7f454c46-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=adobriyan-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org \
    --cc=avagin-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=axboe@kernel.d \
    --cc=bfields-uC3wQj2KruNg9hUCZPvPmw@public.gmane.org \
    --cc=bp-Gina5bIWoIWzQB+pC5nmwQ@public.gmane.org \
    --cc=cgroups-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
    --cc=christian.brauner-GeWIH/nMZzLQT0dZR+AlfA@public.gmane.org \
    --cc=davem-fT/PcQaiUtIeIZ0/mPfg9Q@public.gmane.org \
    --cc=dsahern-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=ebiederm-aS9lmoZGLiVWk0Htik3J/w@public.gmane.org \
    --cc=edumazet-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
    --cc=gregkh-hQyY1W1yCW8ekmWlsbkhG0B+6BGkLq7r@public.gmane.org \
    --cc=guro-b10kYP2dOMg@public.gmane.org \
    --cc=hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org \
    --cc=hpa-YMNOUZJC4hwAvxtiuMwx3w@public.gmane.org \
    --cc=jlayton-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=kuba-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=mhocko-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=mingo-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=shakeelb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
    --cc=vdavydov.dev-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=viro-RmSDqhL/yNMiFSDQTTA3OLVCufUGDwFn@public.gmane.org \
    --cc=yoshfuji-VfPWfsRibaP+Ru+s062T9g@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.