Lines Matching refs:fsi
120 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_apply_options() local
122 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_apply_options()
136 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_remount() local
139 err = debugfs_parse_options(data, &fsi->mount_opts); in debugfs_remount()
151 struct debugfs_fs_info *fsi = root->d_sb->s_fs_info; in debugfs_show_options() local
152 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_show_options()
205 struct debugfs_fs_info *fsi; in debug_fill_super() local
208 fsi = kzalloc(sizeof(struct debugfs_fs_info), GFP_KERNEL); in debug_fill_super()
209 sb->s_fs_info = fsi; in debug_fill_super()
210 if (!fsi) { in debug_fill_super()
215 err = debugfs_parse_options(data, &fsi->mount_opts); in debug_fill_super()
231 kfree(fsi); in debug_fill_super()