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 4719962df67d..61c3624ff5db 100644 --- a/ctree.h +++ b/ctree.h @@ -1014,6 +1014,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 9b509abb78fd..4b8bfa69914d 100644 --- a/qgroup-verify.c +++ b/qgroup-verify.c @@ -1598,6 +1598,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.18.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