From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1759524AbZBFPa6 (ORCPT ); Fri, 6 Feb 2009 10:30:58 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755967AbZBFPap (ORCPT ); Fri, 6 Feb 2009 10:30:45 -0500 Received: from hera.kernel.org ([140.211.167.34]:34692 "EHLO hera.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753866AbZBFPan (ORCPT ); Fri, 6 Feb 2009 10:30:43 -0500 Subject: Re: [linux-next][PATCH] revert headers_check fix: ia64, fpu.h From: Jaswinder Singh Rajput To: Ingo Molnar Cc: KOSAKI Motohiro , Jaswinder Singh Rajput , Linus Torvalds , Sam Ravnborg , Andrew Morton , Russell King - ARM Linux , hskinnemoen@atmel.com, cooloney@kernel.org, tony.luck@intel.com, ralf@linux-mips.org, dhowells@redhat.com, matthew@wil.cx, chris@zankel.net, LKML , linux-next , linux-ia64 In-Reply-To: <20090206145556.GH18368@elte.hu> References: <20090206164546.6291.KOSAKI.MOTOHIRO@jp.fujitsu.com> <3f9a31f40902060053x18dacf58u40c739ab89f13860@mail.gmail.com> <20090206180957.6294.KOSAKI.MOTOHIRO@jp.fujitsu.com> <20090206145556.GH18368@elte.hu> Content-Type: text/plain Date: Fri, 06 Feb 2009 20:59:01 +0530 Message-Id: <1233934141.3209.20.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Evolution 2.24.3 (2.24.3-1.fc10) Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2009-02-06 at 15:55 +0100, Ingo Molnar wrote: > * KOSAKI Motohiro wrote: > > > > > Index: b/arch/ia64/include/asm/fpu.h > > > > =================================================================== > > > > --- a/arch/ia64/include/asm/fpu.h > > > > +++ b/arch/ia64/include/asm/fpu.h > > > > @@ -6,7 +6,7 @@ > > > > * David Mosberger-Tang > > > > */ > > > > > > > > -#include > > > > +#include > > > > > > > > > > No , we do not even need asm/types.h > > > > > > Subject: [PATCH] Neither asm/types.h nor linux/types.h is not required > > > for arch/ia64/include/asm/fpu.h > > > > > > Signed-off-by: Jaswinder Singh Rajput > > > > ok. I confirmed. > > Tested-by: KOSAKI Motohiro > > Reviewed-by: KOSAKI Motohiro > > Thanks. > > Jaswinder, mind adding these tags to the commit and sending a pull request > with all fixes? The following changes since commit 0b86a4e34d885e734a4c4e46293376f3f1c639eb: Ingo Molnar (1): Merge branch 'core/header-fixes' of git://git.kernel.org/.../jaswinder/linux-2.6-tip into core/header-fixes are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/jaswinder/linux-2.6-tip.git core/header-fixes Jaswinder Singh Rajput (2): Neither asm/types.h nor linux/types.h is required for arch/ia64/include/asm/fpu.h make linux/types.h as assembly safe arch/ia64/include/asm/fpu.h | 2 -- include/linux/types.h | 3 ++- 2 files changed, 2 insertions(+), 3 deletions(-) Complete diff: diff --git a/arch/ia64/include/asm/fpu.h b/arch/ia64/include/asm/fpu.h index b6395ad..0c26157 100644 --- a/arch/ia64/include/asm/fpu.h +++ b/arch/ia64/include/asm/fpu.h @@ -6,8 +6,6 @@ * David Mosberger-Tang */ -#include - /* floating point status register: */ #define FPSR_TRAP_VD (1 << 0) /* invalid op trap disabled */ #define FPSR_TRAP_DD (1 << 1) /* denormal trap disabled */ diff --git a/include/linux/types.h b/include/linux/types.h index 712ca53..c30973a 100644 --- a/include/linux/types.h +++ b/include/linux/types.h @@ -1,6 +1,7 @@ #ifndef _LINUX_TYPES_H #define _LINUX_TYPES_H +#ifndef __ASSEMBLY__ #ifdef __KERNEL__ #define DECLARE_BITMAP(name,bits) \ @@ -212,5 +213,5 @@ struct ustat { }; #endif /* __KERNEL__ */ - +#endif /* __ASSEMBLY__ */ #endif /* _LINUX_TYPES_H */