Il 23/08/2013 18:01, arm...@redhat.com ha scritto:
> From: Markus Armbruster <arm...@redhat.com>
> 
> scsi_bus_legacy_add_drive() creates either a scsi-disk or a
> scsi-generic device.  It sets property "serial" to argument serial
> unless null.  Crashes with scsi-generic, because it doesn't have such
> the property.
> 
> Only usb_msd_initfn_storage() passes non-null serial.  Reproducer:
> 
>     $ qemu-system-x86_64 -nodefaults -display none -S -usb \
>     -drive if=none,file=/dev/sg1,id=usb-drv0 \
>     -device usb-storage,id=usb-msd0,drive=usb-drv0,serial=123
>     qemu-system-x86_64: -device 
> usb-storage,id=usb-msd0,drive=usb-drv0,serial=123: Property '.serial' not 
> found
>     Aborted (core dumped)
> 
> Fix by handling exactly like "removable": set the property only when
> it exists.
> 
> Cc: qemu-sta...@nongnu.org
> Signed-off-by: Markus Armbruster <arm...@redhat.com>
> ---
>  hw/scsi/scsi-bus.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/hw/scsi/scsi-bus.c b/hw/scsi/scsi-bus.c
> index fbf9173..8fe4f4c 100644
> --- a/hw/scsi/scsi-bus.c
> +++ b/hw/scsi/scsi-bus.c
> @@ -224,7 +224,7 @@ SCSIDevice *scsi_bus_legacy_add_drive(SCSIBus *bus, 
> BlockDriverState *bdrv,
>      if (object_property_find(OBJECT(dev), "removable", NULL)) {
>          qdev_prop_set_bit(dev, "removable", removable);
>      }
> -    if (serial) {
> +    if (serial && object_property_find(OBJECT(dev), "serial", NULL)) {
>          qdev_prop_set_string(dev, "serial", serial);
>      }
>      if (qdev_prop_set_drive(dev, "drive", bdrv) < 0) {
> 

Applied to scsi-next branch, thanks.

Paolo

Reply via email to