diff options
author | Alberto Garcia <berto@igalia.com> | 2016-07-05 17:28:53 +0300 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2016-07-13 13:26:02 +0200 |
commit | 9df229c3caf6559a37c8760ef6e1485e66bbae41 (patch) | |
tree | d382d5058893fd343e1f8e6ab150b063e9c20a60 /block/mirror.c | |
parent | 29338003c93c3e81ea00f7b45baeee379fa83aa5 (diff) | |
download | qemu-9df229c3caf6559a37c8760ef6e1485e66bbae41.tar.gz qemu-9df229c3caf6559a37c8760ef6e1485e66bbae41.tar.bz2 qemu-9df229c3caf6559a37c8760ef6e1485e66bbae41.zip |
blockjob: Update description of the 'id' field
The 'id' field of the BlockJob structure will be able to hold any ID,
not only a device name. This patch updates the description of that
field and the error messages where it is being used.
Soon we'll add the ability to set an arbitrary ID when creating a
block job.
Signed-off-by: Alberto Garcia <berto@igalia.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: Kevin Wolf <kwolf@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/mirror.c')
-rw-r--r-- | block/mirror.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/block/mirror.c b/block/mirror.c index 8d96049555..6e3dbd257b 100644 --- a/block/mirror.c +++ b/block/mirror.c @@ -761,7 +761,8 @@ static void mirror_complete(BlockJob *job, Error **errp) target = blk_bs(s->target); if (!s->synced) { - error_setg(errp, QERR_BLOCK_JOB_NOT_READY, job->id); + error_setg(errp, "The active block job '%s' cannot be completed", + job->id); return; } |