From: Eduardo Habkost <ehabkost@redhat.com>
To: Thomas Huth <thuth@redhat.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
qemu-devel@nongnu.org, qemu-s390x@nongnu.org,
qemu-arm@nongnu.org, qemu-ppc@nongnu.org,
Igor Mammedov <imammedo@redhat.com>
Subject: Re: [Qemu-arm] [Qemu-ppc] [RFC v2 2/5] machine: prepare machine 'none' to gradually switch to cpu_create() API
Date: Thu, 18 Jan 2018 18:35:47 -0200 [thread overview]
Message-ID: <20180118203546.GF5292@localhost.localdomain> (raw)
In-Reply-To: <33aa0c19-59ec-7063-f638-884fe2249aee@redhat.com>
On Thu, Jan 18, 2018 at 08:06:03PM +0100, Thomas Huth wrote:
> On 18.01.2018 18:33, Igor Mammedov wrote:
> > temporarily add #ifdef CPU_RESOLVING_TYPE in null-machine.c,
> > so that each target could gradually switch to cpu_create() and
> > not converted yet could continue to use cpu_init().
> >
> > Once all targets are converted
> > temporary ifdefs, MachineState::cpu_model and cpu_init() API
> > will be removed
> >
> > Signed-off-by: Igor Mammedov <imammedo@redhat.com>
> > ---
> > hw/core/null-machine.c | 13 ++++++++++++-
> > vl.c | 8 +++++++-
> > 2 files changed, 19 insertions(+), 2 deletions(-)
> >
> > diff --git a/hw/core/null-machine.c b/hw/core/null-machine.c
> > index 864832d..3cc6a49 100644
> > --- a/hw/core/null-machine.c
> > +++ b/hw/core/null-machine.c
> > @@ -23,10 +23,18 @@
> > static void machine_none_init(MachineState *mch)
> > {
> > CPUState *cpu = NULL;
> > +#ifdef CPU_RESOLVING_TYPE
> > + MachineClass *mc = MACHINE_GET_CLASS(mch);
> >
> > - /* Initialize CPU (if a model has been specified) */
> > + /* Initialize CPU if cpu_type pointer is user provided
> > + * (i.e. != to pointer tot static default cpu type string)
>
> s/tot/to/ ?
>
> > + */
> > + if (mch->cpu_type != mc->default_cpu_type) {
> > + cpu = cpu_create(mch->cpu_type);
> > +#else
> > if (mch->cpu_model) {
> > cpu = cpu_init(mch->cpu_model);
> > +#endif
> > if (!cpu) {
> > error_report("Unable to initialize CPU");
> > exit(1);
> > @@ -54,6 +62,9 @@ static void machine_none_machine_init(MachineClass *mc)
> > mc->init = machine_none_init;
> > mc->max_cpus = 1;
> > mc->default_ram_size = 0;
> > +#ifdef CPU_RESOLVING_TYPE
> > + mc->default_cpu_type = CPU_RESOLVING_TYPE;
> > +#endif
As mentioned in a reply to a previous series, this is making
mc->default_cpu_type lie about the default CPU type. If vl.c is
relying on default_cpu_type to parse the CPU data, I'd like to
fix vl.c first instead of adding this hack.
> > }
> >
> > DEFINE_MACHINE("none", machine_none_machine_init)
> > diff --git a/vl.c b/vl.c
> > index 2586f25..8aa0131 100644
> > --- a/vl.c
> > +++ b/vl.c
> > @@ -4609,7 +4609,6 @@ int main(int argc, char **argv, char **envp)
> > current_machine->maxram_size = maxram_size;
> > current_machine->ram_slots = ram_slots;
> > current_machine->boot_order = boot_order;
> > - current_machine->cpu_model = cpu_model;
> >
> > parse_numa_opts(current_machine);
> >
> > @@ -4619,6 +4618,13 @@ int main(int argc, char **argv, char **envp)
> > if (cpu_model) {
> > current_machine->cpu_type =
> > cpu_parse_cpu_model(machine_class->default_cpu_type, cpu_model);
> > +
> > + /* machine 'none' depends on default cpu type pointer not being
> > + * equal to resolved type name pointer to fugure out if type was
>
> s/fugure/figure/
>
> > + * user provided, make sure that if it becomes not true in future
> > + * it won't beark silently */
>
> s/beark/break/
>
> > + g_assert(
> > + current_machine->cpu_type != machine_class->default_cpu_type);
> > }
> > }
>
> Thomas
>
>
--
Eduardo
WARNING: multiple messages have this Message-ID (diff)
From: Eduardo Habkost <ehabkost@redhat.com>
To: Thomas Huth <thuth@redhat.com>
Cc: Igor Mammedov <imammedo@redhat.com>,
qemu-devel@nongnu.org, Peter Maydell <peter.maydell@linaro.org>,
qemu-s390x@nongnu.org, qemu-arm@nongnu.org, qemu-ppc@nongnu.org
Subject: Re: [Qemu-devel] [Qemu-ppc] [RFC v2 2/5] machine: prepare machine 'none' to gradually switch to cpu_create() API
Date: Thu, 18 Jan 2018 18:35:47 -0200 [thread overview]
Message-ID: <20180118203546.GF5292@localhost.localdomain> (raw)
In-Reply-To: <33aa0c19-59ec-7063-f638-884fe2249aee@redhat.com>
On Thu, Jan 18, 2018 at 08:06:03PM +0100, Thomas Huth wrote:
> On 18.01.2018 18:33, Igor Mammedov wrote:
> > temporarily add #ifdef CPU_RESOLVING_TYPE in null-machine.c,
> > so that each target could gradually switch to cpu_create() and
> > not converted yet could continue to use cpu_init().
> >
> > Once all targets are converted
> > temporary ifdefs, MachineState::cpu_model and cpu_init() API
> > will be removed
> >
> > Signed-off-by: Igor Mammedov <imammedo@redhat.com>
> > ---
> > hw/core/null-machine.c | 13 ++++++++++++-
> > vl.c | 8 +++++++-
> > 2 files changed, 19 insertions(+), 2 deletions(-)
> >
> > diff --git a/hw/core/null-machine.c b/hw/core/null-machine.c
> > index 864832d..3cc6a49 100644
> > --- a/hw/core/null-machine.c
> > +++ b/hw/core/null-machine.c
> > @@ -23,10 +23,18 @@
> > static void machine_none_init(MachineState *mch)
> > {
> > CPUState *cpu = NULL;
> > +#ifdef CPU_RESOLVING_TYPE
> > + MachineClass *mc = MACHINE_GET_CLASS(mch);
> >
> > - /* Initialize CPU (if a model has been specified) */
> > + /* Initialize CPU if cpu_type pointer is user provided
> > + * (i.e. != to pointer tot static default cpu type string)
>
> s/tot/to/ ?
>
> > + */
> > + if (mch->cpu_type != mc->default_cpu_type) {
> > + cpu = cpu_create(mch->cpu_type);
> > +#else
> > if (mch->cpu_model) {
> > cpu = cpu_init(mch->cpu_model);
> > +#endif
> > if (!cpu) {
> > error_report("Unable to initialize CPU");
> > exit(1);
> > @@ -54,6 +62,9 @@ static void machine_none_machine_init(MachineClass *mc)
> > mc->init = machine_none_init;
> > mc->max_cpus = 1;
> > mc->default_ram_size = 0;
> > +#ifdef CPU_RESOLVING_TYPE
> > + mc->default_cpu_type = CPU_RESOLVING_TYPE;
> > +#endif
As mentioned in a reply to a previous series, this is making
mc->default_cpu_type lie about the default CPU type. If vl.c is
relying on default_cpu_type to parse the CPU data, I'd like to
fix vl.c first instead of adding this hack.
> > }
> >
> > DEFINE_MACHINE("none", machine_none_machine_init)
> > diff --git a/vl.c b/vl.c
> > index 2586f25..8aa0131 100644
> > --- a/vl.c
> > +++ b/vl.c
> > @@ -4609,7 +4609,6 @@ int main(int argc, char **argv, char **envp)
> > current_machine->maxram_size = maxram_size;
> > current_machine->ram_slots = ram_slots;
> > current_machine->boot_order = boot_order;
> > - current_machine->cpu_model = cpu_model;
> >
> > parse_numa_opts(current_machine);
> >
> > @@ -4619,6 +4618,13 @@ int main(int argc, char **argv, char **envp)
> > if (cpu_model) {
> > current_machine->cpu_type =
> > cpu_parse_cpu_model(machine_class->default_cpu_type, cpu_model);
> > +
> > + /* machine 'none' depends on default cpu type pointer not being
> > + * equal to resolved type name pointer to fugure out if type was
>
> s/fugure/figure/
>
> > + * user provided, make sure that if it becomes not true in future
> > + * it won't beark silently */
>
> s/beark/break/
>
> > + g_assert(
> > + current_machine->cpu_type != machine_class->default_cpu_type);
> > }
> > }
>
> Thomas
>
>
--
Eduardo
next prev parent reply other threads:[~2018-01-18 20:36 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-18 17:33 [Qemu-arm] [RFC v2 0/5] generalize parsing of cpu_model (part 4) Igor Mammedov
2018-01-18 17:33 ` [Qemu-devel] " Igor Mammedov
2018-01-18 17:33 ` [Qemu-arm] [RFC v2 1/5] tests: add machine 'none' with -cpu test Igor Mammedov
2018-01-18 17:33 ` [Qemu-devel] " Igor Mammedov
2018-01-18 19:01 ` [Qemu-arm] [Qemu-ppc] " Thomas Huth
2018-01-18 19:01 ` [Qemu-devel] " Thomas Huth
2018-01-18 17:33 ` [Qemu-arm] [RFC v2 2/5] machine: prepare machine 'none' to gradually switch to cpu_create() API Igor Mammedov
2018-01-18 17:33 ` [Qemu-devel] " Igor Mammedov
2018-01-18 19:06 ` [Qemu-arm] [Qemu-ppc] " Thomas Huth
2018-01-18 19:06 ` [Qemu-devel] " Thomas Huth
2018-01-18 20:35 ` Eduardo Habkost [this message]
2018-01-18 20:35 ` Eduardo Habkost
2018-01-18 17:34 ` [Qemu-devel] [RFC v2 3/5] linux-user: prepare for switching " Igor Mammedov
2018-01-18 17:34 ` Igor Mammedov
2018-01-18 19:10 ` [Qemu-arm] [Qemu-ppc] " Thomas Huth
2018-01-18 19:10 ` [Qemu-devel] " Thomas Huth
2018-01-18 20:33 ` [Qemu-arm] " Eduardo Habkost
2018-01-18 20:33 ` [Qemu-devel] " Eduardo Habkost
2018-01-19 10:24 ` [Qemu-arm] " Igor Mammedov
2018-01-19 10:24 ` Igor Mammedov
2018-01-18 17:34 ` [Qemu-arm] [RFC v2 4/5] arm: cpu: add CPU_RESOLVING_TYPE macro Igor Mammedov
2018-01-18 17:34 ` [Qemu-devel] " Igor Mammedov
2018-01-18 17:34 ` [Qemu-arm] [RFC v2 5/5] x86: " Igor Mammedov
2018-01-18 17:34 ` [Qemu-devel] " Igor Mammedov
2018-01-18 17:59 ` [Qemu-devel] [RFC v2 0/5] generalize parsing of cpu_model (part 4) no-reply
2018-01-18 17:59 ` no-reply
2018-01-18 20:17 ` no-reply
2018-01-18 20:17 ` no-reply
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=20180118203546.GF5292@localhost.localdomain \
--to=ehabkost@redhat.com \
--cc=imammedo@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=thuth@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.