bcachefs-tools/c_src/cmd_counters.c
Kent Overstreet 2bb681dbd1 reset-counters --counters=
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2025-11-15 16:26:08 -05:00

85 lines
1.9 KiB
C

#include <getopt.h>
#include "cmds.h"
#include "libbcachefs.h"
#include "init/fs.h"
#include "sb/counters.h"
#include "sb/io.h"
static void reset_counters_usage(void)
{
puts("bcachefs reset-counters \n"
"Usage: bcachefs reset-counters device\n"
"\n"
"Options:\n"
" -c, --counters=<counters> reset specific counters, not all\n"
" -h, --help display this help and exit\n"
"\n"
"Report bugs to <linux-bcachefs@vger.kernel.org>");
exit(EXIT_SUCCESS);
}
int cmd_reset_counters(int argc, char *argv[])
{
static const struct option longopts[] = {
{ "counters", required_argument, NULL, 'c' },
{ "help", no_argument, NULL, 'h' },
{ NULL }
};
int opt;
DARRAY(enum bch_persistent_counters) to_reset = {};
while ((opt = getopt_long(argc, argv, "h", longopts, NULL)) != -1)
switch (opt) {
case 'c': {
char *p;
while ((p = strsep(&optarg, ","))) {
ssize_t v = match_string(bch2_counter_names, BCH_COUNTER_NR, p);
if (v < 0)
die("invalid counter %s", p);
darray_push(&to_reset, v);
}
break;
}
case 'h':
reset_counters_usage();
break;
}
args_shift(optind);
char *dev = arg_pop();
if (!dev) {
reset_counters_usage();
die("please supply a device");
}
if (argc)
die("too many arguments");
/* scan for devices, open full fs */
struct bch_opts opts = bch2_opts_empty();
opt_set(opts, nostart, true);
opt_set(opts, degraded, BCH_DEGRADED_very);
darray_const_str devs = get_or_split_cmdline_devs(1, &dev);
struct bch_fs *c = bch2_fs_open(&devs, &opts);
int ret = PTR_ERR_OR_ZERO(c);
if (ret)
die("Error opening filesystem: %s", bch2_err_str(ret));
if (!to_reset.nr) {
for (unsigned i = 0; i < BCH_COUNTER_NR; i++)
percpu_u64_set(&c->counters[i], 0);
} else {
darray_for_each(to_reset, i)
percpu_u64_set(&c->counters[*i], 0);
}
scoped_guard(mutex, &c->sb_lock)
bch2_write_super(c);
bch2_fs_stop(c);
return 0;
}