aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86_64/kernel/bugs.c
Commit message (Collapse)AuthorAgeFilesLines
* x86_64: prepare shared kernel/bugs.cThomas Gleixner2007-10-111-24/+0
| | | | | Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: Ingo Molnar <mingo@elte.hu>
* x86_64: include asm/bugs.h in bugs.c for check_bugs prototypeJosh Triplett2007-07-311-0/+1
| | | | | | | | | | | | C files should include the header files that prototype their functions. Eliminates a sparse warning: warning: symbol 'check_bugs' was not declared. Should it be static? Signed-off-by: Josh Triplett <josh@kernel.org> Cc: Andi Kleen <ak@suse.de> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* x86_64: Add asm/mtrr.h include for some buildsAndi Kleen2007-05-121-0/+1
| | | | | | | | | The earlier change to call the bp mtrr init from bugs.c broke on some configurations due to missing includes. Noticed by "Avuton Olrich" <avuton@gmail.com> Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* x86_64: Don't call mtrr_bp_init from identify_cpuAndi Kleen2007-05-111-0/+1
| | | | | | | | The code was ok, but triggered warnings for calling __init from __cpuinit. Instead call it from check_bugs instead. Signed-off-by: Andi Kleen <ak@suse.de> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
* [PATCH] x86: update for i386 and x86-64 check_bugsJeremy Fitzhardinge2007-05-021-8/+1
| | | | | | | | | | | Remove spurious comments, headers and keywords from x86-64 bugs.[ch]. Use identify_boot_cpu() AK: merged with other patch Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com> Signed-off-by: Andi Kleen <ak@suse.de>
* [PATCH] x86-64: Clean up asm-x86_64/bugs.hJeremy Fitzhardinge2007-05-021-0/+28
Most of asm-x86_64/bugs.h is code which should be in a C file, so put it there. Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com> Signed-off-by: Andi Kleen <ak@suse.de> Cc: Andi Kleen <ak@suse.de> Cc: Linus Torvalds <torvalds@linux-foundation.org>