[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 8/8] vl: use qmp_device_add() in qemu_create_cli_devices()
From: |
Kevin Wolf |
Subject: |
[PULL 8/8] vl: use qmp_device_add() in qemu_create_cli_devices() |
Date: |
Thu, 14 Nov 2024 17:56:57 +0100 |
From: Stefan Hajnoczi <stefanha@redhat.com>
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>
---
system/vl.c | 14 ++++----------
1 file changed, 4 insertions(+), 10 deletions(-)
diff --git a/system/vl.c b/system/vl.c
index d217b3d64d..e3f7d3a156 100644
--- a/system/vl.c
+++ b/system/vl.c
@@ -2653,17 +2653,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.47.0
- [PULL 0/8] Block layer patches, Kevin Wolf, 2024/11/14
- [PULL 1/8] migration: Check current_migration in migration_is_running(), Kevin Wolf, 2024/11/14
- [PULL 2/8] parallels: fix possible int overflow, Kevin Wolf, 2024/11/14
- [PULL 3/8] iotests: reflow ReproducibleTestRunner arguments, Kevin Wolf, 2024/11/14
- [PULL 6/8] python: silence pylint raising-non-exception error, Kevin Wolf, 2024/11/14
- [PULL 4/8] iotests: correct resultclass type in ReproducibleTestRunner, Kevin Wolf, 2024/11/14
- [PULL 8/8] vl: use qmp_device_add() in qemu_create_cli_devices(),
Kevin Wolf <=
- [PULL 5/8] python: disable too-many-positional-arguments warning, Kevin Wolf, 2024/11/14
- [PULL 7/8] qdev-monitor: avoid QemuOpts in QMP device_add, Kevin Wolf, 2024/11/14
- Re: [PULL 0/8] Block layer patches, Peter Maydell, 2024/11/15