summaryrefslogtreecommitdiffstats
path: root/job.c
diff options
context:
space:
mode:
authorEmanuele Giuseppe Esposito2022-10-25 10:49:52 +0200
committerKevin Wolf2022-10-27 20:14:11 +0200
commit142e6907120d12de1e7ac402e556597ebbab86e8 (patch)
tree2cfe728224f939e1b6f13cbc560daa3bd3c37c5a /job.c
parentblock: rename bdrv_child_try_change_aio_context in bdrv_try_change_aio_context (diff)
downloadqemu-142e6907120d12de1e7ac402e556597ebbab86e8.tar.gz
qemu-142e6907120d12de1e7ac402e556597ebbab86e8.tar.xz
qemu-142e6907120d12de1e7ac402e556597ebbab86e8.zip
block: remove bdrv_try_set_aio_context and replace it with bdrv_try_change_aio_context
No functional change intended. Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com> Reviewed-by: Kevin Wolf <kwolf@redhat.com> Message-Id: <20221025084952.2139888-11-eesposit@redhat.com> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'job.c')
-rw-r--r--job.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/job.c b/job.c
index 78feae05fb..72d57f0934 100644
--- a/job.c
+++ b/job.c
@@ -588,7 +588,7 @@ static void coroutine_fn job_do_yield_locked(Job *job, uint64_t ns)
next_aio_context = job->aio_context;
/*
* Coroutine has resumed, but in the meanwhile the job AioContext
- * might have changed via bdrv_try_set_aio_context(), so we need to move
+ * might have changed via bdrv_try_change_aio_context(), so we need to move
* the coroutine too in the new aiocontext.
*/
while (qemu_get_current_aio_context() != next_aio_context) {