job: Move defer_to_main_loop to Job

Move the defer_to_main_loop functionality from BlockJob to Job.

The code can be simplified because we can use job->aio_context in
job_defer_to_main_loop_bh() now, instead of having to access the
BlockDriverState.

Probably taking the data->aio_context lock in addition was already
unnecessary in the old code because we didn't actually make use of
anything protected by the old AioContext except getting the new
AioContext, in case it changed between scheduling the BH and running it.
But it's certainly unnecessary now that the BDS isn't accessed at all
any more.

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 16:41:17 +02:00
parent 08be6fe26f
commit 1908a5590c
12 changed files with 97 additions and 110 deletions

View file

@ -161,11 +161,12 @@ typedef struct CancelJob {
bool completed;
} CancelJob;
static void cancel_job_completed(BlockJob *job, void *opaque)
static void cancel_job_completed(Job *job, void *opaque)
{
BlockJob *bjob = container_of(job, BlockJob, job);
CancelJob *s = opaque;
s->completed = true;
block_job_completed(job, 0);
block_job_completed(bjob, 0);
}
static void cancel_job_complete(BlockJob *job, Error **errp)
@ -191,7 +192,7 @@ static void coroutine_fn cancel_job_start(void *opaque)
}
defer:
block_job_defer_to_main_loop(&s->common, cancel_job_completed, s);
job_defer_to_main_loop(&s->common.job, cancel_job_completed, s);
}
static const BlockJobDriver test_cancel_driver = {