On Mon, Jun 10, 2013 at 11:53:04AM +0200, fred.kon...@greensocs.com wrote: > From: KONRAD Frederic <fred.kon...@greensocs.com> > > This fix a bug with scsi hotplug on virtio-scsi-pci: > > As virtio-scsi-pci doesn't have any scsi bus, we need to forward scsi-hot-add > to the virtio-scsi-device plugged on the virtio-bus. > > Reported-by: Alexey Kardashevskiy <a...@ozlabs.ru> > Signed-off-by: KONRAD Frederic <fred.kon...@greensocs.com> > --- > hw/pci/pci-hotplug.c | 19 +++++++++++++++++-- > 1 file changed, 17 insertions(+), 2 deletions(-) > > diff --git a/hw/pci/pci-hotplug.c b/hw/pci/pci-hotplug.c > index 12287d1..c708752 100644 > --- a/hw/pci/pci-hotplug.c > +++ b/hw/pci/pci-hotplug.c > @@ -30,6 +30,8 @@ > #include "monitor/monitor.h" > #include "hw/scsi/scsi.h" > #include "hw/virtio/virtio-blk.h" > +#include "hw/virtio/virtio-scsi.h" > +#include "hw/virtio/virtio-pci.h" > #include "qemu/config-file.h" > #include "sysemu/blockdev.h" > #include "qapi/error.h" > @@ -79,13 +81,26 @@ static int scsi_hot_add(Monitor *mon, DeviceState > *adapter, > { > SCSIBus *scsibus; > SCSIDevice *scsidev; > + VirtIOPCIProxy *virtio_proxy; > > scsibus = (SCSIBus *) > object_dynamic_cast(OBJECT(QLIST_FIRST(&adapter->child_bus)), > TYPE_SCSI_BUS); > if (!scsibus) { > - error_report("Device is not a SCSI adapter"); > - return -1; > + /* > + * Check if the adapter is a virtio-scsi-pci, and forward > scsi_hot_add > + * to the virtio-scsi-device. > + */ > + if (!object_dynamic_cast(OBJECT(adapter), TYPE_VIRTIO_SCSI_PCI)) { > + error_report("Device is not a SCSI adapter"); > + return -1; > + } > + virtio_proxy = VIRTIO_PCI(adapter); > + adapter = DEVICE(virtio_proxy->bus.vdev); > + scsibus = (SCSIBus *) > + > object_dynamic_cast(OBJECT(QLIST_FIRST(&adapter->child_bus)), > + TYPE_SCSI_BUS); > + assert(scsibus); > } > > /*
By the way I really wonder. pci-hotplug.c was supposed to be legacy interface. Is this the only way to add scsi disks? And are other ways broken, too? > -- > 1.8.1.4