diff options
| author | Kent Overstreet <kent.overstreet@linux.dev> | 2024-10-17 22:29:23 -0400 |
|---|---|---|
| committer | Kent Overstreet <kent.overstreet@linux.dev> | 2024-10-18 00:49:48 -0400 |
| commit | b96f8cd3870a140524fb8cec58790a4be04f41d9 (patch) | |
| tree | 38426e28b1135166818dbe02df6113c717e55c68 | |
| parent | bcachefs: skip mount option handle for empty string. (diff) | |
| download | linux-b96f8cd3870a140524fb8cec58790a4be04f41d9.tar.gz linux-b96f8cd3870a140524fb8cec58790a4be04f41d9.zip | |
bcachefs: Run in-kernel offline fsck without ratelimit errors
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
| -rw-r--r-- | fs/bcachefs/chardev.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/bcachefs/chardev.c b/fs/bcachefs/chardev.c index cbfd88f98472..2182b555c112 100644 --- a/fs/bcachefs/chardev.c +++ b/fs/bcachefs/chardev.c @@ -225,6 +225,7 @@ static long bch2_ioctl_fsck_offline(struct bch_ioctl_fsck_offline __user *user_a opt_set(thr->opts, stdio, (u64)(unsigned long)&thr->thr.stdio); opt_set(thr->opts, read_only, 1); + opt_set(thr->opts, ratelimit_errors, 0); /* We need request_key() to be called before we punt to kthread: */ opt_set(thr->opts, nostart, true); |
