summaryrefslogtreecommitdiffstats
path: root/job-qmp.c
diff options
context:
space:
mode:
authorVladimir Sementsov-Ogievskiy2020-03-11 11:29:56 +0100
committerMax Reitz2020-03-11 12:42:30 +0100
commit01fe1ca945345d3dc420d70c69488143dc0451b1 (patch)
treeef6844c0339c5eb16b6b47b74919db73aa41639a /job-qmp.c
parentblock/qcow2-threads: fix qcow2_decompress (diff)
downloadqemu-01fe1ca945345d3dc420d70c69488143dc0451b1.tar.gz
qemu-01fe1ca945345d3dc420d70c69488143dc0451b1.tar.xz
qemu-01fe1ca945345d3dc420d70c69488143dc0451b1.zip
job: refactor progress to separate object
We need it in separate to pass to the block-copy object in the next commit. Cc: qemu-stable@nongnu.org Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> Reviewed-by: Andrey Shinkevich <andrey.shinkevich@virtuozzo.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Message-Id: <20200311103004.7649-2-vsementsov@virtuozzo.com> Signed-off-by: Max Reitz <mreitz@redhat.com>
Diffstat (limited to 'job-qmp.c')
-rw-r--r--job-qmp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/job-qmp.c b/job-qmp.c
index fbfed25a00..fecc939ebd 100644
--- a/job-qmp.c
+++ b/job-qmp.c
@@ -143,8 +143,8 @@ static JobInfo *job_query_single(Job *job, Error **errp)
.id = g_strdup(job->id),
.type = job_type(job),
.status = job->status,
- .current_progress = job->progress_current,
- .total_progress = job->progress_total,
+ .current_progress = job->progress.current,
+ .total_progress = job->progress.total,
.has_error = !!job->err,
.error = job->err ? \
g_strdup(error_get_pretty(job->err)) : NULL,