From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CCE9EC433DF for ; Mon, 17 Aug 2020 19:38:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id B1CC220674 for ; Mon, 17 Aug 2020 19:38:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732483AbgHQTiv (ORCPT ); Mon, 17 Aug 2020 15:38:51 -0400 Received: from mx2.suse.de ([195.135.220.15]:39618 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729238AbgHQP06 (ORCPT ); Mon, 17 Aug 2020 11:26:58 -0400 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay2.suse.de (unknown [195.135.221.27]) by mx2.suse.de (Postfix) with ESMTP id AE32BAC24; Mon, 17 Aug 2020 15:27:21 +0000 (UTC) Date: Mon, 17 Aug 2020 17:26:55 +0200 From: Michal Hocko To: Waiman Long Cc: Andrew Morton , Johannes Weiner , Vladimir Davydov , Jonathan Corbet , Alexey Dobriyan , Ingo Molnar , Peter Zijlstra , Juri Lelli , Vincent Guittot , linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, linux-fsdevel@vger.kernel.org, cgroups@vger.kernel.org, linux-mm@kvack.org Subject: Re: [RFC PATCH 0/8] memcg: Enable fine-grained per process memory control Message-ID: <20200817152655.GE28270@dhcp22.suse.cz> References: <20200817140831.30260-1-longman@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200817140831.30260-1-longman@redhat.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon 17-08-20 10:08:23, Waiman Long wrote: > Memory controller can be used to control and limit the amount of > physical memory used by a task. When a limit is set in "memory.high" in > a v2 non-root memory cgroup, the memory controller will try to reclaim > memory if the limit has been exceeded. Normally, that will be enough > to keep the physical memory consumption of tasks in the memory cgroup > to be around or below the "memory.high" limit. > > Sometimes, memory reclaim may not be able to recover memory in a rate > that can catch up to the physical memory allocation rate. In this case, > the physical memory consumption will keep on increasing. When it reaches > "memory.max" for memory cgroup v2 or when the system is running out of > free memory, the OOM killer will be invoked to kill some tasks to free > up additional memory. However, one has little control of which tasks > are going to be killed by an OOM killer. Killing tasks that hold some > important resources without freeing them first can create other system > problems down the road. > > Users who do not want the OOM killer to be invoked to kill random > tasks in an out-of-memory situation can use the memory control > facility provided by this new patchset via prctl(2) to better manage > the mitigation action that needs to be performed to various tasks when > the specified memory limit is exceeded with memory cgroup v2 being used. > > The currently supported mitigation actions include the followings: > > 1) Return ENOMEM for some syscalls that allocate or handle memory > 2) Slow down the process for memory reclaim to catch up > 3) Send a specific signal to the task > 4) Kill the task > > The users that want better memory control for their applicatons can > either modify their applications to call the prctl(2) syscall directly > with the new memory control command code or write the desired action to > the newly provided memctl procfs files of their applications provided > that those applications run in a non-root v2 memory cgroup. prctl is fundamentally about per-process control while cgroup (not only memcg) is about group of processes interface. How do those two interact together? In other words what is the semantic when different processes have a different views on the same underlying memcg event? Also the above description doesn't really describe any usecase which struggles with the existing interface. We already do allow slow down and along with PSI also provide user space control over close to OOM situation. -- Michal Hocko SUSE Labs