qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] hw/intc: Handle the error of IOAPICCommonClass.realize()
@ 2024-01-31 14:29 Zhao Liu
  2024-01-31 16:48 ` Philippe Mathieu-Daudé
  0 siblings, 1 reply; 6+ messages in thread
From: Zhao Liu @ 2024-01-31 14:29 UTC (permalink / raw)
  To: Michael S . Tsirkin, Paolo Bonzini; +Cc: qemu-devel, qemu-trivial, Zhao Liu

From: Zhao Liu <zhao1.liu@intel.com>

IOAPICCommonClass implements its own private realize(), and this private
realize() allows error.

Therefore, return directly if IOAPICCommonClass.realize() meets error.

Signed-off-by: Zhao Liu <zhao1.liu@intel.com>
---
 hw/intc/ioapic_common.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/hw/intc/ioapic_common.c b/hw/intc/ioapic_common.c
index cb9bf6214608..3772863377c2 100644
--- a/hw/intc/ioapic_common.c
+++ b/hw/intc/ioapic_common.c
@@ -162,6 +162,9 @@ static void ioapic_common_realize(DeviceState *dev, Error **errp)
 
     info = IOAPIC_COMMON_GET_CLASS(s);
     info->realize(dev, errp);
+    if (*errp) {
+        return;
+    }
 
     sysbus_init_mmio(SYS_BUS_DEVICE(s), &s->io_memory);
     ioapic_no++;
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2024-02-07 16:24 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-31 14:29 [PATCH] hw/intc: Handle the error of IOAPICCommonClass.realize() Zhao Liu
2024-01-31 16:48 ` Philippe Mathieu-Daudé
2024-02-01  3:25   ` Zhao Liu
2024-02-06 16:08     ` Zhao Liu
2024-02-07  6:51     ` Markus Armbruster
2024-02-07 16:37       ` Zhao Liu

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).