From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Ellerman Date: Fri, 04 Jun 2021 11:58:58 +0000 Subject: Re: [PATCH] KVM: PPC: Book3S PR: remove unused define in kvmppc_mmu_book3s_64_xlate Message-Id: <87lf7pg7st.fsf@mpe.ellerman.id.au> List-Id: References: <20210604081303.3701171-1-yangerkun@huawei.com> In-Reply-To: <20210604081303.3701171-1-yangerkun@huawei.com> MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: kvm-ppc@vger.kernel.org yangerkun writes: > arch/powerpc/kvm/book3s_64_mmu.c:199:6: warning: variable ā€˜v’ set but > not used [-Wunused-but-set-variable] > 199 | u64 v, r; > | ^ > > Fix it by remove the define. > > Reported-by: Hulk Robot > Signed-off-by: yangerkun > --- > arch/powerpc/kvm/book3s_64_mmu.c | 3 +-- > 1 file changed, 1 insertion(+), 2 deletions(-) > > diff --git a/arch/powerpc/kvm/book3s_64_mmu.c b/arch/powerpc/kvm/book3s_64_mmu.c > index 26b8b27a3755..feee40cb2ba1 100644 > --- a/arch/powerpc/kvm/book3s_64_mmu.c > +++ b/arch/powerpc/kvm/book3s_64_mmu.c > @@ -196,7 +196,7 @@ static int kvmppc_mmu_book3s_64_xlate(struct kvm_vcpu *vcpu, gva_t eaddr, > hva_t ptegp; > u64 pteg[16]; > u64 avpn = 0; > - u64 v, r; > + u64 r; > u64 v_val, v_mask; > u64 eaddr_mask; > int i; > @@ -285,7 +285,6 @@ static int kvmppc_mmu_book3s_64_xlate(struct kvm_vcpu *vcpu, gva_t eaddr, > goto do_second; > } > > - v = be64_to_cpu(pteg[i]); > r = be64_to_cpu(pteg[i+1]); > pp = (r & HPTE_R_PP) | key; > if (r & HPTE_R_PP0) The obvious question being "does it not check v?!" But we already did it further up: for (i=0; i<16; i+=2) { u64 pte0 = be64_to_cpu(pteg[i]); u64 pte1 = be64_to_cpu(pteg[i + 1]); /* Check all relevant fields of 1st dword */ if ((pte0 & v_mask) == v_val) { ... found = true; So I guess we don't need the value of v for anything else, so this patch is probably good. cheers