diff options
| author | Kevin Wolf | 2019-05-07 18:22:10 +0200 |
|---|---|---|
| committer | Kevin Wolf | 2019-06-04 16:55:58 +0200 |
| commit | 26bf15e441d9d0aa7715bac28ef6a3f25a034df3 (patch) | |
| tree | 7e600b5648fc29511b22255e001612e768317ed8 | |
| parent | iotests: Attach new devices to node in non-default iothread (diff) | |
| download | qemu-26bf15e441d9d0aa7715bac28ef6a3f25a034df3.tar.gz qemu-26bf15e441d9d0aa7715bac28ef6a3f25a034df3.tar.xz qemu-26bf15e441d9d0aa7715bac28ef6a3f25a034df3.zip | |
test-bdrv-drain: Use bdrv_try_set_aio_context()
No reason to use the unchecked version in tests, even more so when these
are the last callers of bdrv_set_aio_context() outside of block.c.
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
| -rw-r--r-- | tests/test-bdrv-drain.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/test-bdrv-drain.c b/tests/test-bdrv-drain.c index 44e658bde0..12e2ecf517 100644 --- a/tests/test-bdrv-drain.c +++ b/tests/test-bdrv-drain.c @@ -1509,16 +1509,16 @@ static void test_set_aio_context(void) &error_abort); bdrv_drained_begin(bs); - bdrv_set_aio_context(bs, ctx_a); + bdrv_try_set_aio_context(bs, ctx_a, &error_abort); aio_context_acquire(ctx_a); bdrv_drained_end(bs); bdrv_drained_begin(bs); - bdrv_set_aio_context(bs, ctx_b); + bdrv_try_set_aio_context(bs, ctx_b, &error_abort); aio_context_release(ctx_a); aio_context_acquire(ctx_b); - bdrv_set_aio_context(bs, qemu_get_aio_context()); + bdrv_try_set_aio_context(bs, qemu_get_aio_context(), &error_abort); aio_context_release(ctx_b); bdrv_drained_end(bs); |
