Re: [RFC PATCH 03/18] KVM: Drop kvm_count_lock and instead protect kvm_usage_count with kvm_lock

From: Chao Gao
Date: Mon Aug 22 2022 - 22:26:26 EST


On Fri, Aug 19, 2022 at 11:00:09PM -0700, isaku.yamahata@xxxxxxxxx wrote:
>From: Isaku Yamahata <isaku.yamahata@xxxxxxxxx>
>
>Because kvm_count_lock unnecessarily complicates the KVM locking convention
>Drop kvm_count_lock and instead protect kvm_usage_count with kvm_lock for
>simplicity.
>
>Opportunistically add some comments on locking.
>
>Suggested-by: Sean Christopherson <seanjc@xxxxxxxxxx>
>Signed-off-by: Isaku Yamahata <isaku.yamahata@xxxxxxxxx>
>---
> static cpumask_var_t cpus_hardware_enabled;
>@@ -4999,6 +4998,8 @@ static void hardware_enable_nolock(void *junk)
> int cpu = raw_smp_processor_id();
> int r;
>
>+ WARN_ON_ONCE(preemptible());
>+
> if (cpumask_test_cpu(cpu, cpus_hardware_enabled))
> return;
>
>@@ -5015,10 +5016,10 @@ static void hardware_enable_nolock(void *junk)
>
> static int kvm_starting_cpu(unsigned int cpu)
> {
>- raw_spin_lock(&kvm_count_lock);
>+ mutex_lock(&kvm_lock);

kvm_starting_cpu() is called with interrupt disabled. So we cannot use
sleeping locks (e.g., mutex) here.