From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752209AbdBJNfW (ORCPT ); Fri, 10 Feb 2017 08:35:22 -0500 Received: from mx2.suse.de ([195.135.220.15]:58091 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751134AbdBJNfQ (ORCPT ); Fri, 10 Feb 2017 08:35:16 -0500 Date: Fri, 10 Feb 2017 14:35:05 +0100 From: Michal Hocko To: Shaohua Li Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, Kernel-team@fb.com, danielmicay@gmail.com, minchan@kernel.org, hughd@google.com, hannes@cmpxchg.org, riel@redhat.com, mgorman@techsingularity.net, akpm@linux-foundation.org Subject: Re: [PATCH V2 7/7] mm: add a separate RSS for MADV_FREE pages Message-ID: <20170210133504.GO10893@dhcp22.suse.cz> References: <123396e3b523e8716dfc6fc87a5cea0c124ff29d.1486163864.git.shli@fb.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <123396e3b523e8716dfc6fc87a5cea0c124ff29d.1486163864.git.shli@fb.com> User-Agent: Mutt/1.6.0 (2016-04-01) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri 03-02-17 15:33:23, Shaohua Li wrote: > Add a separate RSS for MADV_FREE pages. The pages are charged into > MM_ANONPAGES (because they are mapped anon pages) and also charged into > the MM_LAZYFREEPAGES. /proc/pid/statm will have an extra field to > display the RSS, which userspace can use to determine the RSS excluding > MADV_FREE pages. > > The basic idea is to increment the RSS in madvise and decrement in unmap > or page reclaim. There is one limitation. If a page is shared by two > processes, since madvise only has mm cotext of current process, it isn't > convenient to charge the RSS for both processes. So we don't charge the > RSS if the mapcount isn't 1. On the other hand, fork can make a > MADV_FREE page shared by two processes. To make things consistent, we > uncharge the RSS from the source mm in fork. > > A new flag is added to indicate if a page is accounted into the RSS. We > can't use SwapBacked flag to do the determination because we can't > guarantee the page has SwapBacked flag cleared in madvise. We are > reusing mappedtodisk flag which should not be set for Anon pages. > > There are a couple of other places we need to uncharge the RSS, > activate_page and mark_page_accessed. activate_page is used by swap, > where MADV_FREE pages are already not in lazyfree state before going > into swap. mark_page_accessed is mainly used for file pages, but there > are several places it's used by anonymous pages. I fixed gup, but not > some gpu drivers and kvm. If the drivers use MADV_FREE, we might have > inprecise RSS accounting. > > Please note, the accounting is never going to be precise. MADV_FREE page > could be written by userspace without notification to the kernel. The > page can't be reclaimed like other clean lazyfree pages. The page isn't > real lazyfree page. But since kernel isn't aware of this, the page is > still accounted as lazyfree, thus the accounting could be incorrect. This is all quite complex and as you say unprecise already. From the description it is not even clear why do we need it at all. Why is /proc//smaps insufficient? I am also not fun of a new page flag - even though you managed to recycle an existing one which is a plus. Thanks -- Michal Hocko SUSE Labs From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wj0-f200.google.com (mail-wj0-f200.google.com [209.85.210.200]) by kanga.kvack.org (Postfix) with ESMTP id 2B4606B0038 for ; Fri, 10 Feb 2017 08:35:08 -0500 (EST) Received: by mail-wj0-f200.google.com with SMTP id c7so8859107wjb.7 for ; Fri, 10 Feb 2017 05:35:08 -0800 (PST) Received: from mx2.suse.de (mx2.suse.de. [195.135.220.15]) by mx.google.com with ESMTPS id a204si1234443wmd.77.2017.02.10.05.35.06 for (version=TLS1 cipher=AES128-SHA bits=128/128); Fri, 10 Feb 2017 05:35:07 -0800 (PST) Date: Fri, 10 Feb 2017 14:35:05 +0100 From: Michal Hocko Subject: Re: [PATCH V2 7/7] mm: add a separate RSS for MADV_FREE pages Message-ID: <20170210133504.GO10893@dhcp22.suse.cz> References: <123396e3b523e8716dfc6fc87a5cea0c124ff29d.1486163864.git.shli@fb.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <123396e3b523e8716dfc6fc87a5cea0c124ff29d.1486163864.git.shli@fb.com> Sender: owner-linux-mm@kvack.org List-ID: To: Shaohua Li Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, Kernel-team@fb.com, danielmicay@gmail.com, minchan@kernel.org, hughd@google.com, hannes@cmpxchg.org, riel@redhat.com, mgorman@techsingularity.net, akpm@linux-foundation.org On Fri 03-02-17 15:33:23, Shaohua Li wrote: > Add a separate RSS for MADV_FREE pages. The pages are charged into > MM_ANONPAGES (because they are mapped anon pages) and also charged into > the MM_LAZYFREEPAGES. /proc/pid/statm will have an extra field to > display the RSS, which userspace can use to determine the RSS excluding > MADV_FREE pages. > > The basic idea is to increment the RSS in madvise and decrement in unmap > or page reclaim. There is one limitation. If a page is shared by two > processes, since madvise only has mm cotext of current process, it isn't > convenient to charge the RSS for both processes. So we don't charge the > RSS if the mapcount isn't 1. On the other hand, fork can make a > MADV_FREE page shared by two processes. To make things consistent, we > uncharge the RSS from the source mm in fork. > > A new flag is added to indicate if a page is accounted into the RSS. We > can't use SwapBacked flag to do the determination because we can't > guarantee the page has SwapBacked flag cleared in madvise. We are > reusing mappedtodisk flag which should not be set for Anon pages. > > There are a couple of other places we need to uncharge the RSS, > activate_page and mark_page_accessed. activate_page is used by swap, > where MADV_FREE pages are already not in lazyfree state before going > into swap. mark_page_accessed is mainly used for file pages, but there > are several places it's used by anonymous pages. I fixed gup, but not > some gpu drivers and kvm. If the drivers use MADV_FREE, we might have > inprecise RSS accounting. > > Please note, the accounting is never going to be precise. MADV_FREE page > could be written by userspace without notification to the kernel. The > page can't be reclaimed like other clean lazyfree pages. The page isn't > real lazyfree page. But since kernel isn't aware of this, the page is > still accounted as lazyfree, thus the accounting could be incorrect. This is all quite complex and as you say unprecise already. From the description it is not even clear why do we need it at all. Why is /proc//smaps insufficient? I am also not fun of a new page flag - even though you managed to recycle an existing one which is a plus. Thanks -- Michal Hocko SUSE Labs -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@kvack.org. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: email@kvack.org