On 11.08.2022 17:00, Alexander Ivanov wrote:
> Replace the way we use mutex in parallels_co_check() for more clean code.
I think that "cleaness" is the same, but new code would be just shorter ;)
or less error prone.
> v2: Fix an incorrect usage of WITH_QEMU_LOCK_GUARD.
>
> Signed-off-by: Alexander Ivanov <alexander.ivanov@virtuozzo.com>
> ---
> block/parallels.c | 26 ++++++++++++--------------
> 1 file changed, 12 insertions(+), 14 deletions(-)
>
> diff --git a/block/parallels.c b/block/parallels.c
> index d0364182bb..e124a8bb7d 100644
> --- a/block/parallels.c
> +++ b/block/parallels.c
> @@ -553,24 +553,22 @@ static int coroutine_fn parallels_co_check(BlockDriverState *bs,
> BDRVParallelsState *s = bs->opaque;
> int ret;
>
> - qemu_co_mutex_lock(&s->lock);
> + WITH_QEMU_LOCK_GUARD(&s->lock) {
> + parallels_check_unclean(bs, res, fix);
>
> - parallels_check_unclean(bs, res, fix);
> + ret = parallels_check_outside_image(bs, res, fix);
> + if (ret < 0) {
> + return ret;
> + }
>
> - ret = parallels_check_outside_image(bs, res, fix);
> - if (ret < 0) {
> - goto out;
> - }
> -
> - ret = parallels_check_leak(bs, res, fix);
> - if (ret < 0) {
> - goto out;
> - }
> + ret = parallels_check_leak(bs, res, fix);
> + if (ret < 0) {
> + return ret;
> + }
>
> - parallels_collect_statistics(bs, res, fix);
> + parallels_collect_statistics(bs, res, fix);
>
> -out:
> - qemu_co_mutex_unlock(&s->lock);
> + }
>
> ret = bdrv_co_flush(bs);
> if (ret < 0) {