diff options
author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-09-02 04:39:42 +0200 |
---|---|---|
committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-09-21 17:39:48 +0200 |
commit | 4f19a60c3226733917aac815fc156a0ea03b335e (patch) | |
tree | 09bfcb1189e487c0444e24a066fe0693585e2f96 /fs/bcachefs/util.c | |
parent | bcachefs: Use mm_account_reclaimed_pages() when freeing btree nodes (diff) | |
download | linux-4f19a60c3226733917aac815fc156a0ea03b335e.tar.xz linux-4f19a60c3226733917aac815fc156a0ea03b335e.zip |
bcachefs: Options for recovery_passes, recovery_passes_exclude
This adds mount options for specifying recovery passes to run, or
exclude; the immediate need for this is that backpointers fsck is having
trouble completing, so we need a way to skip it.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to '')
-rw-r--r-- | fs/bcachefs/util.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/util.c b/fs/bcachefs/util.c index 8b4e8395a908..42f565c76181 100644 --- a/fs/bcachefs/util.c +++ b/fs/bcachefs/util.c @@ -214,7 +214,7 @@ u64 bch2_read_flag_list(const char *opt, const char * const list[]) s = strim(d); - while ((p = strsep(&s, ","))) { + while ((p = strsep(&s, ",;"))) { int flag = match_string(list, -1, p); if (flag < 0) { |