From: Eduardo Habkost <ehabkost@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
Richard Henderson <rth@twiddle.net>,
qemu-devel@nongnu.org, Laurent Vivier <lvivier@redhat.com>
Subject: [Qemu-devel] [PULL 14/17] exec: split cpu_exec_init()
Date: Mon, 24 Oct 2016 12:31:42 -0200 [thread overview]
Message-ID: <1477319505-20181-15-git-send-email-ehabkost@redhat.com> (raw)
In-Reply-To: <1477319505-20181-1-git-send-email-ehabkost@redhat.com>
From: Laurent Vivier <lvivier@redhat.com>
Put in cpu_exec_initfn() what initializes the CPU,
and leave in cpu_exec_init() what adds it to the environment.
As cpu_exec_initfn() is called by all XX_cpu_initfn(), call it
directly in cpu_common_initfn().
cpu_exec_init() is now a realize function, it will be renamed
to cpu_exec_realizefn() and moved to the XX_cpu_realizefn()
function in a following patch.
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Igor Mammedov <imammedo@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
---
exec.c | 10 ++++++----
include/qom/cpu.h | 1 +
qom/cpu.c | 2 ++
3 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/exec.c b/exec.c
index e63c5a1..a873f8b 100644
--- a/exec.c
+++ b/exec.c
@@ -610,11 +610,8 @@ void cpu_exec_exit(CPUState *cpu)
}
}
-void cpu_exec_init(CPUState *cpu, Error **errp)
+void cpu_exec_initfn(CPUState *cpu)
{
- CPUClass *cc ATTRIBUTE_UNUSED = CPU_GET_CLASS(cpu);
- Error *local_err ATTRIBUTE_UNUSED = NULL;
-
cpu->as = NULL;
cpu->num_ases = 0;
@@ -635,6 +632,11 @@ void cpu_exec_init(CPUState *cpu, Error **errp)
cpu->memory = system_memory;
object_ref(OBJECT(cpu->memory));
#endif
+}
+
+void cpu_exec_init(CPUState *cpu, Error **errp)
+{
+ CPUClass *cc ATTRIBUTE_UNUSED = CPU_GET_CLASS(cpu);
cpu_list_add(cpu);
diff --git a/include/qom/cpu.h b/include/qom/cpu.h
index 6d481a1..d7648a9 100644
--- a/include/qom/cpu.h
+++ b/include/qom/cpu.h
@@ -946,6 +946,7 @@ AddressSpace *cpu_get_address_space(CPUState *cpu, int asidx);
void QEMU_NORETURN cpu_abort(CPUState *cpu, const char *fmt, ...)
GCC_FMT_ATTR(2, 3);
+void cpu_exec_initfn(CPUState *cpu);
void cpu_exec_exit(CPUState *cpu);
#ifdef CONFIG_SOFTMMU
diff --git a/qom/cpu.c b/qom/cpu.c
index c40f774..85f1132 100644
--- a/qom/cpu.c
+++ b/qom/cpu.c
@@ -362,6 +362,8 @@ static void cpu_common_initfn(Object *obj)
QTAILQ_INIT(&cpu->watchpoints);
cpu->trace_dstate = bitmap_new(trace_get_vcpu_event_count());
+
+ cpu_exec_initfn(cpu);
}
static void cpu_common_finalize(Object *obj)
--
2.7.4
next prev parent reply other threads:[~2016-10-24 14:32 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-24 14:31 [Qemu-devel] [PULL 00/17] x86 and CPU queue, 2016-10-24 Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 01/17] pc: acpi: x2APIC support for MADT table and _MAT method Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 02/17] pc: acpi: x2APIC support for SRAT table Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 03/17] acpi: cphp: Force switch to modern cpu hotplug if APIC ID > 254 Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 04/17] pc: Leave max apic_id_limit only in legacy cpu hotplug code Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 05/17] pc: apic_common: Extend APIC ID property to 32bit Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 06/17] pc: apic_common: Restore APIC ID to initial ID on reset Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 07/17] pc: apic_common: Reset APIC ID to initial ID when switching into x2APIC mode Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 08/17] pc: kvm_apic: Pass APIC ID depending on xAPIC/x2APIC mode Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 09/17] pc: Clarify FW_CFG_MAX_CPUS usage comment Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 10/17] Increase MAX_CPUMASK_BITS from 255 to 288 Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 11/17] pc: Add 'etc/boot-cpus' fw_cfg file for machine with more than 255 CPUs Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 12/17] pc: Require IRQ remapping and EIM if there could be x2APIC CPUs Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 13/17] pc: q35: Bump max_cpus to 288 Eduardo Habkost
2016-10-24 14:31 ` Eduardo Habkost [this message]
2016-10-24 14:31 ` [Qemu-devel] [PULL 15/17] exec: move cpu_exec_init() calls to realize functions Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 16/17] exec: call cpu_exec_exit() from a CPU unrealize common function Eduardo Habkost
2016-10-24 14:31 ` [Qemu-devel] [PULL 17/17] target-i386: Print warning when mixing [+-]foo and foo=(on|off) Eduardo Habkost
2016-10-24 16:20 ` [Qemu-devel] [PULL 00/17] x86 and CPU queue, 2016-10-24 Peter Maydell
2016-10-24 16:34 ` Eduardo Habkost
2016-10-24 17:26 ` Peter Maydell
2016-10-24 19:09 ` Eduardo Habkost
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=1477319505-20181-15-git-send-email-ehabkost@redhat.com \
--to=ehabkost@redhat.com \
--cc=lvivier@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/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).