e4745a1a97
- kvm-qdev-Fix-set_pci_devfn-to-visit-option-only-once.patch [RHEL-43412] - kvm-tests-avocado-hotplug_blk-Fix-addr-in-device_add-com.patch [RHEL-43412] - kvm-qdev-monitor-avoid-QemuOpts-in-QMP-device_add.patch [RHEL-43412] - kvm-vl-use-qmp_device_add-in-qemu_create_cli_devices.patch [RHEL-43412] - kvm-pc-q35-Bump-max_cpus-to-4096-vcpus.patch [RHEL-57668] - kvm-vhost-fail-device-start-if-iotlb-update-fails.patch [RHEL-73005] - kvm-virtio-net-disable-USO-for-all-RHEL9.patch [RHEL-69500] - Resolves: RHEL-43412 (qom-get iothread-vq-mapping is empty on new hotplug disk [rhel-10.0-beta]) - Resolves: RHEL-57668 ([RFE] [HPEMC] [RHEL-10.0] qemu-kvm: support up to 4096 VCPUs) - Resolves: RHEL-73005 (qemu-kvm: vhost: reports error while updating IOTLB entries) - Resolves: RHEL-69500 ([Stable_Guest_ABI][USO][9.6.0-machine-type]From 10.0 to RHEL.9.6.0 the guest with 9.6 machine type only, the guest crashed with - qemu-kvm: Features 0x1c0010130afffa7 unsupported. Allowed features: 0x10179bfffe7)
66 lines
2.6 KiB
Diff
66 lines
2.6 KiB
Diff
From 59fe7329e9f1660a3b26e5147de2df348b1bbaed Mon Sep 17 00:00:00 2001
|
|
From: Stefan Hajnoczi <stefanha@redhat.com>
|
|
Date: Tue, 27 Aug 2024 15:27:51 -0400
|
|
Subject: [PATCH 4/7] vl: use qmp_device_add() in qemu_create_cli_devices()
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
RH-Author: Stefan Hajnoczi <stefanha@redhat.com>
|
|
RH-MergeRequest: 312: qdev-monitor: avoid QemuOpts in QMP device_add
|
|
RH-Jira: RHEL-43412
|
|
RH-Acked-by: Kevin Wolf <kwolf@redhat.com>
|
|
RH-Acked-by: Hanna Czenczek <hreitz@redhat.com>
|
|
RH-Commit: [4/4] b581207df4723f8a278452c92cb1b71a207aabe8 (stefanha/centos-stream-qemu-kvm)
|
|
|
|
qemu_create_cli_devices() should use qmp_device_add() to match the
|
|
behavior of the QMP monitor. A comment explained that libvirt changes
|
|
implementing strict CLI syntax were needed.
|
|
|
|
Peter Krempa <pkrempa@redhat.com> has confirmed that modern libvirt uses
|
|
the same JSON for -device (CLI) and device_add (QMP). Go ahead and use
|
|
qmp_device_add().
|
|
|
|
Cc: Peter Krempa <pkrempa@redhat.com>
|
|
Reviewed-by: Markus Armbruster <armbru@redhat.com>
|
|
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
Message-ID: <20240827192751.948633-3-stefanha@redhat.com>
|
|
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
|
|
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
|
|
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
|
|
(cherry picked from commit 11bf1d6aa06138e93b274e942d6992af63ffc510)
|
|
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
|
|
---
|
|
system/vl.c | 14 ++++----------
|
|
1 file changed, 4 insertions(+), 10 deletions(-)
|
|
|
|
diff --git a/system/vl.c b/system/vl.c
|
|
index 5359231bf5..900d471f5e 100644
|
|
--- a/system/vl.c
|
|
+++ b/system/vl.c
|
|
@@ -2661,17 +2661,11 @@ static void qemu_create_cli_devices(void)
|
|
qemu_opts_foreach(qemu_find_opts("device"),
|
|
device_init_func, NULL, &error_fatal);
|
|
QTAILQ_FOREACH(opt, &device_opts, next) {
|
|
- DeviceState *dev;
|
|
+ QObject *ret_data = NULL;
|
|
+
|
|
loc_push_restore(&opt->loc);
|
|
- /*
|
|
- * TODO Eventually we should call qmp_device_add() here to make sure it
|
|
- * behaves the same, but QMP still has to accept incorrectly typed
|
|
- * options until libvirt is fixed and we want to be strict on the CLI
|
|
- * from the start, so call qdev_device_add_from_qdict() directly for
|
|
- * now.
|
|
- */
|
|
- dev = qdev_device_add_from_qdict(opt->opts, true, &error_fatal);
|
|
- object_unref(OBJECT(dev));
|
|
+ qmp_device_add(opt->opts, &ret_data, &error_fatal);
|
|
+ assert(ret_data == NULL); /* error_fatal aborts */
|
|
loc_pop(&opt->loc);
|
|
}
|
|
rom_reset_order_override();
|
|
--
|
|
2.39.3
|
|
|