From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail202.messagelabs.com (mail202.messagelabs.com [216.82.254.227]) by kanga.kvack.org (Postfix) with SMTP id 5D30F6B004A for ; Tue, 5 Oct 2010 13:38:41 -0400 (EDT) Message-ID: <4CAB628D.3030205@redhat.com> Date: Tue, 05 Oct 2010 13:38:21 -0400 From: Rik van Riel MIME-Version: 1.0 Subject: Re: [PATCH 2/3] Retry page fault when blocking on disk transfer. References: <1286265215-9025-1-git-send-email-walken@google.com> <1286265215-9025-3-git-send-email-walken@google.com> In-Reply-To: <1286265215-9025-3-git-send-email-walken@google.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org To: Michel Lespinasse Cc: linux-mm@kvack.org, Linus Torvalds , Ying Han , linux-kernel@vger.kernel.org, Andrew Morton , Nick Piggin , Peter Zijlstra List-ID: On 10/05/2010 03:53 AM, Michel Lespinasse wrote: > This change reduces mmap_sem hold times that are caused by waiting for > disk transfers when accessing file mapped VMAs. It introduces the > VM_FAULT_ALLOW_RETRY flag, which indicates that the call site wants > mmap_sem to be released if blocking on a pending disk transfer. > In that case, filemap_fault() returns the VM_FAULT_RETRY status bit > and do_page_fault() will then re-acquire mmap_sem and retry the page fault. > It is expected that the retry will hit the same page which will now be > cached, and thus it will complete with a low mmap_sem hold time. > > Signed-off-by: Michel Lespinasse Acked-by: Rik van Riel Looks like it should be relatively easy to do something similar in do_swap_page also. -- 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