diff options
Diffstat (limited to 'block')
-rw-r--r-- | block/backup.c | 2 | ||||
-rw-r--r-- | block/commit.c | 2 | ||||
-rw-r--r-- | block/mirror.c | 3 | ||||
-rw-r--r-- | block/stream.c | 2 |
4 files changed, 5 insertions, 4 deletions
diff --git a/block/backup.c b/block/backup.c index 44c7ff3d16..3877d93da6 100644 --- a/block/backup.c +++ b/block/backup.c @@ -612,7 +612,7 @@ void backup_start(const char *job_id, BlockDriverState *bs, } job = block_job_create(job_id, &backup_job_driver, bs, speed, - cb, opaque, errp); + BLOCK_JOB_DEFAULT, cb, opaque, errp); if (!job) { goto error; } diff --git a/block/commit.c b/block/commit.c index a5e17f610f..0740a41596 100644 --- a/block/commit.c +++ b/block/commit.c @@ -234,7 +234,7 @@ void commit_start(const char *job_id, BlockDriverState *bs, } s = block_job_create(job_id, &commit_job_driver, bs, speed, - cb, opaque, errp); + BLOCK_JOB_DEFAULT, cb, opaque, errp); if (!s) { return; } diff --git a/block/mirror.c b/block/mirror.c index 82a9529138..e9fba9be06 100644 --- a/block/mirror.c +++ b/block/mirror.c @@ -967,7 +967,8 @@ static void mirror_start_job(const char *job_id, BlockDriverState *bs, buf_size = DEFAULT_MIRROR_BUF_SIZE; } - s = block_job_create(job_id, driver, bs, speed, cb, opaque, errp); + s = block_job_create(job_id, driver, bs, speed, + BLOCK_JOB_DEFAULT, cb, opaque, errp); if (!s) { return; } diff --git a/block/stream.c b/block/stream.c index b8ab89a105..09ce9ef500 100644 --- a/block/stream.c +++ b/block/stream.c @@ -230,7 +230,7 @@ void stream_start(const char *job_id, BlockDriverState *bs, int orig_bs_flags; s = block_job_create(job_id, &stream_job_driver, bs, speed, - cb, opaque, errp); + BLOCK_JOB_DEFAULT, cb, opaque, errp); if (!s) { return; } |