aboutsummaryrefslogtreecommitdiff
path: root/block/commit.c
diff options
context:
space:
mode:
authorKevin Wolf <kwolf@redhat.com>2018-04-12 17:57:08 +0200
committerKevin Wolf <kwolf@redhat.com>2018-05-23 14:30:49 +0200
commit252291eaeafcd234a602d71cdf9415dbfc7bc867 (patch)
treeda2af639f71ecd9d28e601b4c1b2ae73435896a8 /block/commit.c
parent8e4c87000fc515f8f65f7c8f18afb1e9270b11d6 (diff)
downloadqemu-252291eaeafcd234a602d71cdf9415dbfc7bc867.zip
qemu-252291eaeafcd234a602d71cdf9415dbfc7bc867.tar.gz
qemu-252291eaeafcd234a602d71cdf9415dbfc7bc867.tar.bz2
job: Add JobDriver.job_type
This moves the job_type field from BlockJobDriver to JobDriver. Signed-off-by: Kevin Wolf <kwolf@redhat.com> Reviewed-by: Max Reitz <mreitz@redhat.com> Reviewed-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'block/commit.c')
-rw-r--r--block/commit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/block/commit.c b/block/commit.c
index afa2b2b..32d29c8 100644
--- a/block/commit.c
+++ b/block/commit.c
@@ -217,8 +217,8 @@ out:
static const BlockJobDriver commit_job_driver = {
.job_driver = {
.instance_size = sizeof(CommitBlockJob),
+ .job_type = JOB_TYPE_COMMIT,
},
- .job_type = JOB_TYPE_COMMIT,
.start = commit_run,
};