Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934259AbdHYWbf (ORCPT ); Fri, 25 Aug 2017 18:31:35 -0400 Received: from userp1040.oracle.com ([156.151.31.81]:30280 "EHLO userp1040.oracle.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933647AbdHYWbd (ORCPT ); Fri, 25 Aug 2017 18:31:33 -0400 Subject: Re: + mm-madvise-fix-freeing-of-locked-page-with-madv_free.patch added to -mm tree To: Nadav Amit , "ebiggers@google.com" Cc: Andrew Morton , Andrea Arcangeli , Dmitry Vyukov , Hugh Dickins , Minchan Kim , "rientjes@google.com" , "stable@vger.kernel.org" , "mm-commits@vger.kernel.org" , "open list:MEMORY MANAGEMENT" , Linux Kernel Mailing List , Michal Hocko , "nyc@holomorphy.com" References: <599df681.NreP1dR3/HGSfpCe%akpm@linux-foundation.org> <20170824060957.GA29811@dhcp22.suse.cz> <81C11D6F-653D-4B14-A3A6-E6BB6FB5436D@vmware.com> From: Mike Kravetz Message-ID: <3452db57-d847-ec8e-c9be-7710f4ddd5d4@oracle.com> Date: Fri, 25 Aug 2017 15:31:22 -0700 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.2.1 MIME-Version: 1.0 In-Reply-To: <81C11D6F-653D-4B14-A3A6-E6BB6FB5436D@vmware.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit X-Source-IP: aserv0022.oracle.com [141.146.126.234] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1625 Lines: 41 On 08/25/2017 03:02 PM, Nadav Amit wrote: > Michal Hocko wrote: > >> Hmm, I do not see this neither in linux-mm nor LKML. Strange >> >> On Wed 23-08-17 14:41:21, Andrew Morton wrote: >>> From: Eric Biggers >>> Subject: mm/madvise.c: fix freeing of locked page with MADV_FREE >>> >>> If madvise(..., MADV_FREE) split a transparent hugepage, it called >>> put_page() before unlock_page(). This was wrong because put_page() can >>> free the page, e.g. if a concurrent madvise(..., MADV_DONTNEED) has >>> removed it from the memory mapping. put_page() then rightfully complained >>> about freeing a locked page. >>> >>> Fix this by moving the unlock_page() before put_page(). > > Quick grep shows that a similar flow (put_page() followed by an > unlock_page() ) also happens in hugetlbfs_fallocate(). Isn’t it a problem as > well? I assume you are asking about this block of code? /* * page_put due to reference from alloc_huge_page() * unlock_page because locked by add_to_page_cache() */ put_page(page); unlock_page(page); Well, there is a typo (page_put) in the comment. :( However, in this case we have just added the huge page to a hugetlbfs file. The put_page() is there just to drop the reference count on the page (taken when allocated). It will still be non-zero as we have successfully added it to the page cache. So, we are not freeing the page here, just dropping the reference count. This should not cause a problem like that seen in madvise. -- Mike Kravetz