|
|
0a122b |
From 73e7e8ffd938923f5e30132dd90003ebc9e423dc Mon Sep 17 00:00:00 2001
|
|
|
0a122b |
Message-Id: <73e7e8ffd938923f5e30132dd90003ebc9e423dc.1387276076.git.minovotn@redhat.com>
|
|
|
0a122b |
In-Reply-To: <e610718166120379517e80d1a7aa12d60294209b.1387276076.git.minovotn@redhat.com>
|
|
|
0a122b |
References: <e610718166120379517e80d1a7aa12d60294209b.1387276076.git.minovotn@redhat.com>
|
|
|
0a122b |
From: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
0a122b |
Date: Mon, 9 Dec 2013 13:57:35 +0100
|
|
|
0a122b |
Subject: [PATCH 05/16] fix intel-hda live migration
|
|
|
0a122b |
|
|
|
0a122b |
RH-Author: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
0a122b |
Message-id: <1386597455-25593-2-git-send-email-kraxel@redhat.com>
|
|
|
0a122b |
Patchwork-id: 56035
|
|
|
0a122b |
O-Subject: [RHEL-7 qemu-kvm PATCH 1/1] fix intel-hda live migration
|
|
|
0a122b |
Bugzilla: 1036537
|
|
|
0a122b |
RH-Acked-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Amos Kong <akong@redhat.com>
|
|
|
0a122b |
RH-Acked-by: Orit Wasserman <owasserm@redhat.com>
|
|
|
0a122b |
|
|
|
0a122b |
RHEL-6 intel-hda emulation doesn't support MSI, so we have
|
|
|
0a122b |
to turn it off for thel RHEL-6 machine types in RHEL-7.
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
hw/i386/pc_piix.c | 4 ++++
|
|
|
0a122b |
1 file changed, 4 insertions(+)
|
|
|
0a122b |
|
|
|
0a122b |
Signed-off-by: Michal Novotny <minovotn@redhat.com>
|
|
|
0a122b |
---
|
|
|
0a122b |
hw/i386/pc_piix.c | 4 ++++
|
|
|
0a122b |
1 file changed, 4 insertions(+)
|
|
|
0a122b |
|
|
|
0a122b |
diff --git a/hw/i386/pc_piix.c b/hw/i386/pc_piix.c
|
|
|
0a122b |
index e6771a9..8c3f2d6 100644
|
|
|
0a122b |
--- a/hw/i386/pc_piix.c
|
|
|
0a122b |
+++ b/hw/i386/pc_piix.c
|
|
|
0a122b |
@@ -811,6 +811,10 @@ static QEMUMachine pc_machine_rhel700 = {
|
|
|
0a122b |
.property = "use_broken_id",\
|
|
|
0a122b |
.value = stringify(1),\
|
|
|
0a122b |
},{\
|
|
|
0a122b |
+ .driver = "intel-hda",\
|
|
|
0a122b |
+ .property = "msi",\
|
|
|
0a122b |
+ .value = stringify(0),\
|
|
|
0a122b |
+ },{\
|
|
|
0a122b |
.driver = "qemu32-" TYPE_X86_CPU,\
|
|
|
0a122b |
.property = "xlevel",\
|
|
|
0a122b |
.value = stringify(0),\
|
|
|
0a122b |
--
|
|
|
0a122b |
1.7.11.7
|
|
|
0a122b |
|