From: l00313349 <liting8@huawei.com>
To: <linux-arm-kernel@lists.infradead.org>, <kvmarm@lists.linux.dev>
Cc: <maz@kernel.org>, <oliver.upton@linux.dev>, <james.morse@arm.com>,
<suzuki.poulose@arm.com>, <yuzenghui@huawei.com>,
<catalin.marinas@arm.com>, <will@kernel.org>,
<zhengchuan@huawei.com>, <xiexiangyou@huawei.com>
Subject: [PATCH] KVM: arm64: fix MPIDR to vcpu index cache to support vcpu change at runtime
Date: Tue, 28 Nov 2023 21:54:02 +0800 [thread overview]
Message-ID: <20231128135402.1943-1-liting8@huawei.com> (raw)
From: Ting Li <liting8@huawei.com>
Consider vcpu change at runtime, for example online_vcpus is 8,
but only start 2 vcpu threads, MPIDR to vcpu index 0 may be overwrited
and vm hangs. When start other vcpu threads, cache will be outdated
and always get mismatch.
To solve this problem, codes update as followed:
1.First time only vcpu 0 can init MPIDR data, and use flags to avoid
index overwrite.
2.When MPIDR cache mismatch, fallback to old iterative method, and reinit
MPIDR to vcpu index cache data.
Signed-off-by: Ting Li <liting8@huawei.com>
---
arch/arm64/kvm/arm.c | 49 ++++++++++++++++++++++++++++++++++++--------
1 file changed, 41 insertions(+), 8 deletions(-)
diff --git a/arch/arm64/kvm/arm.c b/arch/arm64/kvm/arm.c
index e5f75f1f1085..a3c038ad2f41 100644
--- a/arch/arm64/kvm/arm.c
+++ b/arch/arm64/kvm/arm.c
@@ -584,14 +584,16 @@ static int kvm_vcpu_initialized(struct kvm_vcpu *vcpu)
static void kvm_init_mpidr_data(struct kvm *kvm)
{
struct kvm_mpidr_data *data = NULL;
+ bool *index_inited_flags = NULL;
+ struct kvm_mpidr_data *data_to_del = NULL;
unsigned long c, mask, nr_entries;
u64 aff_set = 0, aff_clr = ~0UL;
struct kvm_vcpu *vcpu;
- mutex_lock(&kvm->arch.config_lock);
+ if (atomic_read(&kvm->online_vcpus) == 1)
+ return;
- if (kvm->arch.mpidr_data || atomic_read(&kvm->online_vcpus) == 1)
- goto out;
+ mutex_lock(&kvm->arch.config_lock);
kvm_for_each_vcpu(c, vcpu, kvm) {
u64 aff = kvm_vcpu_get_mpidr_aff(vcpu);
@@ -618,16 +620,37 @@ static void kvm_init_mpidr_data(struct kvm *kvm)
if (!data)
goto out;
+ /*
+ * Use index inited flags to avoid index overwrite.
+ */
+ index_inited_flags = kcalloc(nr_entries, sizeof(bool), GFP_KERNEL);
+ if (!index_inited_flags) {
+ kfree(data);
+ goto out;
+ }
+
data->mpidr_mask = mask;
kvm_for_each_vcpu(c, vcpu, kvm) {
u64 aff = kvm_vcpu_get_mpidr_aff(vcpu);
u16 index = kvm_mpidr_index(data, aff);
+ /*
+ * When index has inited, ignore set conflict index.
+ */
+ if (index_inited_flags[index])
+ continue;
data->cmpidr_to_idx[index] = c;
+ index_inited_flags[index] = true;
}
-
+ /*
+ * When mpidr_data exist, change to new data then free old data.
+ */
+ if (kvm->arch.mpidr_data)
+ data_to_del = kvm->arch.mpidr_data;
kvm->arch.mpidr_data = data;
+ kfree(data_to_del);
+ kfree(index_inited_flags);
out:
mutex_unlock(&kvm->arch.config_lock);
}
@@ -655,7 +678,8 @@ int kvm_arch_vcpu_run_pid_change(struct kvm_vcpu *vcpu)
if (likely(vcpu_has_run_once(vcpu)))
return 0;
- kvm_init_mpidr_data(kvm);
+ if (vcpu->vcpu_id == 0)
+ kvm_init_mpidr_data(kvm);
kvm_arm_vcpu_init_debug(vcpu);
@@ -2459,15 +2483,24 @@ struct kvm_vcpu *kvm_mpidr_to_vcpu(struct kvm *kvm, unsigned long mpidr)
vcpu = kvm_get_vcpu(kvm,
kvm->arch.mpidr_data->cmpidr_to_idx[idx]);
+ /*
+ * When mpidr mismatch, fallback to old iterative method.
+ */
if (mpidr != kvm_vcpu_get_mpidr_aff(vcpu))
vcpu = NULL;
-
- return vcpu;
+ else
+ return vcpu;
}
kvm_for_each_vcpu(i, vcpu, kvm) {
- if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu))
+ if (mpidr == kvm_vcpu_get_mpidr_aff(vcpu)) {
+ /*
+ * Reinit MPIDR to vcpu index cache.
+ */
+ if (kvm->arch.mpidr_data)
+ kvm_init_mpidr_data(kvm);
return vcpu;
+ }
}
return NULL;
}
--
2.33.0
next reply other threads:[~2023-11-28 13:54 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-28 13:54 l00313349 [this message]
2023-11-29 19:18 ` [PATCH] KVM: arm64: fix MPIDR to vcpu index cache to support vcpu change at runtime Marc Zyngier
2023-12-01 10:48 ` liting (Q)
2023-12-01 12:15 ` Marc Zyngier
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=20231128135402.1943-1-liting8@huawei.com \
--to=liting8@huawei.com \
--cc=catalin.marinas@arm.com \
--cc=james.morse@arm.com \
--cc=kvmarm@lists.linux.dev \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=maz@kernel.org \
--cc=oliver.upton@linux.dev \
--cc=suzuki.poulose@arm.com \
--cc=will@kernel.org \
--cc=xiexiangyou@huawei.com \
--cc=yuzenghui@huawei.com \
--cc=zhengchuan@huawei.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