Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755571AbbBFORy (ORCPT ); Fri, 6 Feb 2015 09:17:54 -0500 Received: from mail-qa0-f46.google.com ([209.85.216.46]:36127 "EHLO mail-qa0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754875AbbBFORv (ORCPT ); Fri, 6 Feb 2015 09:17:51 -0500 Date: Fri, 6 Feb 2015 09:17:46 -0500 From: Tejun Heo To: Greg Thelen Cc: Konstantin Khlebnikov , Johannes Weiner , Michal Hocko , Cgroups , "linux-mm@kvack.org" , "linux-kernel@vger.kernel.org" , Jan Kara , Dave Chinner , Jens Axboe , Christoph Hellwig , Li Zefan , Hugh Dickins Subject: Re: [RFC] Making memcg track ownership per address_space or anon_vma Message-ID: <20150206141746.GB10580@htj.dyndns.org> References: <20150130160722.GA26111@htj.dyndns.org> <54CFCF74.6090400@yandex-team.ru> <20150202194608.GA8169@htj.dyndns.org> <20150204170656.GA18858@htj.dyndns.org> <20150205131514.GD25736@htj.dyndns.org> <20150205222522.GA10580@htj.dyndns.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1766 Lines: 45 Hello, Greg. On Thu, Feb 05, 2015 at 04:03:34PM -0800, Greg Thelen wrote: > So this is a system which charges all cgroups using a shared inode > (recharge on read) for all resident pages of that shared inode. There's > only one copy of the page in memory on just one LRU, but the page may be > charged to multiple container's (shared_)usage. Yeap. > Perhaps I missed it, but what happens when a child's limit is > insufficient to accept all pages shared by its siblings? Example > starting with 2M cached of a shared file: > > A > +-B (usage=2M lim=3M hosted_usage=2M) > +-C (usage=0 lim=2M shared_usage=2M) > +-D (usage=0 lim=2M shared_usage=2M) > \-E (usage=0 lim=1M shared_usage=0) > > If E faults in a new 4K page within the shared file, then E is a sharing > participant so it'd be charged the 2M+4K, which pushes E over it's > limit. OOM? It shouldn't be participating in sharing of an inode if it can't match others' protection on the inode, I think. What we're doing now w/ page based charging is kinda unfair because in the situations like above the one under pressure can end up siphoning off of the larger cgroups' protection if they actually use overlapping areas; however, for disjoint areas, per-page charging would behave correctly. So, this part comes down to the same question - whether multiple cgroups accessing disjoint areas of a single inode is an important enough use case. If we say yes to that, we better make writeback support that too. Thanks. -- tejun -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/