From: Igor Mammedov <imammedo@redhat.com>
To: "Marc-André Lureau" <marcandre.lureau@redhat.com>
Cc: qemu-devel@nongnu.org, Peter Maydell <peter.maydell@linaro.org>,
"open list:ARM" <qemu-arm@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH for-3.2 v4 24/28] arm: replace instance_post_init()
Date: Fri, 30 Nov 2018 12:48:21 +0100 [thread overview]
Message-ID: <20181130124821.292bd5c9@redhat.com> (raw)
In-Reply-To: <20181127092801.21777-25-marcandre.lureau@redhat.com>
On Tue, 27 Nov 2018 13:27:57 +0400
Marc-André Lureau <marcandre.lureau@redhat.com> wrote:
> Replace arm_cpu_post_init() instance callback by calling it from leaf
> classes, to avoid potential the ordering issue with interfaces
> post-init.
>
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> Suggested-by: Igor Mammedov <imammedo@redhat.com>
> ---
> target/arm/cpu.h | 2 ++
> target/arm/cpu.c | 15 ++++++++++++---
> target/arm/cpu64.c | 11 ++++++++++-
> 3 files changed, 24 insertions(+), 4 deletions(-)
>
> diff --git a/target/arm/cpu.h b/target/arm/cpu.h
> index 2a73fed9a0..84fba2b24b 100644
> --- a/target/arm/cpu.h
> +++ b/target/arm/cpu.h
> @@ -884,6 +884,8 @@ static inline ARMCPU *arm_env_get_cpu(CPUARMState *env)
> return container_of(env, ARMCPU, env);
> }
>
> +void arm_cpu_post_init(Object *obj);
> +
> uint64_t arm_cpu_mp_affinity(int idx, uint8_t clustersz);
>
> #define ENV_GET_CPU(e) CPU(arm_env_get_cpu(e))
> diff --git a/target/arm/cpu.c b/target/arm/cpu.c
> index 60411f6bfe..8a4aae7438 100644
> --- a/target/arm/cpu.c
> +++ b/target/arm/cpu.c
> @@ -734,7 +734,7 @@ static Property arm_cpu_pmsav7_dregion_property =
> static Property arm_cpu_initsvtor_property =
> DEFINE_PROP_UINT32("init-svtor", ARMCPU, init_svtor, 0);
>
> -static void arm_cpu_post_init(Object *obj)
> +void arm_cpu_post_init(Object *obj)
> {
> ARMCPU *cpu = ARM_CPU(obj);
>
> @@ -2094,6 +2094,7 @@ static void arm_host_initfn(Object *obj)
> ARMCPU *cpu = ARM_CPU(obj);
>
> kvm_arm_set_cpu_features_from_host(cpu);
> + arm_cpu_post_init(ARM_CPU(obj));
> }
>
> static const TypeInfo host_arm_cpu_type_info = {
> @@ -2108,14 +2109,23 @@ static const TypeInfo host_arm_cpu_type_info = {
>
> #endif
>
> +static void arm_cpu_instance_init(Object *obj)
> +{
> + const ARMCPUInfo *info = object_class_get_class_data(object_get_class(obj));
> +
> + info->initfn(obj);
> + arm_cpu_post_init(obj);
> +}
now imagine leaf cpu class call chain:
before patch:
arm-cpu::initfn()
cortex-a8::initfn()
set feature AAA
device_post_init()
-> arm_cpu_post_init()
if (AAA)
do something
after patch:
arm-cpu::initfn()
-> arm_cpu_post_init()
if (AAA)
do something <--- won't happen anymore
cortex-a8::initfn()
arm_cpu_post_init() helper has to go to leaf classes only
> +
> static void cpu_register(const ARMCPUInfo *info)
> {
> TypeInfo type_info = {
> .parent = TYPE_ARM_CPU,
> .instance_size = sizeof(ARMCPU),
> - .instance_init = info->initfn,
> + .instance_init = arm_cpu_instance_init,
> .class_size = sizeof(ARMCPUClass),
> .class_init = info->class_init,
> + .class_data = (void *)info,
> };
>
> type_info.name = g_strdup_printf("%s-" TYPE_ARM_CPU, info->name);
> @@ -2128,7 +2138,6 @@ static const TypeInfo arm_cpu_type_info = {
> .parent = TYPE_CPU,
> .instance_size = sizeof(ARMCPU),
> .instance_init = arm_cpu_initfn,
> - .instance_post_init = arm_cpu_post_init,
> .instance_finalize = arm_cpu_finalizefn,
> .abstract = true,
> .class_size = sizeof(ARMCPUClass),
> diff --git a/target/arm/cpu64.c b/target/arm/cpu64.c
> index 873f059bf2..dbfc3ee490 100644
> --- a/target/arm/cpu64.c
> +++ b/target/arm/cpu64.c
> @@ -447,14 +447,23 @@ static void aarch64_cpu_class_init(ObjectClass *oc, void *data)
> cc->gdb_arch_name = aarch64_gdb_arch_name;
> }
>
> +static void aarch64_cpu_instance_init(Object *obj)
> +{
> + const ARMCPUInfo *info = object_class_get_class_data(object_get_class(obj));
> +
> + info->initfn(obj);
> + arm_cpu_post_init(obj);
> +}
> +
> static void aarch64_cpu_register(const ARMCPUInfo *info)
> {
> TypeInfo type_info = {
> .parent = TYPE_AARCH64_CPU,
> .instance_size = sizeof(ARMCPU),
> - .instance_init = info->initfn,
> + .instance_init = aarch64_cpu_instance_init,
> .class_size = sizeof(ARMCPUClass),
> .class_init = info->class_init,
> + .class_data = (void *)info,
> };
>
> type_info.name = g_strdup_printf("%s-" TYPE_ARM_CPU, info->name);
next prev parent reply other threads:[~2018-11-30 11:48 UTC|newest]
Thread overview: 65+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-27 9:27 [Qemu-devel] [PATCH for-3.2 v4 00/28] Generalize machine compatibility properties Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 01/28] target/xtensa: gdbstub fix register counting Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 02/28] target/xtensa: drop num_[core_]regs from dc232b/dc233c configs Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 03/28] target/xtensa: xtfpga: provide default memory sizes Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 04/28] MAINTAINERS: add missing xtensa patterns Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 05/28] 9p: fix QEMU crash when renaming files Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 06/28] MAINTAINERS: Assign some more files in the hw/arm/ directory Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 07/28] MAINTAINERS: Add an ARM SMMU section Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 08/28] net: cadence_gem: Remove incorrect assert() Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 09/28] tests: qdev_prop_check_globals() doesn't return "all_used" Marc-André Lureau
2018-11-27 13:40 ` Eduardo Habkost
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 10/28] qom: make interface types abstract Marc-André Lureau
2018-11-27 13:41 ` Eduardo Habkost
2018-11-27 13:55 ` Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 11/28] qom: make user_creatable_complete() specific to UserCreatable Marc-André Lureau
2018-11-27 13:45 ` Eduardo Habkost
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 12/28] accel: register global_props like machine globals Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 13/28] qdev: move qdev_prop_register_global_list() to tests Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 14/28] qom: remove unimplemented class_finalize Marc-André Lureau
2018-11-27 12:52 ` Eduardo Habkost
2018-11-28 17:44 ` Igor Mammedov
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 15/28] hw: apply accel compat properties without touching globals Marc-André Lureau
2018-11-27 19:40 ` Eduardo Habkost
2018-11-27 20:02 ` Marc-André Lureau
2018-11-29 16:02 ` Eduardo Habkost
2018-11-28 17:49 ` Igor Mammedov
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 16/28] hw: apply machine " Marc-André Lureau
2018-11-27 12:56 ` Eduardo Habkost
2018-11-27 13:10 ` Marc-André Lureau
2018-11-27 13:35 ` Eduardo Habkost
2018-11-28 17:40 ` Igor Mammedov
2018-11-28 17:53 ` Eduardo Habkost
2018-11-29 10:32 ` Marc-André Lureau
2018-11-29 17:50 ` Eduardo Habkost
2018-11-29 21:36 ` Marc-André Lureau
2018-11-30 10:55 ` Igor Mammedov
2018-11-30 11:41 ` Eduardo Habkost
2018-12-04 13:17 ` Igor Mammedov
2018-12-04 18:43 ` Eduardo Habkost
2018-11-30 11:37 ` Igor Mammedov
2018-11-29 16:09 ` Eduardo Habkost
2018-11-29 21:32 ` Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 17/28] hw: remove SET_MACHINE_COMPAT Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 18/28] qdev: all globals are now user-provided Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 19/28] qdev-props: convert global_props to GPtrArray Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 20/28] qdev-props: remove errp from GlobalProperty Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 21/28] qdev-props: call object_apply_global_props() Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 22/28] qom: teach interfaces to implement post-init Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 23/28] qom: add object_class_get_class_data() Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 24/28] arm: replace instance_post_init() Marc-André Lureau
2018-11-30 11:48 ` Igor Mammedov [this message]
2018-12-01 20:55 ` Marc-André Lureau
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 25/28] machine: add compat-props interface Marc-André Lureau
2018-11-29 17:49 ` Eduardo Habkost
2018-11-30 12:34 ` Igor Mammedov
2018-11-30 12:57 ` Eduardo Habkost
2018-11-30 12:39 ` Igor Mammedov
2018-11-27 9:27 ` [Qemu-devel] [PATCH for-3.2 v4 26/28] hw/i386: add pc-i440fx-3.2 & pc-q35-3.2 Marc-André Lureau
2018-11-27 13:01 ` Eduardo Habkost
2018-11-27 9:28 ` [Qemu-devel] [PATCH for-3.2 v4 27/28] hw/arm/virt: add virt-3.2 machine type Marc-André Lureau
2018-11-27 9:28 ` [Qemu-devel] [PATCH for-3.2 v4 28/28] hostmem: use object id for memory region name with >= 3.1 Marc-André Lureau
2018-11-27 9:53 ` [Qemu-devel] [PATCH for-3.2 v4 00/28] Generalize machine compatibility properties Greg Kurz
2018-11-27 9:58 ` Marc-André Lureau
2018-11-29 1:35 ` no-reply
2018-11-29 1:45 ` 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=20181130124821.292bd5c9@redhat.com \
--to=imammedo@redhat.com \
--cc=marcandre.lureau@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--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).