On 11/11/2014 02:17, Ming Lei wrote: > The size of each element should be sizeof(VirtIOSCSIVring *). > > Signed-off-by: Ming Lei <ming....@canonical.com> > --- > hw/scsi/virtio-scsi-dataplane.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/hw/scsi/virtio-scsi-dataplane.c b/hw/scsi/virtio-scsi-dataplane.c > index 855439e..df17229 100644 > --- a/hw/scsi/virtio-scsi-dataplane.c > +++ b/hw/scsi/virtio-scsi-dataplane.c > @@ -239,7 +239,7 @@ void virtio_scsi_dataplane_start(VirtIOSCSI *s) > if (!s->event_vring) { > goto fail_vrings; > } > - s->cmd_vrings = g_malloc0(sizeof(VirtIOSCSIVring) * vs->conf.num_queues); > + s->cmd_vrings = g_new(VirtIOSCSIVring *, vs->conf.num_queues); > for (i = 0; i < vs->conf.num_queues; i++) { > s->cmd_vrings[i] = > virtio_scsi_vring_init(s, vs->cmd_vqs[i], >
Applied, thanks. Paolo