mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] x86: use the same node_distance for 32 and 64-bit
@ 2011-09-19 23:03 H Hartley Sweeten
  2011-09-20  0:51 ` David Rientjes
  2011-09-24  1:45 ` [PATCH] x86: use " Tejun Heo
  0 siblings, 2 replies; 7+ messages in thread
From: H Hartley Sweeten @ 2011-09-19 23:03 UTC (permalink / raw)
  To: Linux Kernel; +Cc: x86, tglx, mingo, hpa, tj, yinghai

The node_distance function is not x86 64-bit specific.  Having the #ifdef
around the extern function declaration and the #define causes the default
node_distance macro to be used in asm-generic/topology.h. This also causes
a sparse warning in arch/x86/mm/numa.c when CONFIG_X86_64 is not set:

warning: symbol '__node_distance' was not declared. Should it be static?

Remove the #ifdef to fix both issues.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Tejun Heo <tj@kernel.org>
Cc: Yinghai Lu <yinghai@kernel.org>

---

diff --git a/arch/x86/include/asm/topology.h b/arch/x86/include/asm/topology.h
index c006924..800f77c 100644
--- a/arch/x86/include/asm/topology.h
+++ b/arch/x86/include/asm/topology.h
@@ -130,10 +130,8 @@ extern void setup_node_to_cpumask_map(void);
 	.balance_interval	= 1,					\
 }
 
-#ifdef CONFIG_X86_64
 extern int __node_distance(int, int);
 #define node_distance(a, b) __node_distance(a, b)
-#endif
 
 #else /* !CONFIG_NUMA */
 

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-12-07  8:59 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-19 23:03 [PATCH] x86: use the same node_distance for 32 and 64-bit H Hartley Sweeten
2011-09-20  0:51 ` David Rientjes
2011-10-14 20:27   ` David Rientjes
2011-12-05 12:44     ` Ingo Molnar
2011-12-06 20:22       ` [patch resend] " David Rientjes
2011-12-07  8:58         ` [tip:x86/asm] x86: Use " tip-bot for H Hartley Sweeten
2011-09-24  1:45 ` [PATCH] x86: use " Tejun Heo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

Powered by JetHome