diff options
author | hu huajun <huhuajun@linux.alibaba.com> | 2018-04-11 15:16:40 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2018-06-21 04:02:40 +0900 |
commit | 9b78e9ddc47ac2da31db600065ea6577dc9f8170 (patch) | |
tree | 5c473c60f38d1d700dd43a84c5ec38c12676c63e /arch/x86/kvm/svm.c | |
parent | 176ebf4df9710fefe751d6565c35da5a45aeece3 (diff) | |
download | linux-stable-9b78e9ddc47ac2da31db600065ea6577dc9f8170.tar.gz linux-stable-9b78e9ddc47ac2da31db600065ea6577dc9f8170.tar.bz2 linux-stable-9b78e9ddc47ac2da31db600065ea6577dc9f8170.zip |
KVM: X86: fix incorrect reference of trace_kvm_pi_irte_update
[ Upstream commit 2698d82e519413c6ad287e6f14b29e0373ed37f8 ]
In arch/x86/kvm/trace.h, this function is declared as host_irq the
first input, and vcpu_id the second, instead of otherwise.
Signed-off-by: hu huajun <huhuajun@linux.alibaba.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/x86/kvm/svm.c')
-rw-r--r-- | arch/x86/kvm/svm.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c index 029aa1318874..cfa155078ebb 100644 --- a/arch/x86/kvm/svm.c +++ b/arch/x86/kvm/svm.c @@ -4756,9 +4756,8 @@ static int svm_update_pi_irte(struct kvm *kvm, unsigned int host_irq, } if (!ret && svm) { - trace_kvm_pi_irte_update(svm->vcpu.vcpu_id, - host_irq, e->gsi, - vcpu_info.vector, + trace_kvm_pi_irte_update(host_irq, svm->vcpu.vcpu_id, + e->gsi, vcpu_info.vector, vcpu_info.pi_desc_addr, set); } |