From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from gate.crashing.org (gate.crashing.org [63.228.1.57]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6207CDDEF0 for ; Thu, 31 Jul 2008 08:26:18 +1000 (EST) Subject: Re: [PATCH] powerpc/mm: Lockless get_user_pages_fast() From: Benjamin Herrenschmidt To: Kumar Gala In-Reply-To: References: <1217389038.11188.285.camel@pasglop> Content-Type: text/plain Date: Thu, 31 Jul 2008 08:26:12 +1000 Message-Id: <1217456772.11188.342.camel@pasglop> Mime-Version: 1.0 Cc: Nick Piggin , linuxppc-dev list Reply-To: benh@kernel.crashing.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , > > Index: linux-work/arch/powerpc/Kconfig > > =================================================================== > > --- linux-work.orig/arch/powerpc/Kconfig 2008-07-30 > > 13:17:06.000000000 +1000 > > +++ linux-work/arch/powerpc/Kconfig 2008-07-30 13:27:40.000000000 > > +1000 > > @@ -42,6 +42,9 @@ config GENERIC_HARDIRQS > > bool > > default y > > > > +config HAVE_GET_USER_PAGES_FAST > > + def_bool PPC64 > > + > > config HAVE_SETUP_PER_CPU_AREA > > def_bool PPC64 > > what's ppc64 specific here? Mostly _PAGE_SPECIAL (which I do plan to add to embedded which is why I've been trying hard to free a PTE bit :-) and the way we synchronize with the freeing of page tables (ppc64 uses RCU, ppc32 doesn't, we'd have to find something to keep fast gup in sync). Ben.