From: Huacai Chen Date: Sun, 19 Jul 2020 10:23:27 +0000 (+0800) Subject: MIPS: KVM: Fix build error caused by 'kvm_run' cleanup X-Git-Tag: v5.9-rc1~121^2~13 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=033555f6eb60787bd40e34d7abeacaebdcd4c54e;p=thirdparty%2Flinux.git MIPS: KVM: Fix build error caused by 'kvm_run' cleanup Commit c34b26b98caca48ec9ee9 ("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: c34b26b98caca48ec9ee9 ("KVM: MIPS: clean up redundant 'kvm_run' parameters") Reported-by: kernel test robot Cc: Tianjia Zhang Signed-off-by: Huacai Chen Message-Id: <1595154207-9787-1-git-send-email-chenhc@lemote.com> Signed-off-by: Paolo Bonzini --- diff --git a/arch/mips/kvm/emulate.c b/arch/mips/kvm/emulate.c index 3221193c7371d..8018e92ffd4b7 100644 --- a/arch/mips/kvm/emulate.c +++ b/arch/mips/kvm/emulate.c @@ -2123,7 +2123,7 @@ enum emulation_result kvm_mips_emulate_load(union mips_instruction inst, run->mmio.phys_addr, run->mmio.len, run->mmio.data); if (!r) { - kvm_mips_complete_mmio_load(vcpu, run); + kvm_mips_complete_mmio_load(vcpu); vcpu->mmio_needed = 0; return EMULATE_DONE; }