aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/kvm/paging_tmpl.h
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2007-07-10 10:50:55 -0400
committerAvi Kivity <avi@qumranet.com>2007-07-20 13:16:29 -0400
commitd55e2cb20123cdb5020ec4a2b2f1eace5038c292 (patch)
tree6a02bb893638ded6448ee78687ee25072ea82360 /drivers/kvm/paging_tmpl.h
parent2cb7e714229681408e323852bed939989faf6991 (diff)
KVM: MMU: Store nx bit for large page shadows
We need to distinguish between large page shadows which have the nx bit set and those which don't. The problem shows up when booting a newer smp Linux kernel, where the trampoline page (which is in real mode, which uses the same shadow pages as large pages) is using the same mapping as a kernel data page, which is mapped using nx, causing kvm to spin on that page. Signed-off-by: Avi Kivity <avi@qumranet.com>
Diffstat (limited to 'drivers/kvm/paging_tmpl.h')
-rw-r--r--drivers/kvm/paging_tmpl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/kvm/paging_tmpl.h b/drivers/kvm/paging_tmpl.h
index a7c5cb0319ea..4b5391c717f8 100644
--- a/drivers/kvm/paging_tmpl.h
+++ b/drivers/kvm/paging_tmpl.h
@@ -366,6 +366,8 @@ static u64 *FNAME(fetch)(struct kvm_vcpu *vcpu, gva_t addr,
366 metaphysical = 1; 366 metaphysical = 1;
367 hugepage_access = *guest_ent; 367 hugepage_access = *guest_ent;
368 hugepage_access &= PT_USER_MASK | PT_WRITABLE_MASK; 368 hugepage_access &= PT_USER_MASK | PT_WRITABLE_MASK;
369 if (*guest_ent & PT64_NX_MASK)
370 hugepage_access |= (1 << 2);
369 hugepage_access >>= PT_WRITABLE_SHIFT; 371 hugepage_access >>= PT_WRITABLE_SHIFT;
370 table_gfn = (*guest_ent & PT_BASE_ADDR_MASK) 372 table_gfn = (*guest_ent & PT_BASE_ADDR_MASK)
371 >> PAGE_SHIFT; 373 >> PAGE_SHIFT;