qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH] qdev: relax bus type check in qdev_device_add()
@ 2012-11-29 13:49 Anthony Liguori
  2012-11-29 13:56 ` Peter Maydell
  0 siblings, 1 reply; 3+ messages in thread
From: Anthony Liguori @ 2012-11-29 13:49 UTC (permalink / raw)
  To: qemu-devel; +Cc: Anthony Liguori, Konrad Frederic

We are currently checking for an exact type match.  Use QOM dynamic_cast to
check for a compatible type instead.

Cc: Konrad Frederic <fred.konrad@greensocs.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
---
 hw/qdev-monitor.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/hw/qdev-monitor.c b/hw/qdev-monitor.c
index 479eecd..69f5ff2 100644
--- a/hw/qdev-monitor.c
+++ b/hw/qdev-monitor.c
@@ -431,11 +431,16 @@ DeviceState *qdev_device_add(QemuOpts *opts)
     /* find bus */
     path = qemu_opt_get(opts, "bus");
     if (path != NULL) {
+        ObjectClass *bus_class;
+
         bus = qbus_find(path);
         if (!bus) {
             return NULL;
         }
-        if (strcmp(object_get_typename(OBJECT(bus)), k->bus_type) != 0) {
+
+        bus_class = OBJECT_CLASS(BUS_GET_CLASS(bus));
+
+        if (!object_class_dynamic_cast(bus_class, k->bus_type)) {
             qerror_report(QERR_BAD_BUS_FOR_DEVICE,
                           driver, object_get_typename(OBJECT(bus)));
             return NULL;
-- 
1.8.0

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

end of thread, other threads:[~2012-11-29 14:06 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-29 13:49 [Qemu-devel] [PATCH] qdev: relax bus type check in qdev_device_add() Anthony Liguori
2012-11-29 13:56 ` Peter Maydell
2012-11-29 14:07   ` Konrad Frederic

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