]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0005-PVE-Config-smm_available-false.patch
Fix dirty-bitmap PBS backup with multiple drives
[pve-qemu.git] / debian / patches / pve / 0005-PVE-Config-smm_available-false.patch
CommitLineData
23102ed6 1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
95259824 2From: Alexandre Derumier <aderumier@odiso.com>
83faa3fe
TL
3Date: Mon, 6 Apr 2020 12:16:34 +0200
4Subject: [PATCH] PVE: [Config] smm_available = false
95259824
WB
5
6Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
b855dce7 7Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
95259824 8---
83faa3fe 9 hw/i386/x86.c | 2 +-
95259824
WB
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
83faa3fe
TL
12diff --git a/hw/i386/x86.c b/hw/i386/x86.c
13index b82770024c..bd05b3c79a 100644
14--- a/hw/i386/x86.c
15+++ b/hw/i386/x86.c
16@@ -896,7 +896,7 @@ bool x86_machine_is_smm_enabled(X86MachineState *x86ms)
95259824
WB
17 if (tcg_enabled() || qtest_enabled()) {
18 smm_available = true;
19 } else if (kvm_enabled()) {
20- smm_available = kvm_has_smm();
21+ smm_available = false;
22 }
23
24 if (smm_available) {