aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAvi Kivity <avi@qumranet.com>2007-05-01 09:44:05 -0400
committerAvi Kivity <avi@qumranet.com>2007-07-16 05:05:39 -0400
commitfce0657ff9f14f6b1f147b5fcd6db2f54c06424e (patch)
treee2a1a101f5f77894674738476cb5808327c03f0c
parent09072daf37abbfe8e2d5018dd913f229c76190f7 (diff)
KVM: MMU: Respect nonpae pagetable quadrant when zapping ptes
When a guest writes to a page that has an mmu shadow, we have to clear the shadow pte corresponding to the memory location touched by the guest. Now, in nonpae mode, a single guest page may have two or four shadow pages (because a nonpae page maps 4MB or 4GB, whereas the pae shadow maps 2MB or 1GB), so we when we look up the page we find up to three additional aliases for the page. Since we _clear_ the shadow pte, it doesn't matter except for a slight performance penalty, but if we want to _update_ the shadow pte instead of clearing it, it is vital that we don't modify the aliases. Fortunately, exactly which page is needed (the "quadrant") is easily computed, and is accessible in the shadow page header. All we need is to ignore shadow pages from the wrong quadrants. Signed-off-by: Avi Kivity <avi@qumranet.com>
-rw-r--r--drivers/kvm/mmu.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/kvm/mmu.c b/drivers/kvm/mmu.c
index b3a83ef2cf07..23dc4612026b 100644
--- a/drivers/kvm/mmu.c
+++ b/drivers/kvm/mmu.c
@@ -1150,6 +1150,7 @@ void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
1150 unsigned pte_size; 1150 unsigned pte_size;
1151 unsigned page_offset; 1151 unsigned page_offset;
1152 unsigned misaligned; 1152 unsigned misaligned;
1153 unsigned quadrant;
1153 int level; 1154 int level;
1154 int flooded = 0; 1155 int flooded = 0;
1155 int npte; 1156 int npte;
@@ -1202,7 +1203,10 @@ void kvm_mmu_pte_write(struct kvm_vcpu *vcpu, gpa_t gpa,
1202 page_offset <<= 1; 1203 page_offset <<= 1;
1203 npte = 2; 1204 npte = 2;
1204 } 1205 }
1206 quadrant = page_offset >> PAGE_SHIFT;
1205 page_offset &= ~PAGE_MASK; 1207 page_offset &= ~PAGE_MASK;
1208 if (quadrant != page->role.quadrant)
1209 continue;
1206 } 1210 }
1207 spte = __va(page->page_hpa); 1211 spte = __va(page->page_hpa);
1208 spte += page_offset / sizeof(*spte); 1212 spte += page_offset / sizeof(*spte);