0544bace3c
- kvm-Disable-VXHS-support.patch [bz#1714937] - kvm-aarch64-Add-virt-rhel8.1.0-machine-type-for-ARM.patch [bz#1713735] - kvm-aarch64-Allow-ARM-VIRT-iommu-option-in-RHEL8.1-machi.patch [bz#1713735] - kvm-usb-call-reset-handler-before-updating-state.patch [bz#1713679] - kvm-usb-host-skip-reset-for-untouched-devices.patch [bz#1713679] - kvm-usb-host-avoid-libusb_set_configuration-calls.patch [bz#1713679] - kvm-aarch64-Compile-out-IOH3420.patch [bz#1627283] - kvm-vl-Fix-drive-blockdev-persistent-reservation-managem.patch [bz#1714891] - kvm-vl-Document-why-objects-are-delayed.patch [bz#1714891] - Resolves: bz#1627283 (Compile out IOH3420 on aarch64) - Resolves: bz#1713679 (Detached device when trying to upgrade USB device firmware when in doing USB Passthrough via QEMU) - Resolves: bz#1713735 (Allow ARM VIRT iommu option in RHEL8.1 machine) - Resolves: bz#1714891 (Guest with persistent reservation manager for a disk fails to start) - Resolves: bz#1714937 (Disable VXHS support)
57 lines
2.0 KiB
Diff
57 lines
2.0 KiB
Diff
From c3e39ef14e99f903b95fa051936f40ebd6c35484 Mon Sep 17 00:00:00 2001
|
|
From: Auger Eric <eric.auger@redhat.com>
|
|
Date: Mon, 3 Jun 2019 19:17:39 +0100
|
|
Subject: [PATCH 2/9] aarch64: Add virt-rhel8.1.0 machine type for ARM
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
RH-Author: Auger Eric <eric.auger@redhat.com>
|
|
Message-id: <20190603191740.32665-2-eric.auger@redhat.com>
|
|
Patchwork-id: 88461
|
|
O-Subject: [RHEL-AV-8.1.0 qemu-kvm PATCH 1/2] aarch64: Add virt-rhel8.1.0 machine type for ARM
|
|
Bugzilla: 1713735
|
|
RH-Acked-by: Andrew Jones <drjones@redhat.com>
|
|
RH-Acked-by: Laszlo Ersek <lersek@redhat.com>
|
|
RH-Acked-by: Philippe Mathieu-Daudé <philmd@redhat.com>
|
|
|
|
This patch adds a new machine type, virt-rhel8.1.0, for QEMU rhel-av.
|
|
This machine type is based off 4.0 with the exception that it removes
|
|
support for dynamic sysbus devices: VFIO_CALXEDA_XGMAC, VFIO_AMD_XGBE, and
|
|
RAMFB_DEVICE because downstream RHEL doesn't support these devices. IOMMU
|
|
instantiation still is disabled but will be enabled in subsequent patches.
|
|
|
|
Signed-off-by: Eric Auger <eric.auger@redhat.com>
|
|
Signed-off-by: Danilo C. L. de Paula <ddepaula@redhat.com>
|
|
---
|
|
hw/arm/virt.c | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/hw/arm/virt.c b/hw/arm/virt.c
|
|
index 5602d9f..9316a8d 100644
|
|
--- a/hw/arm/virt.c
|
|
+++ b/hw/arm/virt.c
|
|
@@ -2158,7 +2158,7 @@ static void rhel_machine_init(void)
|
|
}
|
|
type_init(rhel_machine_init);
|
|
|
|
-static void rhel800_virt_instance_init(Object *obj)
|
|
+static void rhel810_virt_instance_init(Object *obj)
|
|
{
|
|
VirtMachineState *vms = VIRT_MACHINE(obj);
|
|
VirtMachineClass *vmc = VIRT_MACHINE_GET_CLASS(vms);
|
|
@@ -2204,8 +2204,8 @@ static void rhel800_virt_instance_init(Object *obj)
|
|
vms->irqmap=a15irqmap;
|
|
}
|
|
|
|
-static void rhel800_virt_options(MachineClass *mc)
|
|
+static void rhel810_virt_options(MachineClass *mc)
|
|
{
|
|
compat_props_add(mc->compat_props, arm_rhel_compat, arm_rhel_compat_len);
|
|
}
|
|
-DEFINE_RHEL_MACHINE_AS_LATEST(8, 0, 0)
|
|
+DEFINE_RHEL_MACHINE_AS_LATEST(8, 1, 0)
|
|
--
|
|
1.8.3.1
|
|
|