KVM: PPC: e500: Silence bogus GCC warning in tlb code
authorMihai Caraman <mihai.caraman@freescale.com>
Thu, 11 Oct 2012 06:13:18 +0000 (06:13 +0000)
committerAlexander Graf <agraf@suse.de>
Thu, 6 Dec 2012 00:34:08 +0000 (01:34 +0100)
64-bit GCC 4.5.1 warns about an uninitialized variable which was guarded
by a flag. Initialize the variable to make it happy.

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

index 6305ee692ef76ff0a58d6f0f944ea4adf84d86ae..5532bfb15464b3a1a84fe4cac8594af8947dc1a8 100644 (file)
@@ -415,7 +415,8 @@ static inline void kvmppc_e500_shadow_map(struct kvmppc_vcpu_e500 *vcpu_e500,
        struct tlbe_ref *ref)
 {
        struct kvm_memory_slot *slot;
-       unsigned long pfn, hva;
+       unsigned long pfn = 0; /* silence GCC warning */
+       unsigned long hva;
        int pfnmap = 0;
        int tsize = BOOK3E_PAGESZ_4K;
 
This page took 0.025097 seconds and 5 git commands to generate.