summaryrefslogtreecommitdiffstats
path: root/fs/bcachefs/fs.c
diff options
context:
space:
mode:
authorHongbo Li <lihongbo22@huawei.com>2024-02-19 20:24:32 +0800
committerKent Overstreet <kent.overstreet@linux.dev>2024-03-13 21:22:25 -0400
commit79162e829b5e5859409736b19daa2f6d2d1e0b59 (patch)
treea6032a336cdf9f3d166f0e5a24449ba3573cae6a /fs/bcachefs/fs.c
parent2cce3752cec5a895030c8aa534cef3f493145a8e (diff)
downloadlinux-79162e829b5e5859409736b19daa2f6d2d1e0b59.tar.gz
linux-79162e829b5e5859409736b19daa2f6d2d1e0b59.tar.bz2
linux-79162e829b5e5859409736b19daa2f6d2d1e0b59.zip
bcachefs: fix the error code when mounting with incorrect options.
When mount with incorrect options such as: "mount -t bcachefs -o errors=back /dev/loop1 /mnt/bcachefs/". It rebacks the error "mount: /mnt/bcachefs: permission denied." cause bch2_parse_mount_opts returns -1 and bch2_mount throws it up. This is unreasonable. The real error message should be like this: "mount: /mnt/bcachefs: wrong fs type, bad option, bad superblock on /dev/loop1, missing codepage or helper program, or other error." Adding three private error codes for mounting error. Here are: - BCH_ERR_mount_option as the parent class for option error. - BCH_ERR_option_name represents the invalid option name. - BCH_ERR_option_value represents the invalid option value. Signed-off-by: Hongbo Li <lihongbo22@huawei.com> Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to 'fs/bcachefs/fs.c')
-rw-r--r--fs/bcachefs/fs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/fs/bcachefs/fs.c b/fs/bcachefs/fs.c
index 093f5404a655..3f073845bbd7 100644
--- a/fs/bcachefs/fs.c
+++ b/fs/bcachefs/fs.c
@@ -1870,8 +1870,10 @@ static struct dentry *bch2_mount(struct file_system_type *fs_type,
opt_set(opts, read_only, (flags & SB_RDONLY) != 0);
ret = bch2_parse_mount_opts(NULL, &opts, data);
- if (ret)
+ if (ret) {
+ ret = bch2_err_class(ret);
return ERR_PTR(ret);
+ }
if (!dev_name || strlen(dev_name) == 0)
return ERR_PTR(-EINVAL);