提交 6578629e 编写于 作者: A Alberto Garcia 提交者: Jeff Cody

block: never cancel a streaming job without running stream_complete()

We need to call stream_complete() in order to do all the necessary
clean-ups, even if there's an early failure. At the moment it's only
useful to make sure that s->backing_file_str is not leaked, but it
will become more important if we introduce support for streaming to
any intermediate node.
Signed-off-by: NAlberto Garcia <berto@igalia.com>
Reviewed-by: NMax Reitz <mreitz@redhat.com>
Reviewed-by: NFam Zheng <famz@redhat.com>
Reviewed-by: NStefan Hajnoczi <stefanha@redhat.com>
Message-id: 2abedf2debc65c250560237f31a8e6756883c8fc.1458566441.git.berto@igalia.com
Signed-off-by: NJeff Cody <jcody@redhat.com>
上级 b68a8013
...@@ -89,21 +89,21 @@ static void coroutine_fn stream_run(void *opaque) ...@@ -89,21 +89,21 @@ static void coroutine_fn stream_run(void *opaque)
StreamCompleteData *data; StreamCompleteData *data;
BlockDriverState *bs = s->common.bs; BlockDriverState *bs = s->common.bs;
BlockDriverState *base = s->base; BlockDriverState *base = s->base;
int64_t sector_num, end; int64_t sector_num = 0;
int64_t end = -1;
int error = 0; int error = 0;
int ret = 0; int ret = 0;
int n = 0; int n = 0;
void *buf; void *buf;
if (!bs->backing) { if (!bs->backing) {
block_job_completed(&s->common, 0); goto out;
return;
} }
s->common.len = bdrv_getlength(bs); s->common.len = bdrv_getlength(bs);
if (s->common.len < 0) { if (s->common.len < 0) {
block_job_completed(&s->common, s->common.len); ret = s->common.len;
return; goto out;
} }
end = s->common.len >> BDRV_SECTOR_BITS; end = s->common.len >> BDRV_SECTOR_BITS;
...@@ -190,6 +190,7 @@ wait: ...@@ -190,6 +190,7 @@ wait:
qemu_vfree(buf); qemu_vfree(buf);
out:
/* Modify backing chain and close BDSes in main loop */ /* Modify backing chain and close BDSes in main loop */
data = g_malloc(sizeof(*data)); data = g_malloc(sizeof(*data));
data->ret = ret; data->ret = ret;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册