2007-05-02 19:27:12 +02:00
|
|
|
/*
|
|
|
|
* arch/x86_64/kernel/bugs.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1994 Linus Torvalds
|
|
|
|
* Copyright (C) 2000 SuSE
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
2007-05-02 19:27:16 +02:00
|
|
|
#include <linux/init.h>
|
2007-05-02 19:27:12 +02:00
|
|
|
#include <asm/alternative.h>
|
2007-07-31 09:39:21 +02:00
|
|
|
#include <asm/bugs.h>
|
2007-05-02 19:27:12 +02:00
|
|
|
#include <asm/processor.h>
|
2007-05-12 17:27:40 +02:00
|
|
|
#include <asm/mtrr.h>
|
2007-05-02 19:27:12 +02:00
|
|
|
|
|
|
|
void __init check_bugs(void)
|
|
|
|
{
|
|
|
|
identify_cpu(&boot_cpu_data);
|
2007-05-11 11:23:20 +02:00
|
|
|
mtrr_bp_init();
|
2007-05-02 19:27:12 +02:00
|
|
|
#if !defined(CONFIG_SMP)
|
|
|
|
printk("CPU: ");
|
|
|
|
print_cpu_info(&boot_cpu_data);
|
|
|
|
#endif
|
|
|
|
alternative_instructions();
|
|
|
|
}
|