]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - cmd_fsck.c
Update bcachefs sources to d7f6da1d60 bcachefs: fix missing include
[bcachefs-tools-debian] / cmd_fsck.c
index c8a8df6d8bf019697b64c8d5f6c7ce076cdc66f6..d16760acfd3b363b54485f973e73d183fd5d6462 100644 (file)
@@ -1,7 +1,8 @@
 
 #include "cmds.h"
+#include "libbcachefs/error.h"
 #include "libbcachefs.h"
-#include "super.h"
+#include "libbcachefs/super.h"
 #include "tools-util.h"
 
 static void usage(void)
@@ -10,7 +11,7 @@ static void usage(void)
             "Usage: bcachefs fsck [OPTION]... <devices>\n"
             "\n"
             "Options:\n"
-            "  -p     Automatic repair (no questions\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"
@@ -22,40 +23,48 @@ static void usage(void)
 int cmd_fsck(int argc, char *argv[])
 {
        struct bch_opts opts = bch2_opts_empty();
-       struct bch_fs *c = NULL;
-       const char *err;
-       int opt;
+       int opt, ret = 0;
 
-       while ((opt = getopt(argc, argv, "pynfvh")) != -1)
+       opt_set(opts, degraded, true);
+       opt_set(opts, fix_errors, FSCK_OPT_ASK);
+
+       while ((opt = getopt(argc, argv, "apynfvh")) != -1)
                switch (opt) {
+               case 'a': /* outdated alias for -p */
                case 'p':
-                       fsck_err_opt = FSCK_ERR_YES;
+                       opt_set(opts, fix_errors, FSCK_OPT_YES);
                        break;
                case 'y':
-                       fsck_err_opt = FSCK_ERR_YES;
+                       opt_set(opts, fix_errors, FSCK_OPT_YES);
                        break;
                case 'n':
-                       opts.nochanges = true;
-                       fsck_err_opt = FSCK_ERR_NO;
+                       opt_set(opts, nochanges, true);
+                       opt_set(opts, fix_errors, FSCK_OPT_NO);
                        break;
                case 'f':
                        /* force check, even if filesystem marked clean: */
                        break;
                case 'v':
-                       opts.verbose_recovery = true;
+                       opt_set(opts, verbose_recovery, true);
                        break;
                case 'h':
                        usage();
                        exit(EXIT_SUCCESS);
                }
+       args_shift(optind);
 
-       if (optind >= argc)
+       if (!argc)
                die("Please supply device(s) to check");
 
-       err = bch2_fs_open(argv + optind, argc - optind, opts, &c);
-       if (err)
-               die("error opening %s: %s", argv[optind], err);
+       struct bch_fs *c = bch2_fs_open(argv, argc, opts);
+       if (IS_ERR(c))
+               die("error opening %s: %s", argv[0], strerror(-PTR_ERR(c)));
+
+       if (test_bit(BCH_FS_FSCK_FIXED_ERRORS, &c->flags))
+               ret = 2;
+       if (test_bit(BCH_FS_FSCK_UNFIXED_ERRORS, &c->flags))
+               ret = 4;
 
        bch2_fs_stop(c);
-       return 0;
+       return ret;
 }