summaryrefslogtreecommitdiff
path: root/block
diff options
context:
space:
mode:
authorJeff Cody <jcody@redhat.com>2012-09-20 15:13:32 -0400
committerKevin Wolf <kwolf@redhat.com>2012-09-24 15:15:12 +0200
commitecfe2bbabbc25e08b21ae57d66e484ef64c4aefa (patch)
tree9f48653ab8072add558f2ebc38a665d75b64e459 /block
parent3897575f1cd96370a604be8cb5cf1e3fae2be0c1 (diff)
downloadqemu-ecfe2bbabbc25e08b21ae57d66e484ef64c4aefa.tar.gz
block: vdi image file reopen
There is currently nothing that needs to be done for VDI reopen. Signed-off-by: Jeff Cody <jcody@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block')
-rw-r--r--block/vdi.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/block/vdi.c b/block/vdi.c
index 550cf58a39..f35b12ec98 100644
--- a/block/vdi.c
+++ b/block/vdi.c
@@ -454,6 +454,12 @@ static int vdi_open(BlockDriverState *bs, int flags)
return -1;
}
+static int vdi_reopen_prepare(BDRVReopenState *state,
+ BlockReopenQueue *queue, Error **errp)
+{
+ return 0;
+}
+
static int coroutine_fn vdi_co_is_allocated(BlockDriverState *bs,
int64_t sector_num, int nb_sectors, int *pnum)
{
@@ -761,6 +767,7 @@ static BlockDriver bdrv_vdi = {
.bdrv_probe = vdi_probe,
.bdrv_open = vdi_open,
.bdrv_close = vdi_close,
+ .bdrv_reopen_prepare = vdi_reopen_prepare,
.bdrv_create = vdi_create,
.bdrv_co_is_allocated = vdi_co_is_allocated,
.bdrv_make_empty = vdi_make_empty,