[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <Pine.LNX.4.64.0610051913010.12556@twin.jikos.cz>
Date: Thu, 5 Oct 2006 19:16:14 +0200 (CEST)
From: Jiri Kosina <jikos@...os.cz>
To: keith mannthey <kmannth@...ibm.com>
cc: linux-kernel@...r.kernel.org, Linus Torvalds <torvalds@...l.org>
Subject: [PATCH] make mach-generic/summit.c compile on UP
Hi,
arch/i386/mach-generic/summit.c doesn't compile (neither in current
mainline git tree, nor in 2.6.18-mm3) when CONFIG_SMP is not set:
In file included from arch/i386/mach-generic/summit.c:17:
include/asm/mach-summit/mach_apic.h: In function 'apicid_to_node':
include/asm/mach-summit/mach_apic.h:91: error: 'apicid_2_node' undeclared (first use in this function)
include/asm/mach-summit/mach_apic.h:91: error: (Each undeclared identifier is reported only once
include/asm/mach-summit/mach_apic.h:91: error: for each function it appears in.)
Is the patch below correct?
Signed-off-by: Jiri Kosina <jikos@...os.cz>
--- a/include/asm-i386/mach-summit/mach_apic.h
+++ b/include/asm-i386/mach-summit/mach_apic.h
@@ -88,7 +88,11 @@ static inline void clustered_apic_check(
static inline int apicid_to_node(int logical_apicid)
{
+#ifdef CONFIG_SMP
return apicid_2_node[hard_smp_processor_id()];
+#else
+ return 0;
+#endif
}
/* Mapping from cpu number to logical apicid */
diff --git a/include/asm-i386/smp.h b/include/asm-i386/smp.h
--
Jiri Kosina
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists