qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 15/36] monitor: register gen:false commands manually


From: marcandre . lureau
Subject: [Qemu-devel] [PATCH 15/36] monitor: register gen:false commands manually
Date: Fri, 25 Sep 2015 16:03:43 +0200

From: Marc-André Lureau <address@hidden>

Since some commands are using 'gen': false, they are not registered
automatically by the generator. Register manually instead.

Signed-off-by: Marc-André Lureau <address@hidden>
---
 monitor.c | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/monitor.c b/monitor.c
index 410c3a5..a979924 100644
--- a/monitor.c
+++ b/monitor.c
@@ -945,6 +945,16 @@ static void qmp_query_qmp_schema(QDict *qdict, QObject 
**ret_data,
     *ret_data = qobject_from_json(qmp_schema_json);
 }
 
+static void qmp_init_marshal(void)
+{
+    qmp_register_command("query-qmp-schema", qmp_query_qmp_schema,
+                         QCO_NO_OPTIONS);
+    qmp_register_command("device_add", qmp_device_add,
+                         QCO_NO_OPTIONS);
+}
+
+qapi_init(qmp_init_marshal);
+
 /* set the current CPU defined by the user */
 int monitor_set_cpu(int cpu_index)
 {
-- 
2.4.3




reply via email to

[Prev in Thread] Current Thread [Next in Thread]