Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S261576AbVACRhI (ORCPT ); Mon, 3 Jan 2005 12:37:08 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S261585AbVACReE (ORCPT ); Mon, 3 Jan 2005 12:34:04 -0500 Received: from holomorphy.com ([207.189.100.168]:32640 "EHLO monad") by vger.kernel.org with ESMTP id S261533AbVACRbn (ORCPT ); Mon, 3 Jan 2005 12:31:43 -0500 Date: Mon, 3 Jan 2005 09:31:18 -0800 From: William Lee Irwin III To: linux-kernel@vger.kernel.org Cc: akpm@osdl.org Subject: [4/8] fix arch/x86_64/ia32/syscall32.c misdeclared pud variable Message-ID: <20050103173118.GA622@holomorphy.com> Mail-Followup-To: William Lee Irwin III , linux-kernel@vger.kernel.org, akpm@osdl.org References: <20050103172013.GA29332@holomorphy.com> <20050103172303.GB29332@holomorphy.com> <20050103172615.GD29332@holomorphy.com> <20050103172839.GE29332@holomorphy.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline In-Reply-To: <20050103172839.GE29332@holomorphy.com> Organization: The Domain of Holomorphy User-Agent: Mutt/1.5.6+20040907i Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 924 Lines: 24 This __map_syscall32() gets an assignment from incompatible pointer type warning; the following patch kills it by declaring the pud variable as a pud_t as is necessary. Signed-off-by: William Irwin Index: mm1-2.6.10/arch/x86_64/ia32/syscall32.c =================================================================== --- mm1-2.6.10.orig/arch/x86_64/ia32/syscall32.c 2005-01-03 06:44:20.000000000 -0800 +++ mm1-2.6.10/arch/x86_64/ia32/syscall32.c 2005-01-03 07:56:06.000000000 -0800 @@ -41,7 +41,7 @@ int __map_syscall32(struct mm_struct *mm, unsigned long address) { pgd_t *pgd; - pgd_t *pud; + pud_t *pud; pte_t *pte; pmd_t *pmd; int err = -ENOMEM; - 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/