Home
last modified time | relevance | path

Searched refs:fsi (Results 1 – 5 of 5) sorted by relevance

/fs/devpts/
Dinode.c175 void devpts_release(struct pts_fs_info *fsi) in devpts_release() argument
177 deactivate_super(fsi->sb); in devpts_release()
273 struct pts_fs_info *fsi = DEVPTS_SB(sb); in mknod_ptmx() local
274 struct pts_mount_opts *opts = &fsi->mount_opts; in mknod_ptmx()
281 if (fsi->ptmx_dentry) { in mknod_ptmx()
312 fsi->ptmx_dentry = dentry; in mknod_ptmx()
319 static void update_ptmx_mode(struct pts_fs_info *fsi) in update_ptmx_mode() argument
322 if (fsi->ptmx_dentry) { in update_ptmx_mode()
323 inode = d_inode(fsi->ptmx_dentry); in update_ptmx_mode()
324 inode->i_mode = S_IFCHR|fsi->mount_opts.ptmxmode; in update_ptmx_mode()
[all …]
/fs/jfs/
Djfs_dtree.c1349 int fsi, stblsize; in dtSplitPage() local
1429 fsi = rp->header.stblindex + stblsize; in dtSplitPage()
1430 rp->header.freelist = fsi; in dtSplitPage()
1431 rp->header.freecnt = rp->header.maxslot - fsi; in dtSplitPage()
1456 f = &rp->slot[fsi]; in dtSplitPage()
1457 for (fsi++; fsi < rp->header.maxslot; f++, fsi++) in dtSplitPage()
1458 f->next = fsi; in dtSplitPage()
1572 fsi = rp->header.freelist; in dtSplitPage()
1573 f = &rp->slot[fsi]; in dtSplitPage()
1574 for (fsi++; fsi < rp->header.maxslot; f++, fsi++) in dtSplitPage()
[all …]
/fs/tracefs/
Dinode.c215 struct tracefs_fs_info *fsi = sb->s_fs_info; in tracefs_apply_options() local
217 struct tracefs_mount_opts *opts = &fsi->mount_opts; in tracefs_apply_options()
231 struct tracefs_fs_info *fsi = sb->s_fs_info; in tracefs_remount() local
234 err = tracefs_parse_options(data, &fsi->mount_opts); in tracefs_remount()
246 struct tracefs_fs_info *fsi = root->d_sb->s_fs_info; in tracefs_show_options() local
247 struct tracefs_mount_opts *opts = &fsi->mount_opts; in tracefs_show_options()
270 struct tracefs_fs_info *fsi; in trace_fill_super() local
275 fsi = kzalloc(sizeof(struct tracefs_fs_info), GFP_KERNEL); in trace_fill_super()
276 sb->s_fs_info = fsi; in trace_fill_super()
277 if (!fsi) { in trace_fill_super()
[all …]
/fs/debugfs/
Dinode.c127 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_apply_options() local
129 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_apply_options()
143 struct debugfs_fs_info *fsi = sb->s_fs_info; in debugfs_remount() local
146 err = debugfs_parse_options(data, &fsi->mount_opts); in debugfs_remount()
158 struct debugfs_fs_info *fsi = root->d_sb->s_fs_info; in debugfs_show_options() local
159 struct debugfs_mount_opts *opts = &fsi->mount_opts; in debugfs_show_options()
203 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()
[all …]
/fs/ramfs/
Dinode.c210 struct ramfs_fs_info *fsi; in ramfs_fill_super() local
216 fsi = kzalloc(sizeof(struct ramfs_fs_info), GFP_KERNEL); in ramfs_fill_super()
217 sb->s_fs_info = fsi; in ramfs_fill_super()
218 if (!fsi) in ramfs_fill_super()
221 err = ramfs_parse_options(data, &fsi->mount_opts); in ramfs_fill_super()
232 inode = ramfs_get_inode(sb, NULL, S_IFDIR | fsi->mount_opts.mode, 0); in ramfs_fill_super()