From: Alexander Ivanov <alexander.ivanov@virtuozzo.com>
To: Andrey Drobyshev <andrey.drobyshev@virtuozzo.com>, qemu-block@nongnu.org
Cc: qemu-devel@nongnu.org, hreitz@redhat.com, kwolf@redhat.com,
eblake@redhat.com, berto@igalia.com, jean-louis@dupond.be,
den@virtuozzo.com
Subject: Re: [PATCH v2 08/11] qcow2: zeroize the entire cluster when there're no non-zero subclusters
Date: Tue, 21 May 2024 11:27:06 +0200 [thread overview]
Message-ID: <45df3d97-bdd2-46fc-a643-1037e7cf0ab1@virtuozzo.com> (raw)
In-Reply-To: <20240513063203.113911-9-andrey.drobyshev@virtuozzo.com>
On 5/13/24 08:32, Andrey Drobyshev wrote:
> When zeroizing the last non-zero subclusters within single cluster, it
> makes sense to go zeroize the entire cluster and go down zero_in_l2_slice()
> path right away. That way we'd also update the corresponding refcount
> table.
>
> Signed-off-by: Andrey Drobyshev <andrey.drobyshev@virtuozzo.com>
> Reviewed-by: Hanna Czenczek <hreitz@redhat.com>
> ---
> block/qcow2-cluster.c | 17 ++++++++++++++---
> 1 file changed, 14 insertions(+), 3 deletions(-)
>
> diff --git a/block/qcow2-cluster.c b/block/qcow2-cluster.c
> index 475f167035..8d39e2f960 100644
> --- a/block/qcow2-cluster.c
> +++ b/block/qcow2-cluster.c
> @@ -2221,7 +2221,7 @@ zero_in_l2_slice(BlockDriverState *bs, uint64_t offset,
>
> static int coroutine_fn GRAPH_RDLOCK
> zero_l2_subclusters(BlockDriverState *bs, uint64_t offset,
> - unsigned nb_subclusters)
> + unsigned nb_subclusters, int flags)
> {
> BDRVQcow2State *s = bs->opaque;
> uint64_t new_l2_bitmap;
> @@ -2237,6 +2237,16 @@ zero_l2_subclusters(BlockDriverState *bs, uint64_t offset,
> new_l2_bitmap |= QCOW_OFLAG_SUB_ZERO_RANGE(sc, sc + nb_subclusters);
> new_l2_bitmap &= ~QCOW_OFLAG_SUB_ALLOC_RANGE(sc, sc + nb_subclusters);
>
> + /*
> + * If there're no non-zero subclusters left, we might as well zeroize
> + * the entire cluster. That way we'd also update the refcount table.
> + */
> + if ((new_l2_bitmap & QCOW_L2_BITMAP_ALL_ZEROES) ==
> + QCOW_L2_BITMAP_ALL_ZEROES) {
> + return zero_in_l2_slice(bs, QEMU_ALIGN_DOWN(offset, s->cluster_size),
> + 1, flags);
> + }
> +
> if (new_l2_bitmap != scri.l2_bitmap) {
> set_l2_bitmap(s, scri.l2_slice, scri.l2_index, new_l2_bitmap);
> qcow2_cache_entry_mark_dirty(s->l2_table_cache, scri.l2_slice);
> @@ -2293,7 +2303,7 @@ int coroutine_fn qcow2_subcluster_zeroize(BlockDriverState *bs, uint64_t offset,
>
> if (head) {
> ret = zero_l2_subclusters(bs, offset - head,
> - size_to_subclusters(s, head));
> + size_to_subclusters(s, head), flags);
> if (ret < 0) {
> goto fail;
> }
> @@ -2314,7 +2324,8 @@ int coroutine_fn qcow2_subcluster_zeroize(BlockDriverState *bs, uint64_t offset,
> }
>
> if (tail) {
> - ret = zero_l2_subclusters(bs, end_offset, size_to_subclusters(s, tail));
> + ret = zero_l2_subclusters(bs, end_offset,
> + size_to_subclusters(s, tail), flags);
> if (ret < 0) {
> goto fail;
> }
Reviewed-by: Alexander Ivanov <alexander.ivanov@virtuozzo.com>
--
Best regards,
Alexander Ivanov
next prev parent reply other threads:[~2024-05-21 9:28 UTC|newest]
Thread overview: 34+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-13 6:31 [PATCH v2 00/11] qcow2: make subclusters discardable Andrey Drobyshev
2024-05-13 6:31 ` [PATCH v2 01/11] qcow2: make function update_refcount_discard() global Andrey Drobyshev
2024-05-15 22:26 ` Alberto Garcia
2024-05-21 8:31 ` Alexander Ivanov
2024-05-13 6:31 ` [PATCH v2 02/11] qcow2: simplify L2 entries accounting for discard-no-unref Andrey Drobyshev
2024-05-15 22:28 ` Alberto Garcia
2024-05-21 8:32 ` Alexander Ivanov
2024-05-13 6:31 ` [PATCH v2 03/11] qcow2: put discard requests in the common queue when discard-no-unref enabled Andrey Drobyshev
2024-05-21 8:43 ` Alexander Ivanov
2024-05-13 6:31 ` [PATCH v2 04/11] block/file-posix: add trace event for fallocate() calls Andrey Drobyshev
2024-05-21 8:54 ` Alexander Ivanov
2024-05-24 6:40 ` Alberto Garcia
2024-05-13 6:31 ` [PATCH v2 05/11] iotests/common.rc: add disk_usage function Andrey Drobyshev
2024-05-21 8:56 ` Alexander Ivanov
2024-05-24 6:41 ` Alberto Garcia
2024-05-13 6:31 ` [PATCH v2 06/11] iotests/290: add test case to check 'discard-no-unref' option behavior Andrey Drobyshev
2024-05-21 9:09 ` Alexander Ivanov
2024-05-24 6:42 ` Alberto Garcia
2024-05-13 6:31 ` [PATCH v2 07/11] qcow2: add get_sc_range_info() helper for working with subcluster ranges Andrey Drobyshev
2024-05-21 9:17 ` Alexander Ivanov
2024-05-13 6:32 ` [PATCH v2 08/11] qcow2: zeroize the entire cluster when there're no non-zero subclusters Andrey Drobyshev
2024-05-21 9:27 ` Alexander Ivanov [this message]
2024-05-13 6:32 ` [PATCH v2 09/11] qcow2: make subclusters discardable Andrey Drobyshev
2024-05-21 10:41 ` Alexander Ivanov
2024-05-13 6:32 ` [PATCH v2 10/11] qcow2: zero_l2_subclusters: fall through to discard operation when requested Andrey Drobyshev
2024-05-21 10:46 ` Alexander Ivanov
2024-05-13 6:32 ` [PATCH v2 11/11] iotests/271: add test cases for subcluster-based discard/unmap Andrey Drobyshev
2024-05-21 10:50 ` Alexander Ivanov
2024-06-03 9:19 ` [PATCH v2 00/11] qcow2: make subclusters discardable Andrey Drobyshev
2024-06-10 9:53 ` Andrey Drobyshev
2024-06-17 7:39 ` Andrey Drobyshev
2024-06-24 7:43 ` Andrey Drobyshev
2024-07-08 7:06 ` Andrey Drobyshev
2024-07-15 7:44 ` Andrey Drobyshev
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=45df3d97-bdd2-46fc-a643-1037e7cf0ab1@virtuozzo.com \
--to=alexander.ivanov@virtuozzo.com \
--cc=andrey.drobyshev@virtuozzo.com \
--cc=berto@igalia.com \
--cc=den@virtuozzo.com \
--cc=eblake@redhat.com \
--cc=hreitz@redhat.com \
--cc=jean-louis@dupond.be \
--cc=kwolf@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).