1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <linux/fs_context.h>
4 #include <linux/fs_parser.h>
9 extern const struct fs_parameter_spec ovl_parameter_spec
[];
10 extern const struct constant_table ovl_parameter_redirect_dir
[];
12 /* The set of options that user requested explicitly via mount options */
20 #define OVL_MAX_STACK 500
22 struct ovl_fs_context_layer
{
27 struct ovl_fs_context
{
31 size_t nr
; /* includes nr_data */
33 struct ovl_opt_set set
;
34 struct ovl_fs_context_layer
*lower
;
37 int ovl_init_fs_context(struct fs_context
*fc
);
38 void ovl_free_fs(struct ovl_fs
*ofs
);
39 int ovl_fs_params_verify(const struct ovl_fs_context
*ctx
,
40 struct ovl_config
*config
);
41 int ovl_show_options(struct seq_file
*m
, struct dentry
*dentry
);
42 const char *ovl_xino_mode(struct ovl_config
*config
);