summary refs log tree commit diff stats
path: root/block/commit.c
diff options
context:
space:
mode:
authorFam Zheng <famz@redhat.com>2013-10-08 17:29:38 +0800
committerKevin Wolf <kwolf@redhat.com>2013-10-11 10:52:54 +0200
commit3fc4b10af09b75a1cb811b61abc9d8c90771dfb2 (patch)
tree5132b0a91efae3d3cd56e959819064a250f23b9a /block/commit.c
parent39c153b80f890dc5f02465dc59992e195abd5f40 (diff)
downloadfocaccia-qemu-3fc4b10af09b75a1cb811b61abc9d8c90771dfb2.tar.gz
focaccia-qemu-3fc4b10af09b75a1cb811b61abc9d8c90771dfb2.zip
blockjob: rename BlockJobType to BlockJobDriver
We will use BlockJobType as the enum type name of block jobs in QAPI,
rename current BlockJobType to BlockJobDriver, which will eventually
become a set of operations, similar to block drivers.

Signed-off-by: Fam Zheng <famz@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'block/commit.c')
-rw-r--r--block/commit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/block/commit.c b/block/commit.c
index ac4b7ccbc9..5146138c67 100644
--- a/block/commit.c
+++ b/block/commit.c
@@ -173,7 +173,7 @@ static void commit_set_speed(BlockJob *job, int64_t speed, Error **errp)
     ratelimit_set_speed(&s->limit, speed / BDRV_SECTOR_SIZE, SLICE_TIME);
 }
 
-static const BlockJobType commit_job_type = {
+static const BlockJobDriver commit_job_driver = {
     .instance_size = sizeof(CommitBlockJob),
     .job_type      = "commit",
     .set_speed     = commit_set_speed,
@@ -238,7 +238,7 @@ void commit_start(BlockDriverState *bs, BlockDriverState *base,
     }
 
 
-    s = block_job_create(&commit_job_type, bs, speed, cb, opaque, errp);
+    s = block_job_create(&commit_job_driver, bs, speed, cb, opaque, errp);
     if (!s) {
         return;
     }