From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Stefan Berger <stefanb@linux.ibm.com>
Cc: Markus Armbruster <armbru@redhat.com>,
qemu-devel@nongnu.org, michael.roth@amd.com, jsnow@redhat.com,
eblake@redhat.com, Stefan Berger <stefanb@linux.vnet.ibm.com>
Subject: Re: [PATCH v2 23/28] qapi tpm: Elide redundant has_FOO in generated C
Date: Tue, 18 Oct 2022 14:23:38 +0200 [thread overview]
Message-ID: <CAPMQPEJvED3uYnJHcan7F8G-SdHEo+HTRb0sOx4CVJ-29m5gqw@mail.gmail.com> (raw)
In-Reply-To: <bdee0038-a29f-e517-0e12-be7a141f37b8@linux.ibm.com>
On Tue, 18 Oct 2022 at 14:12, Stefan Berger <stefanb@linux.ibm.com> wrote:
> On 10/18/22 08:01, Philippe Mathieu-Daudé wrote:
> > On 18/10/22 08:28, Markus Armbruster wrote:
> >> The has_FOO for pointer-valued FOO are redundant, except for arrays.
> >> They are also a nuisance to work with. Recent commit "qapi: Start to
> >> elide redundant has_FOO in generated C" provided the means to elide
> >> them step by step. This is the step for qapi/tpm.json.
> >>
> >> Said commit explains the transformation in more detail. The invariant
> >> violations mentioned there do not occur here.
> >>
> >> Cc: Stefan Berger <stefanb@linux.vnet.ibm.com>
> >> Signed-off-by: Markus Armbruster <armbru@redhat.com>
> >> Reviewed-by: Stefan Berger <stefanb@linux.ibm.com>
> >> ---
> >> backends/tpm/tpm_passthrough.c | 2 --
> >> monitor/hmp-cmds.c | 8 ++++----
> >> scripts/qapi/schema.py | 1 -
> >> 3 files changed, 4 insertions(+), 7 deletions(-)
> >
> >> diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c
> >> index 8f8bd93df1..378f5b083d 100644
> >> --- a/monitor/hmp-cmds.c
> >> +++ b/monitor/hmp-cmds.c
> >> @@ -885,10 +885,10 @@ void hmp_info_tpm(Monitor *mon, const QDict *qdict)
> >> case TPM_TYPE_PASSTHROUGH:
> >> tpo = ti->options->u.passthrough.data;
> >> monitor_printf(mon, "%s%s%s%s",
> >> - tpo->has_path ? ",path=" : "",
> >> - tpo->has_path ? tpo->path : "",
> >> - tpo->has_cancel_path ? ",cancel-path=" : "",
> >> - tpo->has_cancel_path ? tpo->cancel_path : "");
> >> + tpo->path ? ",path=" : "",
> >> + tpo->path ?: "",
> >> + tpo->cancel_path ? ",cancel-path=" : "",
> >> + tpo->cancel_path ?: "");
> >
> > Or simply:
> >
> > monitor_printf(mon, "%s%s",
> > tpo->path ? ",path=" : "",
> > tpo->cancel_path ? ",cancel-path=" : "");
> >
>
> this would never print any path...
I need more coffee... =) Trying to KISS:
if (tpo->path) {
monitor_printf(mon, ",path=%s", tpo->path);
}
if (tpo->cancel_path) {
monitor_printf(mon, ",cancel-path=%s", tpo->cancel_path);
}
next prev parent reply other threads:[~2022-10-18 12:49 UTC|newest]
Thread overview: 48+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-10-18 6:28 [PATCH v2 00/28] qapi: Elide redundant has_FOO in generated C Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 01/28] docs/devel/qapi-code-gen: Update example to match current code Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 02/28] qapi: Tidy up whitespace in generated code Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 03/28] docs/devel/qapi-code-gen: Extend example for next commit's change Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 04/28] qapi: Start to elide redundant has_FOO in generated C Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 05/28] qapi tests: Elide " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 06/28] qapi acpi: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 07/28] qapi audio: " Markus Armbruster
2022-10-18 12:15 ` Philippe Mathieu-Daudé
2022-10-18 6:28 ` [PATCH v2 08/28] qapi block: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 09/28] qapi char: " Markus Armbruster
2022-10-18 12:14 ` Philippe Mathieu-Daudé
2022-10-18 12:55 ` Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 10/28] qapi crypto: " Markus Armbruster
2022-10-18 11:57 ` Philippe Mathieu-Daudé
2022-10-18 6:28 ` [PATCH v2 11/28] qapi dump: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 12/28] qapi job: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 13/28] qapi machine: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 14/28] qapi migration: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 15/28] qapi misc: " Markus Armbruster
2022-10-18 10:32 ` Dr. David Alan Gilbert
2022-10-18 11:10 ` Markus Armbruster
2022-10-18 11:17 ` Dr. David Alan Gilbert
2022-10-18 13:01 ` Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 16/28] qapi net: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 17/28] qapi pci: " Markus Armbruster
2022-10-18 12:12 ` Philippe Mathieu-Daudé
2022-10-18 6:28 ` [PATCH v2 18/28] qapi qdev qom: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 19/28] qapi replay: " Markus Armbruster
2022-10-18 12:11 ` Philippe Mathieu-Daudé
2022-10-18 6:28 ` [PATCH v2 20/28] qapi rocker: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 21/28] qapi run-state: " Markus Armbruster
2022-10-18 12:11 ` Philippe Mathieu-Daudé
2022-10-18 13:04 ` Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 22/28] qapi stats: " Markus Armbruster
2022-10-18 12:02 ` Philippe Mathieu-Daudé
2022-10-18 6:28 ` [PATCH v2 23/28] qapi tpm: " Markus Armbruster
2022-10-18 12:01 ` Philippe Mathieu-Daudé
2022-10-18 12:12 ` Stefan Berger
2022-10-18 12:23 ` Philippe Mathieu-Daudé [this message]
2022-10-18 13:06 ` Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 24/28] qapi transaction: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 25/28] qapi ui: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 26/28] qapi virtio: " Markus Armbruster
2022-10-18 12:04 ` Philippe Mathieu-Daudé
2022-10-18 6:28 ` [PATCH v2 27/28] qapi qga: " Markus Armbruster
2022-10-18 6:28 ` [PATCH v2 28/28] qapi: Drop temporary logic to support conversion step by step Markus Armbruster
2022-10-18 12:03 ` Philippe Mathieu-Daudé
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=CAPMQPEJvED3uYnJHcan7F8G-SdHEo+HTRb0sOx4CVJ-29m5gqw@mail.gmail.com \
--to=philmd@linaro.org \
--cc=armbru@redhat.com \
--cc=eblake@redhat.com \
--cc=jsnow@redhat.com \
--cc=michael.roth@amd.com \
--cc=qemu-devel@nongnu.org \
--cc=stefanb@linux.ibm.com \
--cc=stefanb@linux.vnet.ibm.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).