From mboxrd@z Thu Jan 1 00:00:00 1970 From: Robin Holt Subject: Re: [PATCH 2/2] don't compile SGI XP/GRU on ia64_generic Date: Tue, 10 Feb 2009 06:51:57 -0600 Message-ID: <20090210125157.GT8577@sgi.com> References: <20090210162821.6FC1.KOSAKI.MOTOHIRO@jp.fujitsu.com> <20090210210110.7001.KOSAKI.MOTOHIRO@jp.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from relay2.sgi.com ([192.48.179.30]:59664 "EHLO relay.sgi.com" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753503AbZBJMv6 (ORCPT ); Tue, 10 Feb 2009 07:51:58 -0500 Content-Disposition: inline In-Reply-To: <20090210210110.7001.KOSAKI.MOTOHIRO@jp.fujitsu.com> Sender: linux-next-owner@vger.kernel.org List-ID: To: KOSAKI Motohiro Cc: Jack Steiner , LKML , linux-next , linux-ia64 , Tony Luck , Dean Nelson Dean Nelson submitted a patch yesterday to make this work. Robin On Tue, Feb 10, 2009 at 09:03:40PM +0900, KOSAKI Motohiro wrote: > Subject: [PATCH] ia64: don't compile SGI-XP on ia64 generic. > Impact: fix build error > > Currently sgi-xp driver depend on "uv.h" header file. > but only x86 have "uv.h" header. > > Then, ia64 hit following build error. > > In file included from drivers/misc/sgi-xp/xp_main.c:19: > drivers/misc/sgi-xp/xp.h:18:23: error: asm/uv/uv.h: No such file or directory > make[3]: *** [drivers/misc/sgi-xp/xp_main.o] Error 1 > make[2]: *** [drivers/misc/sgi-xp] Error 2 > > Cc: Jack Steiner > Cc: Dean Nelson > Signed-off-by: KOSAKI Motohiro > --- > drivers/misc/Kconfig | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > Index: b/drivers/misc/Kconfig > =================================================================== > --- a/drivers/misc/Kconfig > +++ b/drivers/misc/Kconfig > @@ -162,7 +162,7 @@ config ENCLOSURE_SERVICES > config SGI_XP > tristate "Support communication between SGI SSIs" > depends on NET > - depends on (IA64_GENERIC || IA64_SGI_SN2 || IA64_SGI_UV || X86_UV) && SMP > + depends on (IA64_SGI_SN2 || IA64_SGI_UV || X86_UV) && SMP > select IA64_UNCACHED_ALLOCATOR if IA64_GENERIC || IA64_SGI_SN2 > select GENERIC_ALLOCATOR if IA64_GENERIC || IA64_SGI_SN2 > select SGI_GRU if (IA64_SGI_UV || X86_UV) && SMP > > > -- > To unsubscribe from this list: send the line "unsubscribe linux-ia64" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html