diff options
author | Mihai Caraman <mihai.caraman@freescale.com> | 2014-01-09 10:01:05 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-06 14:08:17 -0500 |
commit | 5f03911e126049d7482e21099be250685c6038e7 (patch) | |
tree | 6e3d9eee6ed1a7a3b2a51f39dbd4b4cc30c5059b | |
parent | 250be41c8d5e04dc17109f9a47be23545d17b35d (diff) |
KVM: PPC: e500: Fix bad address type in deliver_tlb_misss()
commit 70713fe315ed14cd1bb07d1a7f33e973d136ae3d upstream.
Use gva_t instead of unsigned int for eaddr in deliver_tlb_miss().
Signed-off-by: Mihai Caraman <mihai.caraman@freescale.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | arch/powerpc/kvm/e500_mmu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/powerpc/kvm/e500_mmu.c b/arch/powerpc/kvm/e500_mmu.c index 6d6f153b6c1d..c17600de7d59 100644 --- a/arch/powerpc/kvm/e500_mmu.c +++ b/arch/powerpc/kvm/e500_mmu.c | |||
@@ -127,7 +127,7 @@ static int kvmppc_e500_tlb_index(struct kvmppc_vcpu_e500 *vcpu_e500, | |||
127 | } | 127 | } |
128 | 128 | ||
129 | static inline void kvmppc_e500_deliver_tlb_miss(struct kvm_vcpu *vcpu, | 129 | static inline void kvmppc_e500_deliver_tlb_miss(struct kvm_vcpu *vcpu, |
130 | unsigned int eaddr, int as) | 130 | gva_t eaddr, int as) |
131 | { | 131 | { |
132 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); | 132 | struct kvmppc_vcpu_e500 *vcpu_e500 = to_e500(vcpu); |
133 | unsigned int victim, tsized; | 133 | unsigned int victim, tsized; |