From: David Gibson Date: Mon, 26 Nov 2012 01:33:52 +0000 (+1100) Subject: virtio-scsi: Fix subtle (guest) endian bug X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~2971^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=863d1050c96cff91dd478767c0da9cc288575919;p=sdk%2Femulator%2Fqemu.git virtio-scsi: Fix subtle (guest) endian bug The virtio-scsi config space is, by specification, in guest endian (which is ill-defined, but there you go). In virtio_scsi_get_config() we set up all the fields in there, using stl_raw(). Which is a problem for the max_channel and max_target fields, which are 16-bit, not 32-bit. For little-endian targets we get away with it by accident, since the first two bytes will still be correct, and the extra two bytes written (with zeroes) will be overwritten correctly by the next store. But for big-endian guests, this means the max_target field ends up as zero, which means the guest will only recognize a single disk on the virtio-scsi bus. This patch fixes the problem. Cc: Paolo Bonzini Cc: Paul 'Rusty' Russell Signed-off-by: David Gibson Signed-off-by: Paolo Bonzini --- diff --git a/hw/virtio-scsi.c b/hw/virtio-scsi.c index 924fc69..bfe1860 100644 --- a/hw/virtio-scsi.c +++ b/hw/virtio-scsi.c @@ -534,8 +534,8 @@ static void virtio_scsi_get_config(VirtIODevice *vdev, stl_raw(&scsiconf->event_info_size, sizeof(VirtIOSCSIEvent)); stl_raw(&scsiconf->sense_size, s->sense_size); stl_raw(&scsiconf->cdb_size, s->cdb_size); - stl_raw(&scsiconf->max_channel, VIRTIO_SCSI_MAX_CHANNEL); - stl_raw(&scsiconf->max_target, VIRTIO_SCSI_MAX_TARGET); + stw_raw(&scsiconf->max_channel, VIRTIO_SCSI_MAX_CHANNEL); + stw_raw(&scsiconf->max_target, VIRTIO_SCSI_MAX_TARGET); stl_raw(&scsiconf->max_lun, VIRTIO_SCSI_MAX_LUN); }