]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - cmd_fsck.c
Update bcachefs sources to feaca6edbd24 mean and variance: Promote to lib/math
[bcachefs-tools-debian] / cmd_fsck.c
index cf20fdd8b81c3a18c2eb715fa2c1773b0b43ed92..f7dcae98e518917d9fa3ba5636233111fb4aa8d9 100644 (file)
@@ -12,20 +12,23 @@ static void usage(void)
             "Usage: bcachefs fsck [OPTION]... <devices>\n"
             "\n"
             "Options:\n"
-            "  -p                     Automatic repair (no questions)\n"
-            "  -n                     Don't repair, only check for errors\n"
-            "  -y                     Assume \"yes\" to all questions\n"
-            "  -f                     Force checking even if filesystem is marked clean\n"
-            " --reconstruct_alloc     Reconstruct the alloc btree\n"
-            "  -v                     Be verbose\n"
-            "  -h                     Display this help and exit\n"
+            "  -p                      Automatic repair (no questions)\n"
+            "  -n                      Don't repair, only check for errors\n"
+            "  -y                      Assume \"yes\" to all questions\n"
+            "  -f                      Force checking even if filesystem is marked clean\n"
+            "  -r, --ratelimit_errors  Don't display more than 10 errors of a given type\n"
+            "  -R, --reconstruct_alloc Reconstruct the alloc btree\n"
+            "  -v                      Be verbose\n"
+            "  -h, --help              Display this help and exit\n"
             "Report bugs to <linux-bcachefs@vger.kernel.org>");
 }
 
 int cmd_fsck(int argc, char *argv[])
 {
        static const struct option longopts[] = {
+               { "ratelimit_errors",   no_argument,            NULL, 'r' },
                { "reconstruct_alloc",  no_argument,            NULL, 'R' },
+               { "help",               no_argument,            NULL, 'h' },
                { NULL }
        };
        struct bch_opts opts = bch2_opts_empty();
@@ -34,22 +37,20 @@ int cmd_fsck(int argc, char *argv[])
 
        opt_set(opts, degraded, true);
        opt_set(opts, fsck, true);
-       opt_set(opts, fix_errors, FSCK_OPT_ASK);
+       opt_set(opts, fix_errors, FSCK_FIX_ask);
 
        while ((opt = getopt_long(argc, argv,
-                                 "apynfo:vh",
+                                 "apynfo:rvh",
                                  longopts, NULL)) != -1)
                switch (opt) {
                case 'a': /* outdated alias for -p */
                case 'p':
-                       opt_set(opts, fix_errors, FSCK_OPT_YES);
-                       break;
                case 'y':
-                       opt_set(opts, fix_errors, FSCK_OPT_YES);
+                       opt_set(opts, fix_errors, FSCK_FIX_yes);
                        break;
                case 'n':
                        opt_set(opts, nochanges, true);
-                       opt_set(opts, fix_errors, FSCK_OPT_NO);
+                       opt_set(opts, fix_errors, FSCK_FIX_no);
                        break;
                case 'f':
                        /* force check, even if filesystem marked clean: */
@@ -59,6 +60,9 @@ int cmd_fsck(int argc, char *argv[])
                        if (ret)
                                return ret;
                        break;
+               case 'r':
+                       opt_set(opts, ratelimit_errors, true);
+                       break;
                case 'R':
                        opt_set(opts, reconstruct_alloc, true);
                        break;
@@ -93,11 +97,11 @@ int cmd_fsck(int argc, char *argv[])
                exit(8);
        }
 
-       if (test_bit(BCH_FS_ERRORS_FIXED, &c->flags)) {
+       if (test_bit(BCH_FS_errors_fixed, &c->flags)) {
                fprintf(stderr, "%s: errors fixed\n", c->name);
                ret |= 1;
        }
-       if (test_bit(BCH_FS_ERROR, &c->flags)) {
+       if (test_bit(BCH_FS_error, &c->flags)) {
                fprintf(stderr, "%s: still has errors\n", c->name);
                ret |= 4;
        }