From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from psmtp.com (na3sys010amx133.postini.com [74.125.245.133]) by kanga.kvack.org (Postfix) with SMTP id 1962E6B0068 for ; Tue, 4 Sep 2012 18:54:21 -0400 (EDT) Subject: Re: [RFC PATCH 2/2] mm: Batch page_check_references in shrink_page_list sharing the same i_mmap_mutex From: Tim Chen In-Reply-To: <1346772077.13492.267.camel@schen9-DESK> References: <1345251998.13492.235.camel@schen9-DESK> <1345480982.13492.239.camel@schen9-DESK> <20120821132129.GC6960@linux.intel.com> <1345596500.13492.264.camel@schen9-DESK> <1346772077.13492.267.camel@schen9-DESK> Content-Type: text/plain; charset="UTF-8" Date: Tue, 04 Sep 2012 15:54:19 -0700 Message-ID: <1346799259.13492.272.camel@schen9-DESK> Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org List-ID: To: Matthew Wilcox Cc: Mel Gorman , Andrew Morton , Minchan Kim , Johannes Weiner , KAMEZAWA Hiroyuki , "Kirill A. Shutemov" , Andi Kleen , linux-mm@kvack.org, linux-kernel , Alex Shi On Tue, 2012-09-04 at 08:21 -0700, Tim Chen wrote: > On Tue, 2012-08-21 at 17:48 -0700, Tim Chen wrote: > > > > > Thanks to Matthew's suggestions on improving the patch. Here's the > > updated version. It seems to be sane when I booted my machine up. I > > will put it through more testing when I get a chance. > > > > Tim > > > > Matthew, > > The new patch seems to be causing some of the workloads with mmaped file > read to seg fault. Will need to dig further to find out why. > > Tim > Okay, the problem seems to be the code below. It is too restrictive and causes some cases where the mutex needs to be taken in try_to_unmap_file to be missed. > > +int needs_page_mmap_mutex(struct page *page) > > +{ > > + return page->mapping && page_mapped(page) && page_rmapping(page) && > > + !PageKsm(page) && !PageAnon(page); > > +} > > + Changing the check to the following fixes the problem: @@ -873,8 +873,7 @@ static int page_referenced_file(struct page *page, int needs_page_mmap_mutex(struct page *page) { - return page->mapping && page_mapped(page) && page_rmapping(page) && - !PageKsm(page) && !PageAnon(page); + return page->mapping && !PageKsm(page) && !PageAnon(page); } I'll do more testing and generate a second version of the patch set with the fixes. Tim -- 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