From: Christoph Hellwig Date: Sun, 12 Sep 2010 21:43:39 +0000 (+0200) Subject: virtio-blk: propagate the required alignment X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=316a7af35029d52c971f5df044eb69901d6f16ff;p=qemu.git virtio-blk: propagate the required alignment Signed-off-by: Christoph Hellwig Signed-off-by: Kevin Wolf --- diff --git a/hw/virtio-blk.c b/hw/virtio-blk.c index bd6bbe6b14..a1df26dbcf 100644 --- a/hw/virtio-blk.c +++ b/hw/virtio-blk.c @@ -540,6 +540,7 @@ VirtIODevice *virtio_blk_init(DeviceState *dev, BlockConf *conf) register_savevm(dev, "virtio-blk", virtio_blk_id++, 2, virtio_blk_save, virtio_blk_load, s); bdrv_set_removable(s->bs, 0); + s->bs->buffer_alignment = conf->logical_block_size; return &s->vdev; }