linux-arch.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* + mm-filemap_fault-unique-path-for-locking-page.patch added to -mm tree
@ 2010-10-05 20:15 akpm
  2010-10-06  1:34 ` Wu Fengguang
  0 siblings, 1 reply; 2+ messages in thread
From: akpm @ 2010-10-05 20:15 UTC (permalink / raw)
  To: mm-commits
  Cc: walken, a.p.zijlstra, fengguang.wu, hpa, linux-arch, mingo,
	nickpiggin, riel, tglx, torvalds, yinghan


The patch titled
     mm: filemap_fault: unique path for locking page
has been added to the -mm tree.  Its filename is
     mm-filemap_fault-unique-path-for-locking-page.patch

Before you just go and hit "reply", please:
   a) Consider who else should be cc'ed
   b) Prefer to cc a suitable mailing list as well
   c) Ideally: find the original patch on the mailing list and do a
      reply-to-all to that, adding suitable additional cc's

*** Remember to use Documentation/SubmitChecklist when testing your code ***

See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find
out what to do about this

The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/

------------------------------------------------------
Subject: mm: filemap_fault: unique path for locking page
From: Michel Lespinasse <walken@google.com>

Introduce a single location where filemap_fault() locks the desired page. 
There used to be two such places, depending if the initial find_get_page()
was successful or not.

Signed-off-by: Michel Lespinasse <walken@google.com>
Acked-by: Rik van Riel <riel@redhat.com>
Cc: Nick Piggin <nickpiggin@yahoo.com.au>
Cc: Wu Fengguang <fengguang.wu@intel.com>
Cc: Ying Han <yinghan@google.com>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
---

 mm/filemap.c |   20 +++++++++++---------
 1 file changed, 11 insertions(+), 9 deletions(-)

diff -puN mm/filemap.c~mm-filemap_fault-unique-path-for-locking-page mm/filemap.c
--- a/mm/filemap.c~mm-filemap_fault-unique-path-for-locking-page
+++ a/mm/filemap.c
@@ -1550,25 +1550,27 @@ int filemap_fault(struct vm_area_struct 
 		 * waiting for the lock.
 		 */
 		do_async_mmap_readahead(vma, ra, file, page, offset);
-		lock_page(page);
-
-		/* Did it get truncated? */
-		if (unlikely(page->mapping != mapping)) {
-			unlock_page(page);
-			put_page(page);
-			goto no_cached_page;
-		}
 	} else {
 		/* No page in the page cache at all */
 		do_sync_mmap_readahead(vma, ra, file, offset);
 		count_vm_event(PGMAJFAULT);
 		ret = VM_FAULT_MAJOR;
 retry_find:
-		page = find_lock_page(mapping, offset);
+		page = find_get_page(mapping, offset);
 		if (!page)
 			goto no_cached_page;
 	}
 
+	lock_page(page);
+
+	/* Did it get truncated? */
+	if (unlikely(page->mapping != mapping)) {
+		unlock_page(page);
+		put_page(page);
+		goto retry_find;
+	}
+	VM_BUG_ON(page->index != offset);
+
 	/*
 	 * We have a locked page in the page cache, now we need to check
 	 * that it's up-to-date. If not, it is going to be due to an error.
_

Patches currently in -mm which might be from walken@google.com are

mm-filemap_fault-unique-path-for-locking-page.patch
mm-retry-page-fault-when-blocking-on-disk-transfer.patch
x86-access_error-api-cleanup.patch

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: + mm-filemap_fault-unique-path-for-locking-page.patch added to -mm tree
  2010-10-05 20:15 + mm-filemap_fault-unique-path-for-locking-page.patch added to -mm tree akpm
@ 2010-10-06  1:34 ` Wu Fengguang
  0 siblings, 0 replies; 2+ messages in thread
From: Wu Fengguang @ 2010-10-06  1:34 UTC (permalink / raw)
  To: akpm@linux-foundation.org
  Cc: mm-commits@vger.kernel.org, walken@google.com,
	a.p.zijlstra@chello.nl, hpa@zytor.com, linux-arch@vger.kernel.org,
	mingo@elte.hu, nickpiggin@yahoo.com.au, riel@redhat.com,
	tglx@linutronix.de, torvalds@linux-foundation.org,
	yinghan@google.com

On Wed, Oct 06, 2010 at 04:15:22AM +0800, Andrew Morton wrote:
> 
> The patch titled
>      mm: filemap_fault: unique path for locking page
> has been added to the -mm tree.  Its filename is
>      mm-filemap_fault-unique-path-for-locking-page.patch
> 
> Before you just go and hit "reply", please:
>    a) Consider who else should be cc'ed
>    b) Prefer to cc a suitable mailing list as well
>    c) Ideally: find the original patch on the mailing list and do a
>       reply-to-all to that, adding suitable additional cc's
> 
> *** Remember to use Documentation/SubmitChecklist when testing your code ***
> 
> See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find
> out what to do about this
> 
> The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/
> 
> ------------------------------------------------------
> Subject: mm: filemap_fault: unique path for locking page
> From: Michel Lespinasse <walken@google.com>
> 
> Introduce a single location where filemap_fault() locks the desired page. 
> There used to be two such places, depending if the initial find_get_page()
> was successful or not.
> 
> Signed-off-by: Michel Lespinasse <walken@google.com>
> Acked-by: Rik van Riel <riel@redhat.com>

Reviewed-by: Wu Fengguang <fengguang.wu@intel.com>

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2010-10-06  1:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-05 20:15 + mm-filemap_fault-unique-path-for-locking-page.patch added to -mm tree akpm
2010-10-06  1:34 ` Wu Fengguang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).