diff options
author | Sheng Yang <sheng@linux.intel.com> | 2008-10-16 05:30:58 -0400 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2008-12-31 09:51:46 -0500 |
commit | 6fe639792c7b8e462baeaac39ecc33541fd5da6e (patch) | |
tree | 3a583ad3299455dafa949b76b825e6b763028a07 /arch/x86/kvm | |
parent | 291f26bc0f89518ad7ee3207c09eb8a743ac8fcc (diff) |
KVM: VMX: Move private memory slot position
PCI device assignment would map guest MMIO spaces as separate slot, so it is
possible that the device has more than 2 MMIO spaces and overwrite current
private memslot.
The patch move private memory slot to the top of userspace visible memory slots.
Signed-off-by: Sheng Yang <sheng@linux.intel.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'arch/x86/kvm')
-rw-r--r-- | arch/x86/kvm/vmx.c | 2 | ||||
-rw-r--r-- | arch/x86/kvm/vmx.h | 5 |
2 files changed, 4 insertions, 3 deletions
diff --git a/arch/x86/kvm/vmx.c b/arch/x86/kvm/vmx.c index dae134fa09e7..7623eb7b68d5 100644 --- a/arch/x86/kvm/vmx.c +++ b/arch/x86/kvm/vmx.c | |||
@@ -2513,7 +2513,7 @@ static int vmx_set_tss_addr(struct kvm *kvm, unsigned int addr) | |||
2513 | { | 2513 | { |
2514 | int ret; | 2514 | int ret; |
2515 | struct kvm_userspace_memory_region tss_mem = { | 2515 | struct kvm_userspace_memory_region tss_mem = { |
2516 | .slot = 8, | 2516 | .slot = TSS_PRIVATE_MEMSLOT, |
2517 | .guest_phys_addr = addr, | 2517 | .guest_phys_addr = addr, |
2518 | .memory_size = PAGE_SIZE * 3, | 2518 | .memory_size = PAGE_SIZE * 3, |
2519 | .flags = 0, | 2519 | .flags = 0, |
diff --git a/arch/x86/kvm/vmx.h b/arch/x86/kvm/vmx.h index 18598afe52eb..3db236c26fa4 100644 --- a/arch/x86/kvm/vmx.h +++ b/arch/x86/kvm/vmx.h | |||
@@ -338,8 +338,9 @@ enum vmcs_field { | |||
338 | 338 | ||
339 | #define AR_RESERVD_MASK 0xfffe0f00 | 339 | #define AR_RESERVD_MASK 0xfffe0f00 |
340 | 340 | ||
341 | #define APIC_ACCESS_PAGE_PRIVATE_MEMSLOT 9 | 341 | #define TSS_PRIVATE_MEMSLOT (KVM_MEMORY_SLOTS + 0) |
342 | #define IDENTITY_PAGETABLE_PRIVATE_MEMSLOT 10 | 342 | #define APIC_ACCESS_PAGE_PRIVATE_MEMSLOT (KVM_MEMORY_SLOTS + 1) |
343 | #define IDENTITY_PAGETABLE_PRIVATE_MEMSLOT (KVM_MEMORY_SLOTS + 2) | ||
343 | 344 | ||
344 | #define VMX_NR_VPIDS (1 << 16) | 345 | #define VMX_NR_VPIDS (1 << 16) |
345 | #define VMX_VPID_EXTENT_SINGLE_CONTEXT 1 | 346 | #define VMX_VPID_EXTENT_SINGLE_CONTEXT 1 |