From: yunhong jiang <yunhong.jiang@linux.intel.com>
To: Wanpeng Li <kernellwp@gmail.com>
Cc: linux-kernel@vger.kernel.org, kvm@vger.kernel.org,
"Wanpeng Li" <wanpeng.li@hotmail.com>,
"Paolo Bonzini" <pbonzini@redhat.com>,
"Radim Krčmář" <rkrcmar@redhat.com>,
"Yunhong Jiang" <yunhong.jiang@intel.com>
Subject: Re: [PATCH v2 1/2] KVM: x86: introduce cancel_hv_tscdeadline
Date: Wed, 29 Jun 2016 09:38:40 -0700 [thread overview]
Message-ID: <20160629093840.69814be3@jnakajim-build> (raw)
In-Reply-To: <1467199437-3102-1-git-send-email-wanpeng.li@hotmail.com>
On Wed, 29 Jun 2016 19:23:56 +0800
Wanpeng Li <kernellwp@gmail.com> wrote:
> From: Wanpeng Li <wanpeng.li@hotmail.com>
>
> Introduce cancel_hv_tscdeadline() to encapsulate preemption
> timer cancel stuff.
>
> Cc: Paolo Bonzini <pbonzini@redhat.com>
> Cc: Radim Krčmář <rkrcmar@redhat.com>
> Cc: Yunhong Jiang <yunhong.jiang@intel.com>
> Signed-off-by: Wanpeng Li <wanpeng.li@hotmail.com>
It's ok for me, thanks for the patch, Wanpeng.
--jyh
> ---
> arch/x86/kvm/lapic.c | 18 ++++++++++--------
> 1 file changed, 10 insertions(+), 8 deletions(-)
>
> diff --git a/arch/x86/kvm/lapic.c b/arch/x86/kvm/lapic.c
> index fdc05ae..9c20ac1 100644
> --- a/arch/x86/kvm/lapic.c
> +++ b/arch/x86/kvm/lapic.c
> @@ -1349,14 +1349,19 @@ bool kvm_lapic_hv_timer_in_use(struct
> kvm_vcpu *vcpu) }
> EXPORT_SYMBOL_GPL(kvm_lapic_hv_timer_in_use);
>
> +static void cancel_hv_tscdeadline(struct kvm_lapic *apic)
> +{
> + kvm_x86_ops->cancel_hv_timer(apic->vcpu);
> + apic->lapic_timer.hv_timer_in_use = false;
> +}
> +
> void kvm_lapic_expired_hv_timer(struct kvm_vcpu *vcpu)
> {
> struct kvm_lapic *apic = vcpu->arch.apic;
>
> WARN_ON(!apic->lapic_timer.hv_timer_in_use);
> WARN_ON(swait_active(&vcpu->wq));
> - kvm_x86_ops->cancel_hv_timer(vcpu);
> - apic->lapic_timer.hv_timer_in_use = false;
> + cancel_hv_tscdeadline(apic);
> apic_timer_expired(apic);
> }
> EXPORT_SYMBOL_GPL(kvm_lapic_expired_hv_timer);
> @@ -1376,10 +1381,8 @@ void kvm_lapic_switch_to_hv_timer(struct
> kvm_vcpu *vcpu) hrtimer_cancel(&apic->lapic_timer.timer);
>
> /* In case the sw timer triggered in the
> window */
> - if (atomic_read(&apic->lapic_timer.pending))
> {
> - apic->lapic_timer.hv_timer_in_use =
> false;
> -
> kvm_x86_ops->cancel_hv_timer(apic->vcpu);
> - }
> + if (atomic_read(&apic->lapic_timer.pending))
> + cancel_hv_tscdeadline(apic);
> }
> trace_kvm_hv_timer_state(vcpu->vcpu_id,
> apic->lapic_timer.hv_timer_in_use);
> @@ -1395,8 +1398,7 @@ void kvm_lapic_switch_to_sw_timer(struct
> kvm_vcpu *vcpu) if (!apic->lapic_timer.hv_timer_in_use)
> return;
>
> - kvm_x86_ops->cancel_hv_timer(vcpu);
> - apic->lapic_timer.hv_timer_in_use = false;
> + cancel_hv_tscdeadline(apic);
>
> if (atomic_read(&apic->lapic_timer.pending))
> return;
prev parent reply other threads:[~2016-06-29 16:45 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-29 11:23 Wanpeng Li
2016-06-29 11:23 ` [PATCH v2 2/2] KVM: x86: fix underflow in TSC deadline calculation Wanpeng Li
2016-06-29 17:16 ` yunhong jiang
2016-06-29 20:49 ` Paolo Bonzini
2016-06-29 22:26 ` Wanpeng Li
2016-06-29 16:38 ` yunhong jiang [this message]
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=20160629093840.69814be3@jnakajim-build \
--to=yunhong.jiang@linux.intel.com \
--cc=kernellwp@gmail.com \
--cc=kvm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=pbonzini@redhat.com \
--cc=rkrcmar@redhat.com \
--cc=wanpeng.li@hotmail.com \
--cc=yunhong.jiang@intel.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
all inboxes | Powered by JetHome®