diff options
| author | Jeff Cody | 2013-10-30 15:44:44 +0100 |
|---|---|---|
| committer | Stefan Hajnoczi | 2013-11-07 13:58:58 +0100 |
| commit | c46415afc2c99ea052f52f9d68ed9a78799f2c10 (patch) | |
| tree | afc4c0174b46dc9dc86554e90c53aaf57a9859c0 /block | |
| parent | block: vhdx - update log guid in header, and first write tracker (diff) | |
| download | qemu-c46415afc2c99ea052f52f9d68ed9a78799f2c10.tar.gz qemu-c46415afc2c99ea052f52f9d68ed9a78799f2c10.tar.xz qemu-c46415afc2c99ea052f52f9d68ed9a78799f2c10.zip | |
block: vhdx code movement - move vhdx_close() above vhdx_open()
Signed-off-by: Jeff Cody <jcody@redhat.com>
Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'block')
| -rw-r--r-- | block/vhdx.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/block/vhdx.c b/block/vhdx.c index 241703a1ad..3f06ce33ef 100644 --- a/block/vhdx.c +++ b/block/vhdx.c @@ -778,6 +778,17 @@ exit: } +static void vhdx_close(BlockDriverState *bs) +{ + BDRVVHDXState *s = bs->opaque; + qemu_vfree(s->headers[0]); + qemu_vfree(s->headers[1]); + qemu_vfree(s->bat); + qemu_vfree(s->parent_entries); + migrate_del_blocker(s->migration_blocker); + error_free(s->migration_blocker); +} + static int vhdx_open(BlockDriverState *bs, QDict *options, int flags, Error **errp) { @@ -1035,17 +1046,6 @@ static coroutine_fn int vhdx_co_writev(BlockDriverState *bs, int64_t sector_num, } -static void vhdx_close(BlockDriverState *bs) -{ - BDRVVHDXState *s = bs->opaque; - qemu_vfree(s->headers[0]); - qemu_vfree(s->headers[1]); - qemu_vfree(s->bat); - qemu_vfree(s->parent_entries); - migrate_del_blocker(s->migration_blocker); - error_free(s->migration_blocker); -} - static BlockDriver bdrv_vhdx = { .format_name = "vhdx", .instance_size = sizeof(BDRVVHDXState), |
