Lines Matching refs:fsi
159 struct debugfs_fs_info *fsi = sb->s_fs_info; in _debugfs_apply_options() local
161 struct debugfs_mount_opts *opts = &fsi->mount_opts; in _debugfs_apply_options()
193 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_remount() local
196 err = debugfs_parse_options(data, &fsi->mount_opts); in debugfs_remount()
208 struct debugfs_fs_info *fsi = root->d_sb->s_fs_info; in debugfs_show_options() local
209 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_show_options()
261 struct debugfs_fs_info *fsi; in debug_fill_super() local
264 fsi = kzalloc(sizeof(struct debugfs_fs_info), GFP_KERNEL); in debug_fill_super()
265 sb->s_fs_info = fsi; in debug_fill_super()
266 if (!fsi) { in debug_fill_super()
271 err = debugfs_parse_options(data, &fsi->mount_opts); in debug_fill_super()
287 kfree(fsi); in debug_fill_super()