Lines Matching refs:fc
644 static int bpf_parse_param(struct fs_context *fc, struct fs_parameter *param) in bpf_parse_param() argument
646 struct bpf_mount_opts *opts = fc->fs_private; in bpf_parse_param()
650 opt = fs_parse(fc, bpf_fs_parameters, param, &result); in bpf_parse_param()
657 opt = vfs_parse_fs_param_source(fc, param); in bpf_parse_param()
762 static int bpf_fill_super(struct super_block *sb, struct fs_context *fc) in bpf_fill_super() argument
765 struct bpf_mount_opts *opts = fc->fs_private; in bpf_fill_super()
783 static int bpf_get_tree(struct fs_context *fc) in bpf_get_tree() argument
785 return get_tree_nodev(fc, bpf_fill_super); in bpf_get_tree()
788 static void bpf_free_fc(struct fs_context *fc) in bpf_free_fc() argument
790 kfree(fc->fs_private); in bpf_free_fc()
802 static int bpf_init_fs_context(struct fs_context *fc) in bpf_init_fs_context() argument
812 fc->fs_private = opts; in bpf_init_fs_context()
813 fc->ops = &bpf_context_ops; in bpf_init_fs_context()