From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.suse.de (ns.suse.de [195.135.220.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mx1.suse.de", Issuer "Thawte Premium Server CA" (verified OK)) by ozlabs.org (Postfix) with ESMTP id 26FC267A6D for ; Wed, 17 May 2006 20:18:50 +1000 (EST) From: Andi Kleen To: Steven Rostedt Subject: Re: [RFC PATCH 01/09] robust VM per_cpu core Date: Wed, 17 May 2006 11:17:04 +0200 References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Message-Id: <200605171117.06060.ak@suse.de> Cc: Andrew Morton , linux-mips@linux-mips.org, David Mosberger-Tang , linux-ia64@vger.kernel.org, Martin Mares , spyro@f2s.com, Joe Taylor , linuxppc-dev@ozlabs.org, Paul Mackerras , benedict.gaster@superh.com, sam@ravnborg.org, bjornw@axis.com, kenneth.w.chen@intel.com, Ingo Molnar , kiran@scalex86.org, clameter@sgi.com, Nick Piggin , grundler@parisc-linux.org, arnd@arndb.de, Rusty Russell , starvik@axis.com, Linus Torvalds , Thomas Gleixner , rth@twiddle.net, Chris Zankel , tony.luck@intel.com, LKML , ralf@linux-mips.org, Marc Gauthier , lethal@linux-sh.org, schwidefsky@de.ibm.com, linux390@de.ibm.com, davem@davemloft.net, parisc-linux@parisc-linux.org List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , > As well as the following three functions: > > pud_t *pud_boot_alloc(struct mm_struct *mm, pgd_t *pgd, unsigned long addr, > int cpu); > pmd_t *pmd_boot_alloc(struct mm_struct *mm, pud_t *pud, unsigned long addr, > int cpu); > pte_t *pte_boot_alloc(struct mm_struct *mm, pmd_t *pmd, unsigned long addr, > int cpu); I'm not sure you can just put them like this into generic code. Some architectures are doing strange things with them. And we already have boot_ioremap on some architectures. Why is that not enough? -Andi