Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932987AbXBPHZ5 (ORCPT ); Fri, 16 Feb 2007 02:25:57 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S932641AbXBPHZ5 (ORCPT ); Fri, 16 Feb 2007 02:25:57 -0500 Received: from smtp.osdl.org ([65.172.181.24]:56881 "EHLO smtp.osdl.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932989AbXBPHZ4 (ORCPT ); Fri, 16 Feb 2007 02:25:56 -0500 Date: Thu, 15 Feb 2007 23:24:47 -0800 From: Andrew Morton To: Jeremy Fitzhardinge Cc: Andi Kleen , linux-kernel@vger.kernel.org, virtualization@lists.osdl.org, xen-devel@lists.xensource.com, Chris Wright , Zachary Amsden , Ian Pratt , Christian Limpach , Jan Beulich Subject: Re: [patch 12/21] Xen-paravirt: Allocate and free vmalloc areas Message-Id: <20070215232447.5ee67f50.akpm@linux-foundation.org> In-Reply-To: <45D55852.9000103@goop.org> References: <20070216022449.739760547@goop.org> <20070216022531.417300365@goop.org> <20070215224322.5c73d8e9.akpm@linux-foundation.org> <45D55852.9000103@goop.org> X-Mailer: Sylpheed version 2.2.7 (GTK+ 2.8.17; x86_64-unknown-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1225 Lines: 32 On Thu, 15 Feb 2007 23:08:02 -0800 Jeremy Fitzhardinge wrote: > Andrew Morton wrote: > > This won't work when CONFIG_PREEMPT=y. The pagefault handler will see > > in_atomic() and will scram. > > > > Is there some other way to get the pagetable populated for the address > range? > If you really need to run atomically, that gets ugly. Even of one were to run handle_mm_fault() by hand, it still needs to allocate memory. Two ugly options might be: a) touch all the pages, then go atomic, then touch them all again. If one of them faults (ie: you raced with swapout) then go back and try again. Obviously susceptible to livelocking. b) Do get_user_pages() against all the pages, then go atomic, then do put_page() against them all. Of course, they can immediately get swapped out. But that function's already racy against swapout and I guess it works OK. I don't have clue what it is actually trying to do, so I'm guessing madly here. - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/