]> err.no Git - linux-2.6/commitdiff
x86: make set_cpu_sibling_map nonstatic
authorGlauber Costa <gcosta@redhat.com>
Mon, 3 Mar 2008 17:12:59 +0000 (14:12 -0300)
committerIngo Molnar <mingo@elte.hu>
Thu, 17 Apr 2008 15:40:56 +0000 (17:40 +0200)
And move its extern definition to smp.h, the common header

Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/kernel/smpboot_64.c
include/asm-x86/smp.h
include/asm-x86/smp_32.h

index c51279f053169fbb9030e738dfae25b530889f93..1e8f00a1d624d5f392e1085894ba49954fa22aef 100644 (file)
@@ -228,7 +228,7 @@ cpumask_t cpu_coregroup_map(int cpu)
 /* representing cpus for which sibling maps can be computed */
 static cpumask_t cpu_sibling_setup_map;
 
-static inline void set_cpu_sibling_map(int cpu)
+void __cpuinit set_cpu_sibling_map(int cpu)
 {
        int i;
        struct cpuinfo_x86 *c = &cpu_data(cpu);
index 2ab8ed4e99e0619a043062a7a440041ef4f98b6d..1b4481aeb5c8764ceb55781e20a4e96596481ab2 100644 (file)
@@ -22,6 +22,9 @@ struct smp_ops {
                                      int wait);
 };
 
+/* Globals due to paravirt */
+extern void set_cpu_sibling_map(int cpu);
+
 #ifdef CONFIG_SMP
 extern struct smp_ops smp_ops;
 
index 29f61952ea8c4ae3bf9bdf698ac12fd9be667fb8..76247a947a5fd1e4d5b1bb2f24dd08fde6f60c79 100644 (file)
@@ -35,9 +35,6 @@ extern void cpu_uninit(void);
 extern void remove_siblinginfo(int cpu);
 #endif
 
-/* Globals due to paravirt */
-extern void set_cpu_sibling_map(int cpu);
-
 #ifdef CONFIG_SMP
 #ifndef CONFIG_PARAVIRT
 #define startup_ipi_hook(phys_apicid, start_eip, start_esp) do { } while (0)