From: Markus Armbruster <armbru@redhat.com>
To: Stefano Garzarella <sgarzare@redhat.com>
Cc: qemu-devel@nongnu.org, "Eric Blake" <eblake@redhat.com>,
"Eduardo Habkost" <eduardo@habkost.net>,
"Daniel P. Berrangé" <berrange@redhat.com>,
"Paolo Bonzini" <pbonzini@redhat.com>
Subject: Re: [PATCH] qapi/qom: make some QOM properties depend on the build settings
Date: Sat, 20 Jul 2024 08:37:40 +0200 [thread overview]
Message-ID: <87cyn86023.fsf@pond.sub.org> (raw)
In-Reply-To: <20240604135931.311709-1-sgarzare@redhat.com> (Stefano Garzarella's message of "Tue, 4 Jun 2024 15:59:31 +0200")
I dropped this on the floor. Sorry for the delay!
Stefano Garzarella <sgarzare@redhat.com> writes:
> Some QOM properties are associated with ObjectTypes that already
> depend on CONFIG_* switches. So to avoid generating dead code,
> let's also make the definition of those properties dependent on
> the corresponding CONFIG_*.
>
> Suggested-by: Markus Armbruster <armbru@redhat.com>
> Signed-off-by: Stefano Garzarella <sgarzare@redhat.com>
> ---
> qapi/qom.json | 21 ++++++++++++++-------
> 1 file changed, 14 insertions(+), 7 deletions(-)
>
> diff --git a/qapi/qom.json b/qapi/qom.json
> index 38dde6d785..ae93313a60 100644
> --- a/qapi/qom.json
> +++ b/qapi/qom.json
> @@ -222,7 +222,8 @@
> ##
> { 'struct': 'CanHostSocketcanProperties',
> 'data': { 'if': 'str',
> - 'canbus': 'str' } }
> + 'canbus': 'str' },
> + 'if': 'CONFIG_LINUX' }
>
> ##
> # @ColoCompareProperties:
> @@ -305,7 +306,8 @@
> ##
> { 'struct': 'CryptodevVhostUserProperties',
> 'base': 'CryptodevBackendProperties',
> - 'data': { 'chardev': 'str' } }
> + 'data': { 'chardev': 'str' },
> + 'if': 'CONFIG_VHOST_CRYPTO' }
>
> ##
> # @DBusVMStateProperties:
> @@ -514,7 +516,8 @@
> 'data': { 'evdev': 'str',
> '*grab_all': 'bool',
> '*repeat': 'bool',
> - '*grab-toggle': 'GrabToggleKeys' } }
> + '*grab-toggle': 'GrabToggleKeys' },
> + 'if': 'CONFIG_LINUX' }
>
> ##
> # @EventLoopBaseProperties:
> @@ -719,7 +722,8 @@
> 'base': 'MemoryBackendProperties',
> 'data': { '*hugetlb': 'bool',
> '*hugetlbsize': 'size',
> - '*seal': 'bool' } }
> + '*seal': 'bool' },
> + 'if': 'CONFIG_LINUX' }
>
> ##
> # @MemoryBackendEpcProperties:
> @@ -736,7 +740,8 @@
> ##
> { 'struct': 'MemoryBackendEpcProperties',
> 'base': 'MemoryBackendProperties',
> - 'data': {} }
> + 'data': {},
> + 'if': 'CONFIG_LINUX' }
>
> ##
> # @PrManagerHelperProperties:
> @@ -749,7 +754,8 @@
> # Since: 2.11
> ##
> { 'struct': 'PrManagerHelperProperties',
> - 'data': { 'path': 'str' } }
> + 'data': { 'path': 'str' },
> + 'if': 'CONFIG_LINUX' }
>
> ##
> # @QtestProperties:
> @@ -872,7 +878,8 @@
> ##
> { 'struct': 'RngRandomProperties',
> 'base': 'RngProperties',
> - 'data': { '*filename': 'str' } }
> + 'data': { '*filename': 'str' },
> + 'if': 'CONFIG_POSIX' }
>
> ##
> # @SevGuestProperties:
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Squashing in
diff --git a/qapi/crypto.json b/qapi/crypto.json
index e102be337b..9b216cee8e 100644
--- a/qapi/crypto.json
+++ b/qapi/crypto.json
@@ -488,7 +488,8 @@
##
{ 'struct': 'SecretKeyringProperties',
'base': 'SecretCommonProperties',
- 'data': { 'serial': 'int32' } }
+ 'data': { 'serial': 'int32' },
+ 'if': 'CONFIG_SECRET_KEYRING' }
##
# @TlsCredsProperties:
Queued, thanks!
prev parent reply other threads:[~2024-07-20 6:38 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-04 13:59 [PATCH] qapi/qom: make some QOM properties depend on the build settings Stefano Garzarella
2024-06-04 15:04 ` Philippe Mathieu-Daudé
2024-06-25 8:21 ` Stefano Garzarella
2024-07-20 6:37 ` Markus Armbruster [this message]
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=87cyn86023.fsf@pond.sub.org \
--to=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=eblake@redhat.com \
--cc=eduardo@habkost.net \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=sgarzare@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.