diff options
author | Avi Kivity <avi@redhat.com> | 2009-05-31 15:58:47 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2009-09-10 01:32:46 -0400 |
commit | 6de4f3ada40b336522250a7832a0cc4de8856589 (patch) | |
tree | 90920846774aa0fb0fb47ac245fcf5f8b73afcee /arch/x86/include/asm/kvm_host.h | |
parent | 8f5d549f028056d6ad6044f2d9e27ecf361d955e (diff) |
KVM: Cache pdptrs
Instead of reloading the pdptrs on every entry and exit (vmcs writes on vmx,
guest memory access on svm) extract them on demand.
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/include/asm/kvm_host.h')
-rw-r--r-- | arch/x86/include/asm/kvm_host.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/x86/include/asm/kvm_host.h b/arch/x86/include/asm/kvm_host.h index 81c68f630b14..1cc901ec4ba5 100644 --- a/arch/x86/include/asm/kvm_host.h +++ b/arch/x86/include/asm/kvm_host.h | |||
@@ -120,6 +120,10 @@ enum kvm_reg { | |||
120 | NR_VCPU_REGS | 120 | NR_VCPU_REGS |
121 | }; | 121 | }; |
122 | 122 | ||
123 | enum kvm_reg_ex { | ||
124 | VCPU_EXREG_PDPTR = NR_VCPU_REGS, | ||
125 | }; | ||
126 | |||
123 | enum { | 127 | enum { |
124 | VCPU_SREG_ES, | 128 | VCPU_SREG_ES, |
125 | VCPU_SREG_CS, | 129 | VCPU_SREG_CS, |