Skip to content

Commit dd4589e

Browse files
sean-jcbonzini
authored andcommitted
Revert "svm: Add warning message for AVIC IPI invalid target"
Remove a WARN on an "AVIC IPI invalid target" exit, the WARN is trivial to trigger from guest as it will fail on any destination APIC ID that doesn't exist from the guest's perspective. Don't bother recording anything in the kernel log, the common tracepoint for kvm_avic_incomplete_ipi() is sufficient for debugging. This reverts commit 37ef0c4. Cc: stable@vger.kernel.org Signed-off-by: Sean Christopherson <seanjc@google.com> Message-Id: <20220204214205.3306634-2-seanjc@google.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
1 parent dfd42fa commit dd4589e

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

arch/x86/kvm/svm/avic.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,6 @@ int avic_incomplete_ipi_interception(struct kvm_vcpu *vcpu)
345345
avic_kick_target_vcpus(vcpu->kvm, apic, icrl, icrh);
346346
break;
347347
case AVIC_IPI_FAILURE_INVALID_TARGET:
348-
WARN_ONCE(1, "Invalid IPI target: index=%u, vcpu=%d, icr=%#0x:%#0x\n",
349-
index, vcpu->vcpu_id, icrh, icrl);
350348
break;
351349
case AVIC_IPI_FAILURE_INVALID_BACKING_PAGE:
352350
WARN_ONCE(1, "Invalid backing page\n");

0 commit comments

Comments
 (0)