- sw_64: Added sw64 architecture related updates - virtio-crypto: verify src&dst buffer length for sym request - vhost-vdpa: do not cleanup the vdpa/vhost-net structures if peer nic is present - qga: Fix suspend on Linux guests without systemd - tests: vhost-user-test: release mutex on protocol violation - qapi: support updating expected test output via make - block: Fix misleading hexadecimal format - block/rbd: fix write zeroes with growing images - block/nbd.c: Fixed IO request coroutine not being wakeup when kill NBD server - block/nfs: Fix 32-bit Windows build - qapi/qdev: Tidy up device_add documentation - hw/xen/xen_pt: fix uninitialized variable - migration/ram: Fix error handling in ram_write_tracking_start() - docs/about/build-platforms: Refine the distro support policy - xen-block: Avoid leaks on new error path - QGA VSS: Add wrapper to send log to debugger and stderr - chardev/char-socket: set s->listener = NULL in char_socket_finalize - qapi/block: Tidy up block-latency-histogram-set documentation - disas/riscv Fix ctzw disassemble - vfio: Fix vfio_get_dev_region() trace event - migration/ram: Fix populate_read_range() - Check and report for incomplete 'global' option format Signed-off-by: Jiabo Feng <fengjiabo1@huawei.com>
67 lines
2.2 KiB
Diff
67 lines
2.2 KiB
Diff
From 32b601ed22d154e9423911b27541b35aa12d18bb Mon Sep 17 00:00:00 2001
|
||
From: Markus Armbruster <armbru@redhat.com>
|
||
Date: Thu, 20 Jul 2023 09:16:06 +0200
|
||
Subject: [PATCH] qapi/qdev: Tidy up device_add documentation mainline
|
||
inclusion commit a9c72efd6d6d62ac84ae57ca55606747e04e8ba7 category: bugfix
|
||
MIME-Version: 1.0
|
||
Content-Type: text/plain; charset=UTF-8
|
||
Content-Transfer-Encoding: 8bit
|
||
|
||
-------------------------------------------------------------------
|
||
|
||
The notes section comes out like this:
|
||
|
||
Notes
|
||
|
||
Additional arguments depend on the type.
|
||
|
||
1. For detailed information about this command, please refer to the
|
||
‘docs/qdev-device-use.txt’ file.
|
||
|
||
2. It’s possible to list device properties by running QEMU with the
|
||
“-device DEVICE,help” command-line argument, where DEVICE is the
|
||
device’s name
|
||
|
||
The first item isn't numbered. Fix that:
|
||
|
||
1. Additional arguments depend on the type.
|
||
|
||
2. For detailed information about this command, please refer to the
|
||
‘docs/qdev-device-use.txt’ file.
|
||
|
||
3. It’s possible to list device properties by running QEMU with the
|
||
“-device DEVICE,help” command-line argument, where DEVICE is the
|
||
device’s name
|
||
|
||
Signed-off-by: Markus Armbruster <armbru@redhat.com>
|
||
Message-ID: <20230720071610.1096458-4-armbru@redhat.com>
|
||
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
|
||
Signed-off-by: zhujun2 <zhujun2_yewu@cmss.chinamobile.com>
|
||
---
|
||
qapi/qdev.json | 6 +++---
|
||
1 file changed, 3 insertions(+), 3 deletions(-)
|
||
|
||
diff --git a/qapi/qdev.json b/qapi/qdev.json
|
||
index 69656b14df..ca96a0c6eb 100644
|
||
--- a/qapi/qdev.json
|
||
+++ b/qapi/qdev.json
|
||
@@ -47,12 +47,12 @@
|
||
#
|
||
# Notes:
|
||
#
|
||
-# Additional arguments depend on the type.
|
||
+# 1. Additional arguments depend on the type.
|
||
#
|
||
-# 1. For detailed information about this command, please refer to the
|
||
+# 2. For detailed information about this command, please refer to the
|
||
# 'docs/qdev-device-use.txt' file.
|
||
#
|
||
-# 2. It's possible to list device properties by running QEMU with the
|
||
+# 3. It's possible to list device properties by running QEMU with the
|
||
# "-device DEVICE,help" command-line argument, where DEVICE is the
|
||
# device's name
|
||
#
|
||
--
|
||
2.41.0.windows.1
|
||
|