diff options
author | 2025-03-25 13:19:40 -0400 | |
---|---|---|
committer | 2025-03-28 22:31:47 -0400 | |
commit | a7cdf2276eacefe83577f827521247283ccee1e9 (patch) | |
tree | ee48522fa9ce7dd4c15b4c75f3617eb778909c3c /fs/bcachefs/opts.h | |
parent | bcachefs: bch2_time_stats_init_no_pcpu() (diff) | |
download | wireguard-linux-a7cdf2276eacefe83577f827521247283ccee1e9.tar.xz wireguard-linux-a7cdf2276eacefe83577f827521247283ccee1e9.zip |
bcachefs: Add an "ignore unknown" option to bch2_parse_mount_opts()
To be used by the mount helper in userspace, where we still have options
to be parsed by other layers.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
Diffstat (limited to '')
-rw-r--r-- | fs/bcachefs/opts.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/bcachefs/opts.h b/fs/bcachefs/opts.h index 9a3102f30e11..4d06313076ff 100644 --- a/fs/bcachefs/opts.h +++ b/fs/bcachefs/opts.h @@ -636,7 +636,7 @@ int bch2_opts_check_may_set(struct bch_fs *); int bch2_parse_one_mount_opt(struct bch_fs *, struct bch_opts *, struct printbuf *, const char *, const char *); int bch2_parse_mount_opts(struct bch_fs *, struct bch_opts *, struct printbuf *, - char *); + char *, bool); /* inode opts: */ |