linux/debian/patches-rt/0090-x86-kvm-Require-const-...

38 lines
1.1 KiB
Diff
Raw Normal View History

2020-02-21 18:07:43 +00:00
From 0b5b5f3f20cd3eafe3b93c1ef1d18b9306d0ed78 Mon Sep 17 00:00:00 2001
From: Thomas Gleixner <tglx@linutronix.de>
2019-04-08 23:49:20 +00:00
Date: Sun, 6 Nov 2011 12:26:18 +0100
2020-02-21 18:07:43 +00:00
Subject: [PATCH 090/319] x86: kvm Require const tsc for RT
Origin: https://www.kernel.org/pub/linux/kernel/projects/rt/4.19/older/patches-4.19.103-rt42.tar.xz
Non constant TSC is a nightmare on bare metal already, but with
virtualization it becomes a complete disaster because the workarounds
are horrible latency wise. That's also a preliminary for running RT in
a guest on top of a RT host.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
---
2019-04-08 23:49:20 +00:00
arch/x86/kvm/x86.c | 7 +++++++
1 file changed, 7 insertions(+)
2019-04-08 23:49:20 +00:00
diff --git a/arch/x86/kvm/x86.c b/arch/x86/kvm/x86.c
2020-02-21 18:07:43 +00:00
index ade694f94a49..2dfb7c81743e 100644
--- a/arch/x86/kvm/x86.c
+++ b/arch/x86/kvm/x86.c
2020-02-21 18:07:43 +00:00
@@ -6873,6 +6873,13 @@ int kvm_arch_init(void *opaque)
goto out;
}
+#ifdef CONFIG_PREEMPT_RT_FULL
+ if (!boot_cpu_has(X86_FEATURE_CONSTANT_TSC)) {
+ printk(KERN_ERR "RT requires X86_FEATURE_CONSTANT_TSC\n");
+ return -EOPNOTSUPP;
+ }
+#endif
+
r = kvm_mmu_module_init();
if (r)
goto out_free_percpu;
2020-01-03 23:36:11 +00:00
--
2020-02-21 18:07:43 +00:00
2.25.0
2020-01-03 23:36:11 +00:00