Lines Matching refs:fsi
126 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_apply_options() local
128 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_apply_options()
142 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_remount() local
145 err = debugfs_parse_options(data, &fsi->mount_opts); in debugfs_remount()
157 struct debugfs_fs_info *fsi = root->d_sb->s_fs_info; in debugfs_show_options() local
158 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_show_options()
202 struct debugfs_fs_info *fsi; in debug_fill_super() local
207 fsi = kzalloc(sizeof(struct debugfs_fs_info), GFP_KERNEL); in debug_fill_super()
208 sb->s_fs_info = fsi; in debug_fill_super()
209 if (!fsi) { in debug_fill_super()
214 err = debugfs_parse_options(data, &fsi->mount_opts); in debug_fill_super()
230 kfree(fsi); in debug_fill_super()