Commit f10977073c for qemu.org

commit f10977073cb4ac58fce7274893e7129e7f64dcae
Author: Zhang Chen <zhangckid@gmail.com>
Date:   Mon Sep 7 14:37:12 2026 +0800

    qapi/misc: Fix missed query-iothreads items

    The example is incomplete: it misses members @poll-max-ns, @poll-grow,
    @poll-shrink, @aio-max-batch.  Messed up in commit 5fc00480ab1
    (monitor: add poll-* properties into query-iothreads result) and
    commit 1793ad0247c (iothread: add aio-max-batch parameter).

    CC: qemu-stable@nongnu.org
    Reviewed-by: Markus Armbruster <armbru@redhat.com>
    Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
    Signed-off-by: Zhang Chen <zhangckid@gmail.com>
    Reviewed-by: Michael Tokarev <mjt@tls.msk.ru>
    Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>

diff --git a/qapi/misc.json b/qapi/misc.json
index a21ba61b96..baa50cc844 100644
--- a/qapi/misc.json
+++ b/qapi/misc.json
@@ -123,11 +123,19 @@
 #     <- { "return": [
 #              {
 #                 "id":"iothread0",
-#                 "thread-id":3134
+#                 "thread-id":3134,
+#                 "poll-max-ns":32768,
+#                 "poll-grow":0,
+#                 "poll-shrink":0,
+#                 "aio-max-batch":0
 #              },
 #              {
 #                 "id":"iothread1",
-#                 "thread-id":3135
+#                 "thread-id":3135,
+#                 "poll-max-ns":32768,
+#                 "poll-grow":0,
+#                 "poll-shrink":0,
+#                 "aio-max-batch":0
 #              }
 #           ]
 #        }