i386/x86-64: fix section mismatch
WARNING: arch/x86_64/kernel/built-in.o - Section mismatch: reference to .init.text:mtrr_bp_init from .text between 'id entify_cpu' (at offset 0x6571) and 'IRQ0x20_interrupt' It's because identify_cpu() which is __cpuinit calls mtrr_bp_init() which is __init(). __cpuinit() expands to nothing if CONFIG_HOTPLUG_CPU=y and so the call is illegal. Signed-off-by: Bernhard Walle <bwalle@suse.de> Cc: Andi Kleen <ak@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
committed by
Linus Torvalds
parent
f363d16fbb
commit
df652fe173
@ -78,7 +78,7 @@ static void __cpuinit print_fixed(unsigned base, unsigned step, const mtrr_type*
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Grab all of the MTRR state for this CPU into *state */
|
/* Grab all of the MTRR state for this CPU into *state */
|
||||||
void __init get_mtrr_state(void)
|
void get_mtrr_state(void)
|
||||||
{
|
{
|
||||||
unsigned int i;
|
unsigned int i;
|
||||||
struct mtrr_var_range *vrs;
|
struct mtrr_var_range *vrs;
|
||||||
|
@ -639,7 +639,7 @@ static struct sysdev_driver mtrr_sysdev_driver = {
|
|||||||
* initialized (i.e. before smp_init()).
|
* initialized (i.e. before smp_init()).
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
void __init mtrr_bp_init(void)
|
void mtrr_bp_init(void)
|
||||||
{
|
{
|
||||||
init_ifs();
|
init_ifs();
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user