* [PATCH] hw/display/cg3: Fix crash when introspecting cgthree from the CLI
@ 2026-03-17 8:06 Thomas Huth
2026-03-19 11:20 ` Markus Armbruster
0 siblings, 1 reply; 2+ messages in thread
From: Thomas Huth @ 2026-03-17 8:06 UTC (permalink / raw)
To: Mark Cave-Ayland, qemu-devel
Cc: qemu-trivial, BALATON Zoltan, Markus Armbruster
From: Thomas Huth <thuth@redhat.com>
QEMU currently crashes when introspecting the cgthree device from the
command line interface:
$ ./qemu-system-sparc -device cgthree,help
Segmentation fault (core dumped)
This happens because the memory_region_init_rom() function internally
calls qemu_ram_alloc_internal() that needs the current_machine pointer
to be set up - which is not the case here since the machine has not
been created yet.
There does not seem to be a compelling reason for initializing the
memory regions from the instance_init function, so let's simply move
the code into the realize() function instead to fix this issue.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
hw/display/cg3.c | 18 ++++++------------
1 file changed, 6 insertions(+), 12 deletions(-)
diff --git a/hw/display/cg3.c b/hw/display/cg3.c
index 61bdb0552e9..0a413fbb7ec 100644
--- a/hw/display/cg3.c
+++ b/hw/display/cg3.c
@@ -277,10 +277,13 @@ static const GraphicHwOps cg3_ops = {
.gfx_update = cg3_update_display,
};
-static void cg3_initfn(Object *obj)
+static void cg3_realizefn(DeviceState *dev, Error **errp)
{
- SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
- CG3State *s = CG3(obj);
+ SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
+ Object *obj = OBJECT(dev);
+ CG3State *s = CG3(dev);
+ int ret;
+ char *fcode_filename;
memory_region_init_rom(&s->rom, obj, "cg3.prom", FCODE_MAX_ROM_SIZE,
&error_fatal);
@@ -289,14 +292,6 @@ static void cg3_initfn(Object *obj)
memory_region_init_io(&s->reg, obj, &cg3_reg_ops, s, "cg3.reg",
CG3_REG_SIZE);
sysbus_init_mmio(sbd, &s->reg);
-}
-
-static void cg3_realizefn(DeviceState *dev, Error **errp)
-{
- SysBusDevice *sbd = SYS_BUS_DEVICE(dev);
- CG3State *s = CG3(dev);
- int ret;
- char *fcode_filename;
/* FCode ROM */
fcode_filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, CG3_ROM_FILE);
@@ -381,7 +376,6 @@ static const TypeInfo cg3_info = {
.name = TYPE_CG3,
.parent = TYPE_SYS_BUS_DEVICE,
.instance_size = sizeof(CG3State),
- .instance_init = cg3_initfn,
.class_init = cg3_class_init,
};
--
2.53.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH] hw/display/cg3: Fix crash when introspecting cgthree from the CLI
2026-03-17 8:06 [PATCH] hw/display/cg3: Fix crash when introspecting cgthree from the CLI Thomas Huth
@ 2026-03-19 11:20 ` Markus Armbruster
0 siblings, 0 replies; 2+ messages in thread
From: Markus Armbruster @ 2026-03-19 11:20 UTC (permalink / raw)
To: Thomas Huth; +Cc: Mark Cave-Ayland, qemu-devel, qemu-trivial, BALATON Zoltan
Thomas Huth <thuth@redhat.com> writes:
> From: Thomas Huth <thuth@redhat.com>
>
> QEMU currently crashes when introspecting the cgthree device from the
> command line interface:
>
> $ ./qemu-system-sparc -device cgthree,help
> Segmentation fault (core dumped)
>
> This happens because the memory_region_init_rom() function internally
> calls qemu_ram_alloc_internal() that needs the current_machine pointer
> to be set up - which is not the case here since the machine has not
> been created yet.
>
> There does not seem to be a compelling reason for initializing the
> memory regions from the instance_init function, so let's simply move
> the code into the realize() function instead to fix this issue.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
Tested-by: Markus Armbruster <armbru@redhat.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-03-19 11:21 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-17 8:06 [PATCH] hw/display/cg3: Fix crash when introspecting cgthree from the CLI Thomas Huth
2026-03-19 11:20 ` Markus Armbruster
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.