KVM: PPC: e500: fix handling local_sid_lookup result
authorAndrzej Hajda <a.hajda@samsung.com>
Thu, 24 Sep 2015 14:00:23 +0000 (16:00 +0200)
committerPaul Mackerras <paulus@samba.org>
Thu, 15 Oct 2015 04:58:16 +0000 (15:58 +1100)
The function can return negative value.

The problem has been detected using proposed semantic patch
scripts/coccinelle/tests/assign_signed_to_unsigned.cocci [1].

[1]: http://permalink.gmane.org/gmane.linux.kernel/2046107

Signed-off-by: Andrzej Hajda <a.hajda@samsung.com>
Acked-by: Scott Wood <scottwood@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
arch/powerpc/kvm/e500.c

index b29ce752c7d69027b1b07d42b0d9dc6d0ce2cf82..32fdab57d604d02eb16886818b0631b6612e3e61 100644 (file)
@@ -237,7 +237,8 @@ void kvmppc_e500_tlbil_one(struct kvmppc_vcpu_e500 *vcpu_e500,
                            struct kvm_book3e_206_tlb_entry *gtlbe)
 {
        struct vcpu_id_table *idt = vcpu_e500->idt;
-       unsigned int pr, tid, ts, pid;
+       unsigned int pr, tid, ts;
+       int pid;
        u32 val, eaddr;
        unsigned long flags;