[PATCH V2 0/2] KVM: SVM: Optimize AVIC incomplete IPI #vmexit handling

Suravee Suthikulpanit posted 2 patches 4 years ago
arch/x86/kvm/svm/avic.c | 74 ++++++++++++++++++++++++++++++++++++++---
arch/x86/kvm/trace.h    | 20 +++++++++++
arch/x86/kvm/x86.c      |  1 +
3 files changed, 91 insertions(+), 4 deletions(-)
[PATCH V2 0/2] KVM: SVM: Optimize AVIC incomplete IPI #vmexit handling
Posted by Suravee Suthikulpanit 4 years ago
This series introduce a fast-path when handling AVIC incomplete IPI #vmexit
for AVIC, and introduce a new tracepoint for the slow-path processing.

Regards,
Suravee

Change from v1: (https://lore.kernel.org/lkml/20220414051151.77710-1-suravee.suthikulpanit@amd.com/T/)
 * Rebased on top of Linux 5.18-rc3
 * Patch 1/2:
    - Update commit shortlog to be more meaningful
    - Refactor to remove x2AVIC related logic for now, which will be included
      in the x2AVIC patch series.

Suravee Suthikulpanit (2):
  KVM: SVM: Use target APIC ID to complete AVIC IRQs when possible
  KVM: SVM: Introduce trace point for the slow-path of
    avic_kic_target_vcpus

 arch/x86/kvm/svm/avic.c | 74 ++++++++++++++++++++++++++++++++++++++---
 arch/x86/kvm/trace.h    | 20 +++++++++++
 arch/x86/kvm/x86.c      |  1 +
 3 files changed, 91 insertions(+), 4 deletions(-)

-- 
2.25.1
Re: [PATCH V2 0/2] KVM: SVM: Optimize AVIC incomplete IPI #vmexit handling
Posted by Paolo Bonzini 4 years ago
On 4/20/22 17:49, Suravee Suthikulpanit wrote:
> This series introduce a fast-path when handling AVIC incomplete IPI #vmexit
> for AVIC, and introduce a new tracepoint for the slow-path processing.
> 
> Regards,
> Suravee
> 
> Change from v1: (https://lore.kernel.org/lkml/20220414051151.77710-1-suravee.suthikulpanit@amd.com/T/)
>   * Rebased on top of Linux 5.18-rc3
>   * Patch 1/2:
>      - Update commit shortlog to be more meaningful
>      - Refactor to remove x2AVIC related logic for now, which will be included
>        in the x2AVIC patch series.
> 
> Suravee Suthikulpanit (2):
>    KVM: SVM: Use target APIC ID to complete AVIC IRQs when possible
>    KVM: SVM: Introduce trace point for the slow-path of
>      avic_kic_target_vcpus
> 
>   arch/x86/kvm/svm/avic.c | 74 ++++++++++++++++++++++++++++++++++++++---
>   arch/x86/kvm/trace.h    | 20 +++++++++++
>   arch/x86/kvm/x86.c      |  1 +
>   3 files changed, 91 insertions(+), 4 deletions(-)
> 

Queued, thanks.

Paolo