Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit edfaff26 authored by Geyslan G. Bem's avatar Geyslan G. Bem Committed by Paul Mackerras
Browse files

KVM: PPC: Book3S PR: Remove unused variable 'vcpu_book3s'



The vcpu_book3s variable is assigned but never used. So remove it.
Found using cppcheck.

Signed-off-by: default avatarGeyslan G. Bem <geyslan@gmail.com>
Signed-off-by: default avatarPaul Mackerras <paulus@samba.org>
parent 760a7364
Loading
Loading
Loading
Loading
+0 −3
Original line number Original line Diff line number Diff line
@@ -377,15 +377,12 @@ static int kvmppc_mmu_book3s_64_xlate(struct kvm_vcpu *vcpu, gva_t eaddr,


static void kvmppc_mmu_book3s_64_slbmte(struct kvm_vcpu *vcpu, u64 rs, u64 rb)
static void kvmppc_mmu_book3s_64_slbmte(struct kvm_vcpu *vcpu, u64 rs, u64 rb)
{
{
	struct kvmppc_vcpu_book3s *vcpu_book3s;
	u64 esid, esid_1t;
	u64 esid, esid_1t;
	int slb_nr;
	int slb_nr;
	struct kvmppc_slb *slbe;
	struct kvmppc_slb *slbe;


	dprintk("KVM MMU: slbmte(0x%llx, 0x%llx)\n", rs, rb);
	dprintk("KVM MMU: slbmte(0x%llx, 0x%llx)\n", rs, rb);


	vcpu_book3s = to_book3s(vcpu);

	esid = GET_ESID(rb);
	esid = GET_ESID(rb);
	esid_1t = GET_ESID_1T(rb);
	esid_1t = GET_ESID_1T(rb);
	slb_nr = rb & 0xfff;
	slb_nr = rb & 0xfff;