mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
To: Wanpeng Li <kernellwp@gmail.com>
Cc: LKML <linux-kernel@vger.kernel.org>, kvm <kvm@vger.kernel.org>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Sean Christopherson <sean.j.christopherson@intel.com>,
	Wanpeng Li <wanpengli@tencent.com>,
	Vitaly Kuznetsov <vkuznets@redhat.com>,
	Jim Mattson <jmattson@google.com>, Joerg Roedel <joro@8bytes.org>
Subject: Re: [PATCH v2 1/2] KVM: Introduce pv check helpers
Date: Mon, 10 Feb 2020 10:38:15 -0500	[thread overview]
Message-ID: <20200210153815.GE7395@char.us.oracle.com> (raw)
In-Reply-To: <CANRm+Cxd55Sqi4anpXD_Urmx8BV=R9ZDUwejChJHLBsZeGoWbw@mail.gmail.com>

On Mon, Feb 10, 2020 at 02:37:30PM +0800, Wanpeng Li wrote:
> From: Wanpeng Li <wanpengli@tencent.com>
> 
> Introduce some pv check helpers for consistency.
> 
> Suggested-by: Vitaly Kuznetsov <vkuznets@redhat.com>
> Signed-off-by: Wanpeng Li <wanpengli@tencent.com>
Reviewed-by: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>

Thank you!
> ---
>  arch/x86/kernel/kvm.c | 34 ++++++++++++++++++++++++----------
>  1 file changed, 24 insertions(+), 10 deletions(-)
> 
> diff --git a/arch/x86/kernel/kvm.c b/arch/x86/kernel/kvm.c
> index d817f25..76ea8c4 100644
> --- a/arch/x86/kernel/kvm.c
> +++ b/arch/x86/kernel/kvm.c
> @@ -425,7 +425,27 @@ static void __init sev_map_percpu_data(void)
>      }
>  }
> 
> +static bool pv_tlb_flush_supported(void)
> +{
> +    return (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH) &&
> +        !kvm_para_has_hint(KVM_HINTS_REALTIME) &&
> +        kvm_para_has_feature(KVM_FEATURE_STEAL_TIME));
> +}
> +
>  #ifdef CONFIG_SMP
> +
> +static bool pv_ipi_supported(void)
> +{
> +    return kvm_para_has_feature(KVM_FEATURE_PV_SEND_IPI);
> +}
> +
> +static bool pv_sched_yield_supported(void)
> +{
> +    return (kvm_para_has_feature(KVM_FEATURE_PV_SCHED_YIELD) &&
> +        !kvm_para_has_hint(KVM_HINTS_REALTIME) &&
> +        kvm_para_has_feature(KVM_FEATURE_STEAL_TIME));
> +}
> +
>  #define KVM_IPI_CLUSTER_SIZE    (2 * BITS_PER_LONG)
> 
>  static void __send_ipi_mask(const struct cpumask *mask, int vector)
> @@ -619,9 +639,7 @@ static void __init kvm_guest_init(void)
>          pv_ops.time.steal_clock = kvm_steal_clock;
>      }
> 
> -    if (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH) &&
> -        !kvm_para_has_hint(KVM_HINTS_REALTIME) &&
> -        kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
> +    if (pv_tlb_flush_supported()) {
>          pv_ops.mmu.flush_tlb_others = kvm_flush_tlb_others;
>          pv_ops.mmu.tlb_remove_table = tlb_remove_table;
>      }
> @@ -632,9 +650,7 @@ static void __init kvm_guest_init(void)
>  #ifdef CONFIG_SMP
>      smp_ops.smp_prepare_cpus = kvm_smp_prepare_cpus;
>      smp_ops.smp_prepare_boot_cpu = kvm_smp_prepare_boot_cpu;
> -    if (kvm_para_has_feature(KVM_FEATURE_PV_SCHED_YIELD) &&
> -        !kvm_para_has_hint(KVM_HINTS_REALTIME) &&
> -        kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
> +    if (pv_sched_yield_supported()) {
>          smp_ops.send_call_func_ipi = kvm_smp_send_call_func_ipi;
>          pr_info("KVM setup pv sched yield\n");
>      }
> @@ -700,7 +716,7 @@ static uint32_t __init kvm_detect(void)
>  static void __init kvm_apic_init(void)
>  {
>  #if defined(CONFIG_SMP)
> -    if (kvm_para_has_feature(KVM_FEATURE_PV_SEND_IPI))
> +    if (pv_ipi_supported())
>          kvm_setup_pv_ipi();
>  #endif
>  }
> @@ -739,9 +755,7 @@ static __init int kvm_setup_pv_tlb_flush(void)
>      if (!kvm_para_available() || nopv)
>          return 0;
> 
> -    if (kvm_para_has_feature(KVM_FEATURE_PV_TLB_FLUSH) &&
> -        !kvm_para_has_hint(KVM_HINTS_REALTIME) &&
> -        kvm_para_has_feature(KVM_FEATURE_STEAL_TIME)) {
> +    if (pv_tlb_flush_supported()) {
>          for_each_possible_cpu(cpu) {
>              zalloc_cpumask_var_node(per_cpu_ptr(&__pv_tlb_mask, cpu),
>                  GFP_KERNEL, cpu_to_node(cpu));
> --
> 2.7.4

  reply	other threads:[~2020-02-10 15:36 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-02-10  6:37 Wanpeng Li
2020-02-10 15:38 ` Konrad Rzeszutek Wilk [this message]
2020-02-11  1:55 linmiaohe

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=20200210153815.GE7395@char.us.oracle.com \
    --to=konrad.wilk@oracle.com \
    --cc=jmattson@google.com \
    --cc=joro@8bytes.org \
    --cc=kernellwp@gmail.com \
    --cc=kvm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=pbonzini@redhat.com \
    --cc=sean.j.christopherson@intel.com \
    --cc=vkuznets@redhat.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

Powered by JetHome