[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v7 24/32] qcow2: Add subcluster support to check_refcounts_l2()
From: |
Alberto Garcia |
Subject: |
[PATCH v7 24/32] qcow2: Add subcluster support to check_refcounts_l2() |
Date: |
Mon, 25 May 2020 20:08:49 +0200 |
Setting the QCOW_OFLAG_ZERO bit of the L2 entry is forbidden if an
image has subclusters. Instead, the individual 'all zeroes' bits must
be used.
Signed-off-by: Alberto Garcia <address@hidden>
Reviewed-by: Max Reitz <address@hidden>
Reviewed-by: Vladimir Sementsov-Ogievskiy <address@hidden>
Reviewed-by: Eric Blake <address@hidden>
---
block/qcow2-refcount.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/block/qcow2-refcount.c b/block/qcow2-refcount.c
index 770c5dbc83..696e4dad07 100644
--- a/block/qcow2-refcount.c
+++ b/block/qcow2-refcount.c
@@ -1686,8 +1686,13 @@ static int check_refcounts_l2(BlockDriverState *bs,
BdrvCheckResult *res,
int ign = active ? QCOW2_OL_ACTIVE_L2 :
QCOW2_OL_INACTIVE_L2;
- l2_entry = QCOW_OFLAG_ZERO;
- set_l2_entry(s, l2_table, i, l2_entry);
+ if (has_subclusters(s)) {
+ set_l2_entry(s, l2_table, i, 0);
+ set_l2_bitmap(s, l2_table, i,
+ QCOW_L2_BITMAP_ALL_ZEROES);
+ } else {
+ set_l2_entry(s, l2_table, i, QCOW_OFLAG_ZERO);
+ }
ret = qcow2_pre_write_overlap_check(bs, ign,
l2e_offset, l2_entry_size(s), false);
if (ret < 0) {
--
2.20.1
- [PATCH v7 23/32] qcow2: Add subcluster support to discard_in_l2_slice(), (continued)
- [PATCH v7 23/32] qcow2: Add subcluster support to discard_in_l2_slice(), Alberto Garcia, 2020/05/25
- [PATCH v7 15/32] qcow2: Add qcow2_get_subcluster_range_type(), Alberto Garcia, 2020/05/25
- [PATCH v7 14/32] qcow2: Add QCow2SubclusterType and qcow2_get_subcluster_type(), Alberto Garcia, 2020/05/25
- [PATCH v7 08/32] qcow2: Add dummy has_subclusters() function, Alberto Garcia, 2020/05/25
- [PATCH v7 27/32] qcow2: Add subcluster support to handle_alloc_space(), Alberto Garcia, 2020/05/25
- [PATCH v7 24/32] qcow2: Add subcluster support to check_refcounts_l2(),
Alberto Garcia <=
- [PATCH v7 11/32] qcow2: Add offset_into_subcluster() and size_to_subclusters(), Alberto Garcia, 2020/05/25
- [PATCH v7 10/32] qcow2: Add offset_to_sc_index(), Alberto Garcia, 2020/05/25
- [PATCH v7 29/32] qcow2: Add subcluster support to qcow2_measure(), Alberto Garcia, 2020/05/25
- [PATCH v7 04/32] qcow2: Split cluster_needs_cow() out of count_cow_clusters(), Alberto Garcia, 2020/05/25
- [PATCH v7 31/32] qcow2: Assert that expand_zero_clusters_in_l1() does not support subclusters, Alberto Garcia, 2020/05/25
- [PATCH v7 25/32] qcow2: Update L2 bitmap in qcow2_alloc_cluster_link_l2(), Alberto Garcia, 2020/05/25
- [PATCH v7 18/32] qcow2: Replace QCOW2_CLUSTER_* with QCOW2_SUBCLUSTER_*, Alberto Garcia, 2020/05/25
- [PATCH v7 19/32] qcow2: Handle QCOW2_SUBCLUSTER_UNALLOCATED_ALLOC, Alberto Garcia, 2020/05/25
- [PATCH v7 03/32] qcow2: Add calculate_l2_meta(), Alberto Garcia, 2020/05/25