]> git.sesse.net Git - bcachefs-tools-debian/blobdiff - cmd_fsck.c
include/linux/bitmap.h: inline __bitmap_weight and __bitmap_and
[bcachefs-tools-debian] / cmd_fsck.c
index 17750675ffe5dbb8a2b6270ee304f1f4ec67a7e0..4e19080a699fe73de4103a49f9c9ff9c9d6f6415 100644 (file)
@@ -1,8 +1,8 @@
 
 #include "cmds.h"
-#include "error.h"
+#include "libbcachefs/error.h"
 #include "libbcachefs.h"
-#include "super.h"
+#include "libbcachefs/super.h"
 #include "tools-util.h"
 
 static void usage(void)
@@ -23,39 +23,41 @@ 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;
 
+       opt_set(opts, degraded, true);
+       opt_set(opts, fix_errors, FSCK_OPT_ASK);
+
        while ((opt = getopt(argc, argv, "pynfvh")) != -1)
                switch (opt) {
                case 'p':
-                       opts.fix_errors = FSCK_ERR_YES;
+                       opt_set(opts, fix_errors, FSCK_OPT_YES);
                        break;
                case 'y':
-                       opts.fix_errors = FSCK_ERR_YES;
+                       opt_set(opts, fix_errors, FSCK_OPT_YES);
                        break;
                case 'n':
-                       opts.nochanges = true;
-                       opts.fix_errors = 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)));
 
        bch2_fs_stop(c);
        return 0;