diff options
author | Emanuele Giuseppe Esposito | 2022-02-09 11:54:49 +0100 |
---|---|---|
committer | Kevin Wolf | 2022-03-04 18:14:40 +0100 |
commit | dae84929e415fe46751a35067fd5e45c6ba459b4 (patch) | |
tree | 063862a46a6fb1e53ef6064a116f455ac1ba2559 /tests/perf/block | |
parent | crypto: perform permission checks under BQL (diff) | |
download | qemu-dae84929e415fe46751a35067fd5e45c6ba459b4.tar.gz qemu-dae84929e415fe46751a35067fd5e45c6ba459b4.tar.xz qemu-dae84929e415fe46751a35067fd5e45c6ba459b4.zip |
crypto: distinguish between main loop and I/O in block_crypto_amend_options_generic_luks
block_crypto_amend_options_generic_luks uses the block layer
permission API, therefore it should be called with the BQL held.
However, the same function is being called by two BlockDriver
callbacks: bdrv_amend_options (under BQL) and bdrv_co_amend (I/O).
The latter is I/O because it is invoked by block/amend.c's
blockdev_amend_run(), a .run callback of the amend JobDriver.
Therefore we want to change this function to still perform
the permission check, but making sure it is done under BQL regardless
of the caller context.
Remove the permission check in block_crypto_amend_options_generic_luks()
and:
- in block_crypto_amend_options_luks() (BQL case, called by
.bdrv_amend_options()), reuse helper functions
block_crypto_amend_{prepare/cleanup} that take care of checking
permissions.
- for block_crypto_co_amend_luks() (I/O case, called by
.bdrv_co_amend()), don't check for permissions but delegate
.bdrv_amend_pre_run() and .bdrv_amend_clean() to do it,
performing these checks before and after the job runs in its aiocontext.
Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
Message-Id: <20220209105452.1694545-3-eesposit@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/perf/block')
0 files changed, 0 insertions, 0 deletions