From: Laurent Vivier <lvivier@redhat.com>
To: qemu-devel@nongnu.org
Cc: David Gibson <david@gibson.dropbear.id.au>,
Paolo Bonzini <pbonzini@redhat.com>,
Markus Armbruster <armbru@redhat.com>,
Eduardo Habkost <ehabkost@redhat.com>,
Bharata B Rao <bharata@linux.vnet.ibm.com>,
Peter Maydell <peter.maydell@linaro.org>,
Matthew Rosato <mjrosato@linux.vnet.ibm.com>,
Laurent Vivier <lvivier@redhat.com>,
Michael Walle <michael@walle.cc>
Subject: [Qemu-devel] [PATCH 08/19] target-lm32: move cpu_exec_realize() to realize function
Date: Wed, 5 Oct 2016 21:38:42 +0200 [thread overview]
Message-ID: <1475696333-8706-9-git-send-email-lvivier@redhat.com> (raw)
In-Reply-To: <1475696333-8706-1-git-send-email-lvivier@redhat.com>
I've removed the cannot_destroy_with_object_finalize_yet field as
cpu_exec_init() is not called by lm32_cpu_initfn() anymore
(tested with QOM command provided by commit 4c315c27 with
"lm32-full-lm32-cpu")
CC: Michael Walle <michael@walle.cc>
Signed-off-by: Laurent Vivier <lvivier@redhat.com>
---
target-lm32/cpu.c | 15 +++++++--------
1 file changed, 7 insertions(+), 8 deletions(-)
diff --git a/target-lm32/cpu.c b/target-lm32/cpu.c
index 4b93454..b835779 100644
--- a/target-lm32/cpu.c
+++ b/target-lm32/cpu.c
@@ -144,6 +144,13 @@ static void lm32_cpu_realizefn(DeviceState *dev, Error **errp)
{
CPUState *cs = CPU(dev);
LM32CPUClass *lcc = LM32_CPU_GET_CLASS(dev);
+ Error *local_err = NULL;
+
+ cpu_exec_realize(cs, &local_err);
+ if (local_err != NULL) {
+ error_propagate(errp, local_err);
+ return;
+ }
cpu_reset(cs);
@@ -161,7 +168,6 @@ static void lm32_cpu_initfn(Object *obj)
cs->env_ptr = env;
cpu_exec_init(cs, &error_abort);
- cpu_exec_realize(cs, &error_abort);
env->flags = 0;
@@ -286,13 +292,6 @@ static void lm32_cpu_class_init(ObjectClass *oc, void *data)
cc->gdb_stop_before_watchpoint = true;
cc->debug_excp_handler = lm32_debug_excp_handler;
cc->disas_set_info = lm32_cpu_disas_set_info;
-
- /*
- * Reason: lm32_cpu_initfn() calls cpu_exec_init(), which saves
- * the object in cpus -> dangling pointer after final
- * object_unref().
- */
- dc->cannot_destroy_with_object_finalize_yet = true;
}
static void lm32_register_cpu_type(const LM32CPUInfo *info)
--
2.7.4
next prev parent reply other threads:[~2016-10-05 19:39 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-10-05 19:38 [Qemu-devel] [PATCH 00/19] Split cpu_exec_init() into an init and a realize part Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 01/19] exec: split cpu_exec_init() Laurent Vivier
2016-10-05 20:13 ` Peter Maydell
2016-10-05 20:57 ` Eduardo Habkost
2016-10-05 21:36 ` Laurent Vivier
2016-10-06 5:02 ` David Gibson
2016-10-06 10:41 ` Peter Maydell
2016-10-05 19:38 ` [Qemu-devel] [PATCH 02/19] target-i386: move back cpu_exec_init() to init Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 03/19] target-ppc: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 04/19] target-s390: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 05/19] target-arm: move cpu_exec_realize() to realize function Laurent Vivier
2016-10-06 5:06 ` David Gibson
2016-10-05 19:38 ` [Qemu-devel] [PATCH 06/19] target-alpha: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 07/19] target-cris: " Laurent Vivier
2016-10-05 19:38 ` Laurent Vivier [this message]
2016-10-05 19:38 ` [Qemu-devel] [PATCH 09/19] target-m68k: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 10/19] target-microblaze: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 11/19] target-mips: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 12/19] target-moxie: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 13/19] target-openrisc: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 14/19] target-sh4: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 15/19] target-sparc: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 16/19] target-tilegx: " Laurent Vivier
2016-10-05 23:57 ` Chen Gang
2016-10-06 5:04 ` David Gibson
2016-10-06 6:55 ` Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 17/19] target-tricore: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 18/19] target-unicore32: " Laurent Vivier
2016-10-05 19:38 ` [Qemu-devel] [PATCH 19/19] target-xtensa: " Laurent Vivier
2016-10-05 20:11 ` [Qemu-devel] [PATCH 00/19] Split cpu_exec_init() into an init and a realize part Peter Maydell
2016-10-05 21:25 ` Laurent Vivier
2016-10-05 20:50 ` 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=1475696333-8706-9-git-send-email-lvivier@redhat.com \
--to=lvivier@redhat.com \
--cc=armbru@redhat.com \
--cc=bharata@linux.vnet.ibm.com \
--cc=david@gibson.dropbear.id.au \
--cc=ehabkost@redhat.com \
--cc=michael@walle.cc \
--cc=mjrosato@linux.vnet.ibm.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.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).