Lines Matching refs:fsi
151 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_apply_options() local
153 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_apply_options()
167 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_remount() local
170 err = debugfs_parse_options(data, &fsi->mount_opts); in debugfs_remount()
182 struct debugfs_fs_info *fsi = root->d_sb->s_fs_info; in debugfs_show_options() local
183 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_show_options()
235 struct debugfs_fs_info *fsi; in debug_fill_super() local
238 fsi = kzalloc(sizeof(struct debugfs_fs_info), GFP_KERNEL); in debug_fill_super()
239 sb->s_fs_info = fsi; in debug_fill_super()
240 if (!fsi) { in debug_fill_super()
245 err = debugfs_parse_options(data, &fsi->mount_opts); in debug_fill_super()
261 kfree(fsi); in debug_fill_super()