Commit 26bf15e4 authored by Kevin Wolf's avatar Kevin Wolf
Browse files

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: default avatarKevin Wolf <kwolf@redhat.com>
parent 6c870535
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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);