[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 19/29] scripts: adapt to new import path for qobject data type he
|
From: |
Daniel P . Berrangé |
|
Subject: |
[PATCH 19/29] scripts: adapt to new import path for qobject data type headers |
|
Date: |
Mon, 8 Jan 2024 18:23:55 +0000 |
The qobject data type headers have moved from qapi/qmp/ to
qobject/.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
scripts/qapi/commands.py | 6 +++---
scripts/qapi/events.py | 2 +-
scripts/qapi/introspect.py | 2 +-
scripts/qapi/visit.py | 2 +-
4 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/scripts/qapi/commands.py b/scripts/qapi/commands.py
index d1fdf4182c..c2b1eec144 100644
--- a/scripts/qapi/commands.py
+++ b/scripts/qapi/commands.py
@@ -320,7 +320,7 @@ def _begin_user_module(self, name: str) -> None:
#include "qemu/osdep.h"
#include "qapi/compat-policy.h"
#include "qapi/visitor.h"
-#include "qapi/qmp/qdict.h"
+#include "qobject/qdict.h"
#include "qapi/dealloc-visitor.h"
#include "qapi/error.h"
#include "%(visit)s.h"
@@ -330,7 +330,7 @@ def _begin_user_module(self, name: str) -> None:
if self._gen_tracing and commands != 'qapi-commands':
self._genc.add(mcgen('''
-#include "qapi/qmp/qjson.h"
+#include "qobject/qjson.h"
#include "trace/trace-%(nm)s_trace_events.h"
''',
nm=c_name(commands, protect=False)))
@@ -346,7 +346,7 @@ def _begin_user_module(self, name: str) -> None:
def visit_begin(self, schema: QAPISchema) -> None:
self._add_module('./init', ' * QAPI Commands initialization')
self._genh.add(mcgen('''
-#include "qapi/qmp/dispatch.h"
+#include "qapi/qmp-registry.h"
void %(c_prefix)sqmp_init_marshal(QmpCommandList *cmds);
''',
diff --git a/scripts/qapi/events.py b/scripts/qapi/events.py
index 3cf01e96b6..10044ba4b0 100644
--- a/scripts/qapi/events.py
+++ b/scripts/qapi/events.py
@@ -194,7 +194,7 @@ def _begin_user_module(self, name: str) -> None:
#include "%(visit)s.h"
#include "qapi/compat-policy.h"
#include "qapi/error.h"
-#include "qapi/qmp/qdict.h"
+#include "qobject/qdict.h"
#include "qapi/qmp-event.h"
''',
events=events, visit=visit,
diff --git a/scripts/qapi/introspect.py b/scripts/qapi/introspect.py
index 67c7d89aae..bcd2402d82 100644
--- a/scripts/qapi/introspect.py
+++ b/scripts/qapi/introspect.py
@@ -196,7 +196,7 @@ def visit_end(self) -> None:
# generate C
name = c_name(self._prefix, protect=False) + 'qmp_schema_qlit'
self._genh.add(mcgen('''
-#include "qapi/qmp/qlit.h"
+#include "qobject/qlit.h"
extern const QLitObject %(c_name)s;
''',
diff --git a/scripts/qapi/visit.py b/scripts/qapi/visit.py
index c56ea4d724..ec0638acdf 100644
--- a/scripts/qapi/visit.py
+++ b/scripts/qapi/visit.py
@@ -356,7 +356,7 @@ def _begin_user_module(self, name: str) -> None:
self._genc.preamble_add(mcgen('''
#include "qemu/osdep.h"
#include "qapi/error.h"
-#include "qapi/qmp/qerror.h"
+#include "qobject/qerror.h"
#include "%(visit)s.h"
''',
visit=visit))
--
2.43.0
- [PATCH 06/29] chardev: adapt to new import path for qobject data type headers, (continued)
- [PATCH 06/29] chardev: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 10/29] include: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 08/29] dump: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 09/29] hw: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 11/29] migration: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 13/29] net: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 14/29] qapi: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 20/29] scsi: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 12/29] monitor: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 17/29] qom: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 19/29] scripts: adapt to new import path for qobject data type headers,
Daniel P . Berrangé <=
- [PATCH 18/29] replay: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 16/29] qobject: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 22/29] stubs: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 23/29] system: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 21/29] stats: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 24/29] target: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 25/29] tests: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 26/29] trace: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 27/29] ui: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08
- [PATCH 15/29] qga: adapt to new import path for qobject data type headers, Daniel P . Berrangé, 2024/01/08