Skip to content

Commit

Permalink
x86: modify smp_callin in x86_64 to look like i386
Browse files Browse the repository at this point in the history
We introduce empty macros just to make them look like the same

Signed-off-by: Glauber Costa <gcosta@redhat.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
  • Loading branch information
Glauber de Oliveira Costa authored and Ingo Molnar committed Apr 17, 2008
1 parent 4c07ad6 commit ea0cadb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions arch/x86/kernel/smpboot_64.c
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ struct task_struct *idle_thread_array[NR_CPUS] __cpuinitdata ;

static atomic_t init_deasserted __cpuinitdata;

#define smp_callin_clear_local_apic() do {} while (0)
#define map_cpu_to_logical_apicid() do {} while (0)

/*
* Report back to the Boot Processor.
* Running on AP.
Expand Down Expand Up @@ -152,8 +155,10 @@ void __cpuinit smp_callin(void)
*/

Dprintk("CALLIN, before setup_local_APIC().\n");
smp_callin_clear_local_apic();
setup_local_APIC();
end_local_APIC_setup();
map_cpu_to_logical_apicid();

/*
* Get our bogomips.
Expand Down

0 comments on commit ea0cadb

Please sign in to comment.