From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail143.messagelabs.com (mail143.messagelabs.com [216.82.254.35]) by kanga.kvack.org (Postfix) with ESMTP id 0B1296B0047 for ; Tue, 5 Jan 2010 22:20:26 -0500 (EST) Date: Tue, 5 Jan 2010 19:22:43 -0800 From: Arjan van de Ven Subject: Re: [RFC][PATCH 6/8] mm: handle_speculative_fault() Message-ID: <20100105192243.1d6b2213@infradead.org> In-Reply-To: References: <20100104182429.833180340@chello.nl> <20100104182813.753545361@chello.nl> <20100105054536.44bf8002@infradead.org> Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-linux-mm@kvack.org To: Christoph Lameter Cc: Peter Zijlstra , "Paul E. McKenney" , Peter Zijlstra , KAMEZAWA Hiroyuki , "linux-kernel@vger.kernel.org" , "linux-mm@kvack.org" , "minchan.kim@gmail.com" , "hugh.dickins" , Nick Piggin , Ingo Molnar , Linus Torvalds List-ID: On Tue, 5 Jan 2010 09:17:11 -0600 (CST) Christoph Lameter wrote: > On Tue, 5 Jan 2010, Arjan van de Ven wrote: > > > while I appreciate the goal of reducing contention on this lock... > > wouldn't step one be to remove the page zeroing from under this > > lock? that's by far (easily by 10x I would guess) the most > > expensive thing that's done under the lock, and I would expect a > > first order of contention reduction just by having the zeroing of a > > page not done under the lock... > > The main issue is cacheline bouncing. mmap sem is a rw semaphore and > only held for read during a fault. depends on the workload; on a many-threads-java workload, you also get it for write quite a bit (lots of malloc/frees in userspace in addition to pagefaults).. at which point you do end up serializing on the zeroing. There's some real life real big workloads that show this pretty badly; so far the workaround is to have glibc batch up a lot of the free()s.. but that's just pushing it a little further out. > -- Arjan van de Ven Intel Open Source Technology Centre For development, discussion and tips for power savings, visit http://www.lesswatts.org -- 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