]> git.karo-electronics.de Git - linux-beck.git/commitdiff
KVM: PPC: e500mc: Fix tlbilx emulation for 64-bit guests
authorMihai Caraman <mihai.caraman@freescale.com>
Mon, 25 Jun 2012 02:26:26 +0000 (02:26 +0000)
committerAlexander Graf <agraf@suse.de>
Wed, 11 Jul 2012 15:39:38 +0000 (17:39 +0200)
tlbilxva emulation was using an u32 variable for guest effective address.
Replace it with gva_t type to handle 64-bit guests.

Signed-off-by: Mihai Caraman <mihai.caraman@freescale.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
arch/powerpc/kvm/e500mc.c

index db97ee3a08278354134f9d4e9614b7fff677374a..1f89d26e65fb72534e130ed755bfe3874740316f 100644 (file)
@@ -57,7 +57,8 @@ void kvmppc_e500_tlbil_one(struct kvmppc_vcpu_e500 *vcpu_e500,
                           struct kvm_book3e_206_tlb_entry *gtlbe)
 {
        unsigned int tid, ts;
-       u32 val, eaddr, lpid;
+       gva_t eaddr;
+       u32 val, lpid;
        unsigned long flags;
 
        ts = get_tlb_ts(gtlbe);