[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH] xive: Make some device types not user creatable
From: |
Markus Armbruster |
Subject: |
Re: [PATCH] xive: Make some device types not user creatable |
Date: |
Mon, 07 Oct 2019 11:02:26 +0200 |
User-agent: |
Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux) |
Greg Kurz <address@hidden> writes:
> Some device types of the XIVE model are exposed to the QEMU command
> line:
>
> $ ppc64-softmmu/qemu-system-ppc64 -device help | grep xive
> name "xive-end-source", desc "XIVE END Source"
> name "xive-source", desc "XIVE Interrupt Source"
> name "xive-tctx", desc "XIVE Interrupt Thread Context"
>
> These are internal devices that shouldn't be instantiable by the
> user. By the way, they can't be because their respective realize
> functions expect link properties that can't be set from the command
> line:
>
> qemu-system-ppc64: -device xive-source: required link 'xive' not found:
> Property '.xive' not found
> qemu-system-ppc64: -device xive-end-source: required link 'xive' not found:
> Property '.xive' not found
> qemu-system-ppc64: -device xive-tctx: required link 'cpu' not found:
> Property '.cpu' not found
>
> Hide them by setting dc->user_creatable to false in their respective
> class init functions.
>
> Signed-off-by: Greg Kurz <address@hidden>
> ---
> hw/intc/xive.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/hw/intc/xive.c b/hw/intc/xive.c
> index 29df06df1136..6c54a35fd4bb 100644
> --- a/hw/intc/xive.c
> +++ b/hw/intc/xive.c
> @@ -670,6 +670,7 @@ static void xive_tctx_class_init(ObjectClass *klass, void
> *data)
> dc->realize = xive_tctx_realize;
> dc->unrealize = xive_tctx_unrealize;
> dc->vmsd = &vmstate_xive_tctx;
> + dc->user_creatable = false;
> }
>
> static const TypeInfo xive_tctx_info = {
> @@ -1118,6 +1119,7 @@ static void xive_source_class_init(ObjectClass *klass,
> void *data)
> dc->props = xive_source_properties;
> dc->realize = xive_source_realize;
> dc->vmsd = &vmstate_xive_source;
> + dc->user_creatable = false;
> }
>
> static const TypeInfo xive_source_info = {
> @@ -1853,6 +1855,7 @@ static void xive_end_source_class_init(ObjectClass
> *klass, void *data)
> dc->desc = "XIVE END Source";
> dc->props = xive_end_source_properties;
> dc->realize = xive_end_source_realize;
> + dc->user_creatable = false;
> }
>
> static const TypeInfo xive_end_source_info = {
These all need a comment like the existing ->user_creatable = false
have.
Your commit message mentions link properties. Based on that:
/*
* Reason: link property 'NAME-OF-PROP' needs to be wired up.
*/
Rather minimal, though. Several existing similar cases are a bit more
specific, which is nice:
/*
* Reason: part of WHATEVER, needs to be wired up by FUNCTION().
*/
or if there is or could be more than one FUNCTION():
/*
* Reason: part of WHATEVER, needs to be wired up, e.g. by FUNCTION().
*/
David queued your patch already. If it goes into master without such
comments, please post them as a follow-up patch.