Skip to content

Commit 033555f

Browse files
chenhuacaibonzini
authored andcommitted
MIPS: KVM: Fix build error caused by 'kvm_run' cleanup
Commit c34b26b ("KVM: MIPS: clean up redundant 'kvm_run' parameters") remove the 'kvm_run' parameter in kvm_mips_complete_mmio_ load(), but forget to update all callers. Fixes: c34b26b ("KVM: MIPS: clean up redundant 'kvm_run' parameters") Reported-by: kernel test robot <[email protected]> Cc: Tianjia Zhang <[email protected]> Signed-off-by: Huacai Chen <[email protected]> Message-Id: <[email protected]> Signed-off-by: Paolo Bonzini <[email protected]>
1 parent e8af9e9 commit 033555f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arch/mips/kvm/emulate.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2123,7 +2123,7 @@ enum emulation_result kvm_mips_emulate_load(union mips_instruction inst,
21232123
run->mmio.phys_addr, run->mmio.len, run->mmio.data);
21242124

21252125
if (!r) {
2126-
kvm_mips_complete_mmio_load(vcpu, run);
2126+
kvm_mips_complete_mmio_load(vcpu);
21272127
vcpu->mmio_needed = 0;
21282128
return EMULATE_DONE;
21292129
}

0 commit comments

Comments
 (0)