All of lore.kernel.org
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: "Philippe Mathieu-Daudé" <philmd@redhat.com>,
	qemu-devel <qemu-devel@nongnu.org>,
	"Like Xu" <like.xu@linux.intel.com>,
	"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 13:01:30 +0100	[thread overview]
Message-ID: <e6a7197d-1647-4667-dae8-10c8dba1737f@redhat.com> (raw)
In-Reply-To: <a88f7647-c061-bf3f-a272-72700078ef26@redhat.com>

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



  reply	other threads:[~2020-01-09 12:03 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 [this message]
2020-01-09 15:24   ` Like Xu
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=e6a7197d-1647-4667-dae8-10c8dba1737f@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=imammedo@redhat.com \
    --cc=like.xu@linux.intel.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 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.