Skip to content

Commit

Permalink
x86: Fix section mismatch in LAPIC initialization
Browse files Browse the repository at this point in the history
Additionally doing things conditionally upon smp_processor_id()
being zero is generally a bad idea, as this means CPU 0 cannot
be offlined and brought back online later again.

While there may be other places where this is done, I think adding
more of those should be avoided so that some day SMP can really
become "symmetrical".

Signed-off-by: Jan Beulich <jbeulich@novell.com>
Cc: Cyrill Gorcunov <gorcunov@gmail.com>
LKML-Reference: <4D525C7E0200007800030EE1@vpn.id2.novell.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Jan Beulich authored and Ingo Molnar committed Feb 10, 2011
1 parent 100b33c commit 2fb270f
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions arch/x86/include/asm/apic.h
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ extern void sync_Arb_IDs(void);
extern void init_bsp_APIC(void);
extern void setup_local_APIC(void);
extern void end_local_APIC_setup(void);
extern void bsp_end_local_APIC_setup(void);
extern void init_apic_mappings(void);
void register_lapic_address(unsigned long address);
extern void setup_boot_APIC_clock(void);
Expand Down
9 changes: 7 additions & 2 deletions arch/x86/kernel/apic/apic.c
Original file line number Diff line number Diff line change
Expand Up @@ -1381,12 +1381,17 @@ void __cpuinit end_local_APIC_setup(void)
#endif

apic_pm_activate();
}

void __init bsp_end_local_APIC_setup(void)
{
end_local_APIC_setup();

/*
* Now that local APIC setup is completed for BP, configure the fault
* handling for interrupt remapping.
*/
if (!smp_processor_id() && intr_remapping_enabled)
if (intr_remapping_enabled)
enable_drhd_fault_handling();

}
Expand Down Expand Up @@ -1756,7 +1761,7 @@ int __init APIC_init_uniprocessor(void)
enable_IO_APIC();
#endif

end_local_APIC_setup();
bsp_end_local_APIC_setup();

#ifdef CONFIG_X86_IO_APIC
if (smp_found_config && !skip_ioapic_setup && nr_ioapics)
Expand Down
4 changes: 2 additions & 2 deletions arch/x86/kernel/smpboot.c
Original file line number Diff line number Diff line change
Expand Up @@ -1060,7 +1060,7 @@ static int __init smp_sanity_check(unsigned max_cpus)

connect_bsp_APIC();
setup_local_APIC();
end_local_APIC_setup();
bsp_end_local_APIC_setup();
return -1;
}

Expand Down Expand Up @@ -1137,7 +1137,7 @@ void __init native_smp_prepare_cpus(unsigned int max_cpus)
if (!skip_ioapic_setup && nr_ioapics)
enable_IO_APIC();

end_local_APIC_setup();
bsp_end_local_APIC_setup();

map_cpu_to_logical_apicid();

Expand Down

0 comments on commit 2fb270f

Please sign in to comment.