KVM: PPC: Book3S PR: Invalidate SLB entries properly
authorPaul Mackerras <paulus@samba.org>
Sat, 22 Jun 2013 07:15:24 +0000 (17:15 +1000)
committerAlexander Graf <agraf@suse.de>
Sun, 30 Jun 2013 01:33:22 +0000 (03:33 +0200)
At present, if the guest creates a valid SLB (segment lookaside buffer)
entry with the slbmte instruction, then invalidates it with the slbie
instruction, then reads the entry with the slbmfee/slbmfev instructions,
the result of the slbmfee will have the valid bit set, even though the
entry is not actually considered valid by the host.  This is confusing,
if not worse.  This fixes it by zeroing out the orige and origv fields
of the SLB entry structure when the entry is invalidated.

Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/kvm/book3s_64_mmu.c

index ee435ba6b92aaf4332893858bfc57a0a9fb25754..739bfbadb85e3218bf39a293af377d7fe99eb218 100644 (file)
@@ -397,6 +397,8 @@ static void kvmppc_mmu_book3s_64_slbie(struct kvm_vcpu *vcpu, u64 ea)
        dprintk("KVM MMU: slbie(0x%llx, 0x%llx)\n", ea, slbe->esid);
 
        slbe->valid = false;
+       slbe->orige = 0;
+       slbe->origv = 0;
 
        seg_size = 1ull << kvmppc_slb_sid_shift(slbe);
        kvmppc_mmu_flush_segment(vcpu, ea & ~(seg_size - 1), seg_size);
@@ -408,8 +410,11 @@ static void kvmppc_mmu_book3s_64_slbia(struct kvm_vcpu *vcpu)
 
        dprintk("KVM MMU: slbia()\n");
 
-       for (i = 1; i < vcpu->arch.slb_nr; i++)
+       for (i = 1; i < vcpu->arch.slb_nr; i++) {
                vcpu->arch.slb[i].valid = false;
+               vcpu->arch.slb[i].orige = 0;
+               vcpu->arch.slb[i].origv = 0;
+       }
 
        if (vcpu->arch.shared->msr & MSR_IR) {
                kvmppc_mmu_flush_segments(vcpu);