From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from sfi-mx-2.v28.ch3.sourceforge.com ([172.29.28.122] helo=mx.sourceforge.net) by 3yr0jf1.ch3.sourceforge.com with esmtp (Exim 4.69) (envelope-from ) id 1L2Ubl-0002g9-J5 for user-mode-linux-devel@lists.sourceforge.net; Tue, 18 Nov 2008 17:43:25 +0000 Received: from yw-out-1718.google.com ([74.125.46.155]) by 72vjzd1.ch3.sourceforge.com with esmtp (Exim 4.69) id 1L2Ubh-0001AE-FZ for user-mode-linux-devel@lists.sourceforge.net; Tue, 18 Nov 2008 17:43:25 +0000 Received: by yw-out-1718.google.com with SMTP id 6so1245105ywa.82 for ; Tue, 18 Nov 2008 09:43:20 -0800 (PST) Date: Tue, 18 Nov 2008 17:42:51 +0000 From: =?utf-8?Q?Am=C3=A9rico?= Wang Message-ID: <20081118174250.GE3185@hack.voiplan.pt> MIME-Version: 1.0 Content-Disposition: inline Subject: [uml-devel] [Patch] uml: fix undeclared variables List-Id: The user-mode Linux development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Errors-To: user-mode-linux-devel-bounces@lists.sourceforge.net To: LKML Cc: Andrew Morton , Jeff Dike , Al Viro , user-mode-linux-devel@lists.sourceforge.net Fix three compile errors about undeclared variables in arch/um/kernel/mem.c. Signed-off-by: WANG Cong Cc: Jeff Dike Cc: Al Viro --- diff --git a/arch/um/include/asm/fixmap.h b/arch/um/include/asm/fixmap.h index 69c0252..0af143d 100644 --- a/arch/um/include/asm/fixmap.h +++ b/arch/um/include/asm/fixmap.h @@ -41,6 +41,9 @@ enum fixed_addresses { __end_of_fixed_addresses }; +extern pte_t *pkmap_page_table; +extern pte_t *kmap_pte; +extern pgprot_t kmap_prot; extern void __set_fixmap (enum fixed_addresses idx, unsigned long phys, pgprot_t flags); ------------------------------------------------------------------------- This SF.Net email is sponsored by the Moblin Your Move Developer's challenge Build the coolest Linux based applications with Moblin SDK & win great prizes Grand prize is a trip for two to an Open Source event anywhere in the world http://moblin-contest.org/redirect.php?banner_id=100&url=/ _______________________________________________ User-mode-linux-devel mailing list User-mode-linux-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754865AbYKRRna (ORCPT ); Tue, 18 Nov 2008 12:43:30 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752843AbYKRRnW (ORCPT ); Tue, 18 Nov 2008 12:43:22 -0500 Received: from an-out-0708.google.com ([209.85.132.249]:15881 "EHLO an-out-0708.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752394AbYKRRnV (ORCPT ); Tue, 18 Nov 2008 12:43:21 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:mime-version:content-type :content-disposition:user-agent; b=Ve4SBw9TGtu/MO6g1CO5RoVJLZRaAjxD1JdQ9aNJcDeR8GbiInqxvTcIrFCz2JRUVE N5tR1jBNrZFsJVjyX1uYFDT6pBZGA21OGqkr9nUNhL9K+aoWC0rXBEhdN+N76LPQpc4W LulhkolXd2AGC7Iiz15yXqzeVaHd5Ui/RczEM= Date: Tue, 18 Nov 2008 17:42:51 +0000 From: =?utf-8?Q?Am=C3=A9rico?= Wang To: LKML Cc: Al Viro , Andrew Morton , Jeff Dike , user-mode-linux-devel@lists.sourceforge.net Subject: [Patch] uml: fix undeclared variables Message-ID: <20081118174250.GE3185@hack.voiplan.pt> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix three compile errors about undeclared variables in arch/um/kernel/mem.c. Signed-off-by: WANG Cong Cc: Jeff Dike Cc: Al Viro --- diff --git a/arch/um/include/asm/fixmap.h b/arch/um/include/asm/fixmap.h index 69c0252..0af143d 100644 --- a/arch/um/include/asm/fixmap.h +++ b/arch/um/include/asm/fixmap.h @@ -41,6 +41,9 @@ enum fixed_addresses { __end_of_fixed_addresses }; +extern pte_t *pkmap_page_table; +extern pte_t *kmap_pte; +extern pgprot_t kmap_prot; extern void __set_fixmap (enum fixed_addresses idx, unsigned long phys, pgprot_t flags);