diff options
author | Avi Kivity <avi@redhat.com> | 2011-11-23 16:30:32 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2011-12-27 11:21:49 +0200 |
commit | 00b27a3efb116062ca5a276ad5cb01ea1b80b5f6 (patch) | |
tree | 51d910e618eaad99ec034ef72b535e8cad06ffe5 /arch/x86/kvm/lapic.c | |
parent | 2b5e97e1fadf1ade87558f2a2003616879f9e228 (diff) | |
download | lwn-00b27a3efb116062ca5a276ad5cb01ea1b80b5f6.tar.gz lwn-00b27a3efb116062ca5a276ad5cb01ea1b80b5f6.zip |
KVM: Move cpuid code to new file
The cpuid code has grown; put it into a separate file.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm/lapic.c')
-rw-r--r-- | arch/x86/kvm/lapic.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c index 54abb40199d6..a7f3e655cd3e 100644 --- a/arch/x86/kvm/lapic.c +++ b/arch/x86/kvm/lapic.c @@ -38,6 +38,7 @@ #include "irq.h" #include "trace.h" #include "x86.h" +#include "cpuid.h" #ifndef CONFIG_X86_64 #define mod_64(x, y) ((x) - (y) * div64_u64(x, y)) |