Current kernel only supports qgroup version 1.
Make qgroup-verify to follow this standard.

Signed-off-by: Qu Wenruo <w...@suse.com>
---
 ctree.h         | 1 +
 qgroup-verify.c | 2 ++
 2 files changed, 3 insertions(+)

diff --git a/ctree.h b/ctree.h
index fa861ba0b4c3..cf99df1c90a8 100644
--- a/ctree.h
+++ b/ctree.h
@@ -1012,6 +1012,7 @@ struct btrfs_qgroup_status_item {
        __le64 rescan;          /* progress during scanning */
 } __attribute__ ((__packed__));
 
+#define BTRFS_QGROUP_STATUS_VERSION            1
 struct btrfs_block_group_item {
        __le64 used;
        __le64 chunk_objectid;
diff --git a/qgroup-verify.c b/qgroup-verify.c
index 571b4d4f7171..58c735788977 100644
--- a/qgroup-verify.c
+++ b/qgroup-verify.c
@@ -1563,6 +1563,8 @@ static int repair_qgroup_status(struct btrfs_fs_info 
*info)
        btrfs_set_qgroup_status_rescan(path.nodes[0], status_item, 0);
        btrfs_set_qgroup_status_generation(path.nodes[0], status_item,
                                           trans->transid);
+       btrfs_set_qgroup_status_version(path.nodes[0], status_item,
+                                       BTRFS_QGROUP_STATUS_VERSION);
 
        btrfs_mark_buffer_dirty(path.nodes[0]);
 
-- 
2.17.0

--
To unsubscribe from this list: send the line "unsubscribe linux-btrfs" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to