From: Sean Christopherson <seanjc@google.com>
To: Wang Guangju <wangguangju@baidu.com>
Cc: pbonzini@redhat.com, vkuznets@redhat.com, jmattson@google.com,
wanpengli@tencent.com, bp@alien8.de, joro@8bytes.org,
suravee.suthikulpanit@amd.com, hpa@zytor.com, tglx@linutronix.de,
mingo@redhat.com, kvm@vger.kernel.org,
linux-kernel@vger.kernel.org, chukaiping <chukaiping@baidu.com>
Subject: Re: [PATCH] KVM: x86: Add EOI_INDUCED exit handlers for Hyper-V SynIC vectors
Date: Thu, 7 Jul 2022 16:37:18 +0000 [thread overview]
Message-ID: <YscLvipHbNx+Wy9y@google.com> (raw)
In-Reply-To: <20220707122854.87-1-wangguangju@baidu.com>
This isn't adding a handler so much as it's signaling EOI for SynIC vectors. Maybe?
KVM: x86: Send EOI to SynIC vectors on accelerated EOI-induced VM-Exits
On Thu, Jul 07, 2022, Wang Guangju wrote:
> From: chukaiping <chukaiping@baidu.com>
>
> When EOI virtualization is performed on VMX,
> kvm_apic_set_eoi_accelerated() is called upon
> EXIT_REASON_EOI_INDUCED but unlike its non-accelerated
> apic_set_eoi() sibling, Hyper-V SINT vectors are
> left unhandled.
Wrap changelogs closer to ~75 chars.
> This patch fix it, and add a new helper function to
> handle both IOAPIC and Hyper-V SINT vectors.
Avoid "this patch" and simply state what change is being made. E.g.
Send EOI to Hyper-V SINT vectors when handling acclerated EOI-induced
VM-Exits. KVM Hyper-V needs to handle the SINT EOI irrespective of
whether the EOI is acclerated or not.
Fixes: 5c919412fe61 ("kvm/x86: Hyper-V synthetic interrupt controller")
and probably Cc: stable@vger.kernel.org?
> Suggested-by: Vitaly Kuznetsov <vkuznets@redhat.com>
> Signed-off-by: wangguangju <wangguangju@baidu.com>
> ---
> arch/x86/kvm/lapic.c | 19 ++++++++++++-------
> 1 file changed, 12 insertions(+), 7 deletions(-)
>
> diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c
> index f03facc..e046afe 100644
> --- a/arch/x86/kvm/lapic.c
> +++ b/arch/x86/kvm/lapic.c
> @@ -1269,6 +1269,16 @@ static void kvm_ioapic_send_eoi(struct kvm_lapic *apic, int vector)
> kvm_ioapic_update_eoi(apic->vcpu, vector, trigger_mode);
> }
>
> +static inline void apic_set_eoi_vector(struct kvm_lapic *apic, int vector)
> +{
> + if (to_hv_vcpu(apic->vcpu) &&
> + test_bit(vector, to_hv_synic(apic->vcpu)->vec_bitmap))
> + kvm_hv_synic_send_eoi(apic->vcpu, vector);
> +
> + kvm_ioapic_send_eoi(apic, vector);
> + kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
> +}
Rather than add a third helper, what about renaming kvm_apic_set_eoi_accelerated()
and having the non-accelerated helper call the "acclerated" version? That will
document the delta between the non-accelerated patch and the accelerated path.
The only hiccup is tracing, but that's easy to resolve (or we could just not trace
if there's no valid vector to EOI), e.g.
/*
* Send EOI for a valid vector. The caller, or hardware when this is invoked
* after an accelerated EOI VM-Exit, is responsible for updating the vISR and
* vPPR.
*/
void kvm_apic_set_eoi(struct kvm_lapic *apic, int vector)
{
trace_kvm_eoi(apic, vector);
if (to_hv_vcpu(apic->vcpu) &&
test_bit(vector, to_hv_synic(apic->vcpu)->vec_bitmap))
kvm_hv_synic_send_eoi(apic->vcpu, vector);
kvm_ioapic_send_eoi(apic, vector);
kvm_make_request(KVM_REQ_EVENT, apic->vcpu);
}
EXPORT_SYMBOL_GPL(kvm_apic_set_eoi);
static int apic_set_eoi(struct kvm_lapic *apic)
{
int vector = apic_find_highest_isr(apic);
/*
* Not every write EOI will has corresponding ISR,
* one example is when Kernel check timer on setup_IO_APIC
*/
if (vector == -1) {
trace_kvm_eoi(apic, vector); <---- maybe just drop this?
return vector;
}
apic_clear_isr(vector, apic);
apic_update_ppr(apic);
kvm_apic_set_eoi(apic, vector);
return vector;
}
next prev parent reply other threads:[~2022-07-07 16:37 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-07 12:28 [PATCH] KVM: x86: Add EOI_INDUCED exit handlers for Hyper-V SynIC vectors Wang Guangju
2022-07-07 16:37 ` Sean Christopherson [this message]
2022-07-08 1:00 ` 答复: " Wang,Guangju
-- strict thread matches above, loose matches on Subject: below --
2022-07-07 12:50 [PATCH] KVM: x86: Add EOI_INDUCED_EXIT " Wang Guangju
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=YscLvipHbNx+Wy9y@google.com \
--to=seanjc@google.com \
--cc=bp@alien8.de \
--cc=chukaiping@baidu.com \
--cc=hpa@zytor.com \
--cc=jmattson@google.com \
--cc=joro@8bytes.org \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@redhat.com \
--cc=pbonzini@redhat.com \
--cc=suravee.suthikulpanit@amd.com \
--cc=tglx@linutronix.de \
--cc=vkuznets@redhat.com \
--cc=wangguangju@baidu.com \
--cc=wanpengli@tencent.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox