From: Markus Armbruster <armbru@redhat.com>
To: qemu-devel@nongnu.org
Cc: stefanha@redhat.com, "Daniel P . Berrangé" <berrange@redhat.com>
Subject: [PULL v2 02/28] qapi: Tidy up whitespace in generated code
Date: Wed, 26 Oct 2022 20:35:06 +0200 [thread overview]
Message-ID: <20221026183532.487708-3-armbru@redhat.com> (raw)
In-Reply-To: <20221026183532.487708-1-armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Message-Id: <20221018062849.3420573-3-armbru@redhat.com>
---
docs/devel/qapi-code-gen.rst | 1 -
scripts/qapi/commands.py | 7 +++----
scripts/qapi/events.py | 1 -
3 files changed, 3 insertions(+), 6 deletions(-)
diff --git a/docs/devel/qapi-code-gen.rst b/docs/devel/qapi-code-gen.rst
index 997313fce7..b56ea4546d 100644
--- a/docs/devel/qapi-code-gen.rst
+++ b/docs/devel/qapi-code-gen.rst
@@ -1664,7 +1664,6 @@ Example::
$ cat qapi-generated/example-qapi-commands.c
[Uninteresting stuff omitted...]
-
static void qmp_marshal_output_UserDefOne(UserDefOne *ret_in,
QObject **ret_out, Error **errp)
{
diff --git a/scripts/qapi/commands.py b/scripts/qapi/commands.py
index 38ca38a7b9..cf68aaf0bf 100644
--- a/scripts/qapi/commands.py
+++ b/scripts/qapi/commands.py
@@ -83,7 +83,7 @@ def gen_call(name: str,
trace_qmp_enter_%(name)s(req_json->str);
}
- ''',
+''',
upper=upper, name=name)
ret += mcgen('''
@@ -124,13 +124,13 @@ def gen_call(name: str,
trace_qmp_exit_%(name)s(ret_json->str, true);
}
- ''',
+''',
upper=upper, name=name)
else:
ret += mcgen('''
trace_qmp_exit_%(name)s("{}", true);
- ''',
+''',
name=name)
return ret
@@ -316,7 +316,6 @@ def _begin_user_module(self, name: str) -> None:
#include "qapi/error.h"
#include "%(visit)s.h"
#include "%(commands)s.h"
-
''',
commands=commands, visit=visit))
diff --git a/scripts/qapi/events.py b/scripts/qapi/events.py
index 27b44c49f5..e762d53d19 100644
--- a/scripts/qapi/events.py
+++ b/scripts/qapi/events.py
@@ -196,7 +196,6 @@ def _begin_user_module(self, name: str) -> None:
#include "qapi/error.h"
#include "qapi/qmp/qdict.h"
#include "qapi/qmp-event.h"
-
''',
events=events, visit=visit,
prefix=self._prefix))
--
2.37.3
next prev parent reply other threads:[~2022-10-26 18:52 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-26 18:35 [PULL v2 00/28] QAPI patches patches for 2022-10-25 Markus Armbruster
2022-10-26 18:35 ` [PULL v2 01/28] docs/devel/qapi-code-gen: Update example to match current code Markus Armbruster
2022-10-26 18:35 ` Markus Armbruster [this message]
2022-10-26 18:35 ` [PULL v2 03/28] docs/devel/qapi-code-gen: Extend example for next commit's change Markus Armbruster
2022-10-26 18:35 ` [PULL v2 04/28] qapi: Start to elide redundant has_FOO in generated C Markus Armbruster
2022-10-26 18:35 ` [PULL v2 05/28] qapi tests: Elide " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 06/28] qapi acpi: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 07/28] qapi audio: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 08/28] qapi block: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 09/28] qapi chardev: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 10/28] qapi crypto: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 11/28] qapi dump: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 12/28] qapi job: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 13/28] qapi machine: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 14/28] qapi migration: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 15/28] qapi misc: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 16/28] qapi net: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 17/28] qapi pci: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 18/28] qapi qdev qom: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 19/28] qapi replay: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 20/28] qapi rocker: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 21/28] qapi run-state: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 22/28] qapi stats: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 23/28] qapi tpm: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 24/28] qapi transaction: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 25/28] qapi ui: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 26/28] qapi virtio: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 27/28] qapi qga: " Markus Armbruster
2022-10-26 18:35 ` [PULL v2 28/28] qapi: Drop temporary logic to support conversion step by step Markus Armbruster
2022-10-30 19:04 ` [PULL v2 00/28] QAPI patches patches for 2022-10-25 Stefan Hajnoczi
2022-10-30 19:06 ` Stefan Hajnoczi
2022-11-03 14:02 ` Markus Armbruster
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221026183532.487708-3-armbru@redhat.com \
--to=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).