job: Add Job.aio_context

When block jobs need an AioContext, they just take it from their main
block node. Generic jobs don't have a main block node, so we need to
assign them an AioContext explicitly.

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
This commit is contained in:
Kevin Wolf 2018-04-17 13:49:33 +02:00
parent daa7f2f946
commit 08be6fe26f
3 changed files with 13 additions and 3 deletions

View file

@ -216,6 +216,7 @@ static void block_job_attached_aio_context(AioContext *new_context,
{
BlockJob *job = opaque;
job->job.aio_context = new_context;
if (job->driver->attached_aio_context) {
job->driver->attached_aio_context(job, new_context);
}
@ -247,6 +248,7 @@ static void block_job_detach_aio_context(void *opaque)
block_job_drain(job);
}
job->job.aio_context = NULL;
job_unref(&job->job);
}
@ -899,7 +901,8 @@ void *block_job_create(const char *job_id, const BlockJobDriver *driver,
return NULL;
}
job = job_create(job_id, &driver->job_driver, errp);
job = job_create(job_id, &driver->job_driver, blk_get_aio_context(blk),
errp);
if (job == NULL) {
blk_unref(blk);
return NULL;