Lines Matching refs:fsi
160 struct debugfs_fs_info *fsi = sb->s_fs_info; in _debugfs_apply_options() local
162 struct debugfs_mount_opts *opts = &fsi->mount_opts; in _debugfs_apply_options()
194 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_remount() local
197 err = debugfs_parse_options(data, &fsi->mount_opts); in debugfs_remount()
209 struct debugfs_fs_info *fsi = root->d_sb->s_fs_info; in debugfs_show_options() local
210 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_show_options()
262 struct debugfs_fs_info *fsi; in debug_fill_super() local
265 fsi = kzalloc(sizeof(struct debugfs_fs_info), GFP_KERNEL); in debug_fill_super()
266 sb->s_fs_info = fsi; in debug_fill_super()
267 if (!fsi) { in debug_fill_super()
272 err = debugfs_parse_options(data, &fsi->mount_opts); in debug_fill_super()
288 kfree(fsi); in debug_fill_super()