]> git.proxmox.com Git - pve-qemu.git/blame - debian/patches/pve/0013-smm_available-false.patch
bump version to 2.11.1-1
[pve-qemu.git] / debian / patches / pve / 0013-smm_available-false.patch
CommitLineData
23102ed6 1From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
95259824
WB
2From: Alexandre Derumier <aderumier@odiso.com>
3Date: Tue, 29 Sep 2015 15:37:44 +0200
23102ed6 4Subject: [PATCH] smm_available = false
95259824
WB
5
6Signed-off-by: Alexandre Derumier <aderumier@odiso.com>
7---
8 hw/i386/pc.c | 2 +-
9 1 file changed, 1 insertion(+), 1 deletion(-)
10
11diff --git a/hw/i386/pc.c b/hw/i386/pc.c
6838f038 12index 186545d2a4..603a7ce6bf 100644
95259824
WB
13--- a/hw/i386/pc.c
14+++ b/hw/i386/pc.c
6838f038 15@@ -2135,7 +2135,7 @@ bool pc_machine_is_smm_enabled(PCMachineState *pcms)
95259824
WB
16 if (tcg_enabled() || qtest_enabled()) {
17 smm_available = true;
18 } else if (kvm_enabled()) {
19- smm_available = kvm_has_smm();
20+ smm_available = false;
21 }
22
23 if (smm_available) {
24--
45169293 252.11.0
95259824 26