All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vasily Averin <vvs@virtuozzo.com>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: cgroups@vger.kernel.org, Michal Hocko <mhocko@kernel.org>,
	Shakeel Butt <shakeelb@google.com>,
	Johannes Weiner <hannes@cmpxchg.org>,
	Vladimir Davydov <vdavydov.dev@gmail.com>,
	Roman Gushchin <guro@fb.com>,
	Alexander Viro <viro@zeniv.linux.org.uk>,
	Jeff Layton <jlayton@kernel.org>,
	"J. Bruce Fields" <bfields@fieldses.org>,
	linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: [PATCH v7 03/10] memcg: enable accounting for file lock caches
Date: Tue, 27 Jul 2021 08:33:25 +0300	[thread overview]
Message-ID: <b009f4c7-f0ab-c0ec-8e83-918f47d677da@virtuozzo.com> (raw)
In-Reply-To: <cover.1627362057.git.vvs@virtuozzo.com>

User can create file locks for each open file and force kernel
to allocate small but long-living objects per each open file.

It makes sense to account for these objects to limit the host's memory
consumption from inside the memcg-limited container.

Signed-off-by: Vasily Averin <vvs@virtuozzo.com>
---
 fs/locks.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/fs/locks.c b/fs/locks.c
index 74b2a1d..1bc7ede 100644
--- a/fs/locks.c
+++ b/fs/locks.c
@@ -3056,10 +3056,12 @@ static int __init filelock_init(void)
 	int i;
 
 	flctx_cache = kmem_cache_create("file_lock_ctx",
-			sizeof(struct file_lock_context), 0, SLAB_PANIC, NULL);
+			sizeof(struct file_lock_context), 0,
+			SLAB_PANIC | SLAB_ACCOUNT, NULL);
 
 	filelock_cache = kmem_cache_create("file_lock_cache",
-			sizeof(struct file_lock), 0, SLAB_PANIC, NULL);
+			sizeof(struct file_lock), 0,
+			SLAB_PANIC | SLAB_ACCOUNT, NULL);
 
 	for_each_possible_cpu(i) {
 		struct file_lock_list_struct *fll = per_cpu_ptr(&file_lock_list, i);
-- 
1.8.3.1


  parent reply	other threads:[~2021-07-27  5:34 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                 ` [PATCH v3 00/16] " Vasily Averin
2021-04-28  6:51                   ` [PATCH v4 " 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                                     ` Vasily Averin [this message]
2021-07-27 21:41                                       ` [PATCH v7 03/10] memcg: enable accounting for file lock caches 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=b009f4c7-f0ab-c0ec-8e83-918f47d677da@virtuozzo.com \
    --to=vvs@virtuozzo.com \
    --cc=akpm@linux-foundation.org \
    --cc=bfields@fieldses.org \
    --cc=cgroups@vger.kernel.org \
    --cc=guro@fb.com \
    --cc=hannes@cmpxchg.org \
    --cc=jlayton@kernel.org \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mhocko@kernel.org \
    --cc=shakeelb@google.com \
    --cc=vdavydov.dev@gmail.com \
    --cc=viro@zeniv.linux.org.uk \
    /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.