mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Haiwei Li <lihaiwei.kernel@gmail.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"kvm@vger.kernel.org" <kvm@vger.kernel.org>,
	"x86@kernel.org" <x86@kernel.org>
Cc: "hpa@zytor.com" <hpa@zytor.com>, "bp@alien8.de" <bp@alien8.de>,
	"mingo@redhat.com" <mingo@redhat.com>,
	tglx@linutronix.de, joro@8bytes.org, jmattson@google.com,
	"wanpengli@tencent.com" <wanpengli@tencent.com>,
	vkuznets@redhat.com,
	Sean Christopherson <sean.j.christopherson@intel.com>
Subject: Re: [PATCH] KVM: Check the allocation of pv cpu mask
Date: Fri, 11 Sep 2020 17:42:57 +0200	[thread overview]
Message-ID: <0617b9ae-8ddb-dcb7-a345-9d629916d20d@redhat.com> (raw)
In-Reply-To: <d59f05df-e6d3-3d31-a036-cc25a2b2f33f@gmail.com>

On 01/09/20 13:41, Haiwei Li wrote:
> From: Haiwei Li <lihaiwei@tencent.com>
> 
> check the allocation of per-cpu __pv_cpu_mask. Initialize ops only when
> successful.
> 
> Signed-off-by: Haiwei Li <lihaiwei@tencent.com>
> ---
>  arch/x86/kernel/kvm.c | 23 +++++++++++++++++++----
>  1 file changed, 19 insertions(+), 4 deletions(-)
> 
> diff --git a/arch/x86/kernel/kvm.c b/arch/x86/kernel/kvm.c
> index 08320b0b2b27..a64b894eaac0 100644
> --- a/arch/x86/kernel/kvm.c
> +++ b/arch/x86/kernel/kvm.c
> @@ -555,7 +555,6 @@ static void kvm_send_ipi_mask_allbutself(const
> struct cpumask *mask, int vector)
>  static void kvm_setup_pv_ipi(void)
>  {
>      apic->send_IPI_mask = kvm_send_ipi_mask;
> -    apic->send_IPI_mask_allbutself = kvm_send_ipi_mask_allbutself;
>      pr_info("setup PV IPIs\n");
>  }
> 
> @@ -654,7 +653,6 @@ static void __init kvm_guest_init(void)
>      }
> 
>      if (pv_tlb_flush_supported()) {
> -        pv_ops.mmu.flush_tlb_others = kvm_flush_tlb_others;
>          pv_ops.mmu.tlb_remove_table = tlb_remove_table;
>          pr_info("KVM setup pv remote TLB flush\n");
>      }
> @@ -767,6 +765,14 @@ static __init int activate_jump_labels(void)
>  }
>  arch_initcall(activate_jump_labels);
> 
> +static void kvm_free_pv_cpu_mask(void)
> +{
> +    unsigned int cpu;
> +
> +    for_each_possible_cpu(cpu)
> +        free_cpumask_var(per_cpu(__pv_cpu_mask, cpu));
> +}
> +
>  static __init int kvm_alloc_cpumask(void)
>  {
>      int cpu;
> @@ -785,11 +791,20 @@ static __init int kvm_alloc_cpumask(void)
> 
>      if (alloc)
>          for_each_possible_cpu(cpu) {
> -            zalloc_cpumask_var_node(per_cpu_ptr(&__pv_cpu_mask, cpu),
> -                GFP_KERNEL, cpu_to_node(cpu));
> +            if (!zalloc_cpumask_var_node(
> +                per_cpu_ptr(&__pv_cpu_mask, cpu),
> +                GFP_KERNEL, cpu_to_node(cpu))) {
> +                goto zalloc_cpumask_fail;
> +            }
>          }
> 
> +    apic->send_IPI_mask_allbutself = kvm_send_ipi_mask_allbutself;
> +    pv_ops.mmu.flush_tlb_others = kvm_flush_tlb_others;
>      return 0;
> +
> +zalloc_cpumask_fail:
> +    kvm_free_pv_cpu_mask();
> +    return -ENOMEM;
>  }
>  arch_initcall(kvm_alloc_cpumask);
> 
> -- 
> 2.18.4
> 

Queued, thanks.

I am currently on leave so I am going through the patches and queuing
them, but I will only push kvm/next and kvm/queue next week.  kvm/master
patches will be sent to Linus for the next -rc though.

Paolo


      parent reply	other threads:[~2020-09-11 16:10 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-01 11:41 Haiwei Li
2020-09-01 17:35 ` kernel test robot
2020-09-03  1:31   ` Haiwei Li
2020-09-11 15:42 ` Paolo Bonzini [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=0617b9ae-8ddb-dcb7-a345-9d629916d20d@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=bp@alien8.de \
    --cc=hpa@zytor.com \
    --cc=jmattson@google.com \
    --cc=joro@8bytes.org \
    --cc=kvm@vger.kernel.org \
    --cc=lihaiwei.kernel@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=sean.j.christopherson@intel.com \
    --cc=tglx@linutronix.de \
    --cc=vkuznets@redhat.com \
    --cc=wanpengli@tencent.com \
    --cc=x86@kernel.org \
    /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®