From: Like Xu <like.xu@linux.intel.com>
To: "Paolo Bonzini" <pbonzini@redhat.com>,
"Philippe Mathieu-Daudé" <philmd@redhat.com>,
qemu-devel <qemu-devel@nongnu.org>,
"Eduardo Habkost" <ehabkost@redhat.com>
Cc: Igor Mammedov <imammedo@redhat.com>,
"Daniel P . Berrange" <berrange@redhat.com>,
Markus Armbruster <armbru@redhat.com>,
Peter Maydell <peter.maydell@linaro.org>
Subject: Re: Difference between 'current_machine' vs MACHINE(qdev_get_machine())
Date: Thu, 9 Jan 2020 23:24:30 +0800 [thread overview]
Message-ID: <a6d997f6-40b3-4a68-a911-7b9d7ebf9514@linux.intel.com> (raw)
In-Reply-To: <e6a7197d-1647-4667-dae8-10c8dba1737f@redhat.com>
On 2020/1/9 20:01, Paolo Bonzini wrote:
> On 09/01/20 12:23, Philippe Mathieu-Daudé wrote:
>>
>>
>> current_machine =
>> MACHINE(object_new_with_class(OBJECT_CLASS(machine_class)));
>> object_property_add_child(object_get_root(), "machine",
>> OBJECT(current_machine), &error_abort);
>>
>> The bigger user of 'current_machine' is the accel/KVM code.
>>
>> Recently in a0628599f..cc7d44c2e0 "Replace global smp variables with
>> machine smp properties" we started to use MACHINE(qdev_get_machine()).
>>
>> qdev_get_machine() resolves the machine in the QOM composition tree.
>> I am confused by this comment:
>>
>> /* qdev_get_machine() can return something that's not TYPE_MACHINE
>> * if this is one of the user-only emulators; in that case there's
>> * no need to check the ignore_memory_transaction_failures board flag.
>> */
>>
>> Following a0628599f..cc7d44c2e0, a5e0b33119 use 'current_machine' again.
>>
>> What are the differences between both form, when should we use one or
>> another (or can we use a single one?). Can this break user-only mode?
>
> I would always use MACHINE(qdev_get_machine()), espeecially outside
> vl.c. Ideally, current_machine would be static within vl.c or even
> unused outside the object_property_add_child() that you quote above.
>
> Most of the times, I noticed from a quick grep, we actually want to
> access the accelerator, not the machine, so we could add a
> qemu_get_accelerator() wrapper that does
> MACHINE(qdev_get_machine())->accelerator.
>
> Paolo
>
I prefer to use MACHINE(qdev_get_machine()) wherever possible.
However, the qdev_get_machine() would return non TYPE_MACHINE object if:
- call qdev_get_machine() before we do
"object_property_add_child(object_get_root(), "machine",
OBJECT(current_machine), &error_abort);" in vl.c;
- or in the context with '#ifdef CONFIG_USER_ONLY';
Thanks,
Like Xu
next prev parent reply other threads:[~2020-01-09 15:37 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-09 11:23 Difference between 'current_machine' vs MACHINE(qdev_get_machine()) Philippe Mathieu-Daudé
2020-01-09 12:01 ` Paolo Bonzini
2020-01-09 15:24 ` Like Xu [this message]
2020-01-10 10:15 ` Philippe Mathieu-Daudé
2020-01-13 15:56 ` 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=a6d997f6-40b3-4a68-a911-7b9d7ebf9514@linux.intel.com \
--to=like.xu@linux.intel.com \
--cc=armbru@redhat.com \
--cc=berrange@redhat.com \
--cc=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.org \
/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).