@@ -9941,7 +9941,7 @@ static int cmd_check(const struct cmd_struct *cmd, int argc, char **argv)
int clear_space_cache = 0;
int qgroup_report = 0;
int qgroups_repaired = 0;
- int qgroup_report_ret;
+ int qgroup_verify_ret;
unsigned ctree_flags = OPEN_CTREE_EXCLUSIVE;
int force = 0;
@@ -10198,8 +10198,8 @@ static int cmd_check(const struct cmd_struct *cmd, int argc, char **argv)
uuidbuf);
ret = qgroup_verify_all(info);
err |= !!ret;
- if (ret == 0)
- err |= !!report_qgroups(1);
+ if (ret >= 0)
+ report_qgroups(1);
goto close_out;
}
if (subvolid) {
@@ -10433,21 +10433,21 @@ static int cmd_check(const struct cmd_struct *cmd, int argc, char **argv)
ctx.tp = TASK_QGROUPS;
task_start(ctx.info, &ctx.start_time, &ctx.item_count);
}
- ret = qgroup_verify_all(info);
+ qgroup_verify_ret = qgroup_verify_all(info);
task_stop(ctx.info);
- err |= !!ret;
- if (ret) {
+ if (qgroup_verify_ret < 0) {
error("failed to check quota groups");
+ err |= !!qgroup_verify_ret;
goto out;
}
- qgroup_report_ret = report_qgroups(0);
+ report_qgroups(0);
ret = repair_qgroups(info, &qgroups_repaired);
if (ret) {
error("failed to repair quota groups");
goto out;
}
- if (qgroup_report_ret && (!qgroups_repaired || ret))
- err |= qgroup_report_ret;
+ if (qgroup_verify_ret && (!qgroups_repaired || ret))
+ err |= !!qgroup_verify_ret;
ret = 0;
} else {
fprintf(stderr,
@@ -1311,18 +1311,13 @@ static int report_qgroup_difference(struct qgroup_count *count, int verbose)
/*
* Report qgroups errors
- * Return 0 if nothing wrong.
- * Return <0 if any qgroup is inconsistent.
- *
* @all: if set, all qgroup will be checked and reported even already
* inconsistent or under rescan.
*/
-int report_qgroups(int all)
+void report_qgroups(int all)
{
struct rb_node *node;
struct qgroup_count *c;
- bool found_err = false;
- bool skip_err = false;
if (!repair && counts.rescan_running) {
if (all) {
@@ -1331,34 +1326,26 @@ int report_qgroups(int all)
} else {
printf(
"Qgroup rescan is running, qgroups will not be printed.\n");
- return 0;
+ return;
}
}
/*
* It's possible that rescan hasn't been initialized yet.
*/
if (counts.qgroup_inconsist && !counts.rescan_running &&
- counts.rescan_running == 0) {
+ counts.rescan_running == 0)
printf(
-"Rescan hasn't been initialized, a difference in qgroup accounting is expected\n");
- skip_err = true;
- }
+"Rescan hasn't been initialzied, a difference in qgroup accounting is expected\n");
if (counts.qgroup_inconsist && !counts.rescan_running)
fprintf(stderr, "Qgroup are marked as inconsistent.\n");
node = rb_first(&counts.root);
while (node) {
c = rb_entry(node, struct qgroup_count, rb_node);
- if (report_qgroup_difference(c, all)) {
- list_add_tail(&c->bad_list, &bad_qgroups);
- found_err = true;
- }
+ report_qgroup_difference(c, all);
node = rb_next(node);
}
- if (found_err && !skip_err)
- return -EUCLEAN;
- return 0;
}
void free_qgroup_counts(void)
@@ -1393,9 +1380,29 @@ void free_qgroup_counts(void)
}
}
+static bool is_bad_qgroup(struct qgroup_count *count)
+{
+ struct qgroup_info *info = &count->info;
+ struct qgroup_info *disk = &count->diskinfo;
+ s64 excl_diff = info->exclusive - disk->exclusive;
+ s64 ref_diff = info->referenced - disk->referenced;
+
+ return (excl_diff || ref_diff);
+}
+
+/*
+ * Verify all qgroup numbers.
+ *
+ * Return <0 for fatal errors (e.g. ENOMEM or failed to read quota tree)
+ * Return 0 if all qgroup numbers are correct or no need to check (under rescan)
+ * Return >0 if qgroup numbers are inconsistent.
+ */
int qgroup_verify_all(struct btrfs_fs_info *info)
{
int ret;
+ bool found_err = false;
+ bool skip_err = false;
+ struct rb_node *node;
if (!info->quota_enabled)
return 0;
@@ -1413,6 +1420,12 @@ int qgroup_verify_all(struct btrfs_fs_info *info)
goto out;
}
+ if (counts.rescan_running)
+ skip_err = true;
+ if (counts.qgroup_inconsist && !counts.rescan_running &&
+ counts.rescan_running == 0)
+ skip_err = true;
+
/*
* Put all extent refs into our rbtree
*/
@@ -1430,6 +1443,22 @@ int qgroup_verify_all(struct btrfs_fs_info *info)
ret = account_all_refs(1, 0);
+ /*
+ * Do the correctness check here, so for callers who don't want
+ * verbose report can skip calling report_qgroups()
+ */
+ node = rb_first(&counts.root);
+ while (node) {
+ struct qgroup_count *c;
+
+ c = rb_entry(node, struct qgroup_count, rb_node);
+ if (is_bad_qgroup(c)) {
+ list_add_tail(&c->bad_list, &bad_qgroups);
+ found_err = true;
+ }
+ node = rb_next(node);
+ }
+
out:
/*
* Don't free the qgroup count records as they will be walked
@@ -1437,6 +1466,8 @@ out:
*/
free_tree_blocks();
free_ref_tree(&by_bytenr);
+ if (!ret && !skip_err && found_err)
+ ret = 1;
return ret;
}
@@ -23,7 +23,7 @@
#include "ctree.h"
int qgroup_verify_all(struct btrfs_fs_info *info);
-int report_qgroups(int all);
+void report_qgroups(int all);
int repair_qgroups(struct btrfs_fs_info *info, int *repaired);
int print_extent_state(struct btrfs_fs_info *info, u64 subvol);