commit | 316a7af35029d52c971f5df044eb69901d6f16ff | [log] [tgz] |
---|---|---|
author | Christoph Hellwig <hch@lst.de> | Sun Sep 12 23:43:39 2010 +0200 |
committer | Kevin Wolf <kwolf@redhat.com> | Tue Sep 21 15:39:42 2010 +0200 |
tree | 818f55ad7ef1f59b248ea52b824f8eed3385f407 | |
parent | 9f8e668eb1826434f61a63ff260d6c8b466e483a [diff] |
virtio-blk: propagate the required alignment Signed-off-by: Christoph Hellwig <hch@lst.de> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
diff --git a/hw/virtio-blk.c b/hw/virtio-blk.c index bd6bbe6..a1df26d 100644 --- a/hw/virtio-blk.c +++ b/hw/virtio-blk.c
@@ -540,6 +540,7 @@ 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; }