From: Gerd Hoffmann <kraxel@redhat.com>
To: Blue Swirl <blauwirbel@gmail.com>
Cc: qemu-devel <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] Strange qdev related crash (m48t59 ISA qdev conversion)
Date: Mon, 14 Sep 2009 11:44:20 +0200 [thread overview]
Message-ID: <4AAE1074.3070203@redhat.com> (raw)
In-Reply-To: <f43fc5580909130130n326558xf09698e8bb7c237@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 167 bytes --]
Hi,
> (gdb) p dev->parent_bus
> $1 = (BusState *) 0xffffffff00000000
> (gdb) p bus
> $2 = (BusState *) 0x26da770
Property definitions are wrong.
cheers,
Gerd
[-- Attachment #2: 0001-fix.patch --]
[-- Type: text/plain, Size: 1637 bytes --]
From 87c75662fb5b07c9384662a360a4bc394f9da42d Mon Sep 17 00:00:00 2001
From: Gerd Hoffmann <kraxel@redhat.com>
Date: Mon, 14 Sep 2009 11:26:40 +0200
Subject: [PATCH] fix
---
hw/m48t59.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/hw/m48t59.c b/hw/m48t59.c
index a7cfb2f..b9892cc 100644
--- a/hw/m48t59.c
+++ b/hw/m48t59.c
@@ -719,9 +719,9 @@ static ISADeviceInfo m48t59_isa_info = {
.qdev.size = sizeof(M48t59ISAState),
.qdev.no_user = 1,
.qdev.props = (Property[]) {
- DEFINE_PROP_UINT32("size", m48t59_t, size, -1),
- DEFINE_PROP_UINT32("type", m48t59_t, type, -1),
- DEFINE_PROP_HEX32( "io_base", m48t59_t, io_base, 0),
+ DEFINE_PROP_UINT32("size", M48t59ISAState, state.size, -1),
+ DEFINE_PROP_UINT32("type", M48t59ISAState, state.type, -1),
+ DEFINE_PROP_HEX32( "io_base", M48t59ISAState, state.io_base, 0),
DEFINE_PROP_END_OF_LIST(),
}
};
@@ -731,9 +731,9 @@ static SysBusDeviceInfo m48t59_info = {
.qdev.name = "m48t59",
.qdev.size = sizeof(M48t59SysBusState),
.qdev.props = (Property[]) {
- DEFINE_PROP_UINT32("size", m48t59_t, size, -1),
- DEFINE_PROP_UINT32("type", m48t59_t, type, -1),
- DEFINE_PROP_HEX32( "io_base", m48t59_t, io_base, 0),
+ DEFINE_PROP_UINT32("size", M48t59SysBusState, state.size, -1),
+ DEFINE_PROP_UINT32("type", M48t59SysBusState, state.type, -1),
+ DEFINE_PROP_HEX32( "io_base", M48t59SysBusState, state.io_base, 0),
DEFINE_PROP_END_OF_LIST(),
}
};
--
1.6.2.5
next prev parent reply other threads:[~2009-09-14 9:44 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2009-09-13 8:30 [Qemu-devel] Strange qdev related crash (m48t59 ISA qdev conversion) Blue Swirl
2009-09-14 9:44 ` Gerd Hoffmann [this message]
2009-09-14 16:24 ` Blue Swirl
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=4AAE1074.3070203@redhat.com \
--to=kraxel@redhat.com \
--cc=blauwirbel@gmail.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.