Home
last modified time | relevance | path

Searched refs:s_op (Results 1 – 25 of 101) sorted by relevance

12345

/linux-6.3-rc2/fs/
A Dproc_namespace.c109 if (sb->s_op->show_devname) { in show_vfsmnt()
128 if (sb->s_op->show_options) in show_vfsmnt()
145 if (sb->s_op->show_path) { in show_mountinfo()
146 err = sb->s_op->show_path(m, mnt->mnt_root); in show_mountinfo()
179 if (sb->s_op->show_devname) { in show_mountinfo()
180 err = sb->s_op->show_devname(m, mnt->mnt_root); in show_mountinfo()
190 if (sb->s_op->show_options) in show_mountinfo()
191 err = sb->s_op->show_options(m, mnt->mnt_root); in show_mountinfo()
206 if (sb->s_op->show_devname) { in show_vfsstat()
232 if (sb->s_op->show_stats) { in show_vfsstat()
[all …]
A Dsync.c55 if (sb->s_op->sync_fs) { in sync_filesystem()
56 ret = sb->s_op->sync_fs(sb, 0); in sync_filesystem()
65 if (sb->s_op->sync_fs) { in sync_filesystem()
66 ret = sb->s_op->sync_fs(sb, 1); in sync_filesystem()
83 sb->s_op->sync_fs) in sync_fs_one_sb()
84 sb->s_op->sync_fs(sb, *(int *)arg); in sync_fs_one_sb()
A Dsuper.c82 if (sb->s_op->nr_cached_objects) in super_cache_scan()
83 fs_objects = sb->s_op->nr_cached_objects(sb, sc); in super_cache_scan()
110 freed += sb->s_op->free_cached_objects(sb, sc); in super_cache_scan()
143 if (sb->s_op && sb->s_op->nr_cached_objects) in super_cache_count()
144 total_objects = sb->s_op->nr_cached_objects(sb, sc); in super_cache_count()
258 s->s_op = &default_op; in alloc_super()
469 const struct super_operations *sop = sb->s_op; in generic_shutdown_super()
1709 if (sb->s_op->freeze_fs) { in freeze_super()
1710 ret = sb->s_op->freeze_fs(sb); in freeze_super()
1748 if (sb->s_op->unfreeze_fs) { in thaw_super_locked()
[all …]
A Dioctl.c394 if (sb->s_op->freeze_fs == NULL && sb->s_op->freeze_super == NULL) in ioctl_fsfreeze()
398 if (sb->s_op->freeze_super) in ioctl_fsfreeze()
399 return sb->s_op->freeze_super(sb); in ioctl_fsfreeze()
411 if (sb->s_op->thaw_super) in ioctl_fsthaw()
412 return sb->s_op->thaw_super(sb); in ioctl_fsthaw()
A Dstatfs.c59 if (!dentry->d_sb->s_op->statfs) in statfs_by_dentry()
66 retval = dentry->d_sb->s_op->statfs(dentry, buf); in statfs_by_dentry()
A Dfs_context.c630 if (!sb->s_op->remount_fs) in legacy_reconfigure()
633 return sb->s_op->remount_fs(sb, &fc->sb_flags, in legacy_reconfigure()
/linux-6.3-rc2/net/rds/
A Dib_send.c159 if (send->s_op) { in rds_ib_send_unmap_op()
166 if (send->s_op) { in rds_ib_send_unmap_op()
173 if (send->s_op) { in rds_ib_send_unmap_op()
198 send->s_op = NULL; in rds_ib_send_init_ring()
281 if (send->s_op) { in rds_ib_send_cqe_handler()
289 send->s_op = NULL; in rds_ib_send_cqe_handler()
633 send->s_op = NULL; in rds_ib_xmit()
746 if (prev->s_op) { in rds_ib_xmit()
806 send->s_op = op; in rds_ib_xmit_atomic()
920 send->s_op = NULL; in rds_ib_xmit_rdma()
[all …]
/linux-6.3-rc2/fs/quota/
A Dquota_v1.c67 dquot->dq_sb->s_op->quota_read(dquot->dq_sb, type, (char *)&dqblk, in v1_read_dqblk()
98 ret = dquot->dq_sb->s_op->quota_write(dquot->dq_sb, type, in v1_commit_dqblk()
147 size = sb->s_op->quota_read(sb, type, (char *)&dqhead, in v1_check_quota_file()
166 ret = sb->s_op->quota_read(sb, type, (char *)&dqblk, in v1_read_file_info()
193 ret = sb->s_op->quota_read(sb, type, (char *)&dqblk, in v1_write_file_info()
205 ret = sb->s_op->quota_write(sb, type, (char *)&dqblk, in v1_write_file_info()
A Dquota_v2.c62 size = sb->s_op->quota_read(sb, type, (char *)dqhead, in v2_read_header()
112 size = sb->s_op->quota_read(sb, type, (char *)&dinfo, in v2_read_file_info()
210 size = sb->s_op->quota_write(sb, type, (char *)&dinfo, in v2_write_file_info()
A Dquota_tree.c55 return sb->s_op->quota_read(sb, info->dqi_type, buf, in read_blk()
64 ret = sb->s_op->quota_write(sb, info->dqi_type, buf, in write_blk()
431 ret = sb->s_op->quota_write(sb, type, ddquot, info->dqi_entry_size, in qtree_write_dquot()
690 ret = sb->s_op->quota_read(sb, type, ddquot, info->dqi_entry_size, in qtree_read_dquot()
A Ddquot.c703 if (sb->s_op->sync_fs) { in dquot_quota_sync()
704 ret = sb->s_op->sync_fs(sb, 1); in dquot_quota_sync()
939 return inode->i_sb->s_op->get_dquots(inode); in i_dquot()
2283 if (sb->s_op->sync_fs) in dquot_disable()
2284 sb->s_op->sync_fs(sb, 1); in dquot_disable()
2370 if (!sb->s_op->quota_write || !sb->s_op->quota_read || in dquot_load_quota_sb()
/linux-6.3-rc2/fs/ecryptfs/
A Dsuper.c95 if (!lower_dentry->d_sb->s_op->statfs) in ecryptfs_statfs()
98 rc = lower_dentry->d_sb->s_op->statfs(lower_dentry, buf); in ecryptfs_statfs()
/linux-6.3-rc2/fs/kernfs/
A Dmount.c161 if (sb->s_op == &kernfs_sops) in kernfs_root_from_sb()
204 BUG_ON(sb->s_op != &kernfs_sops); in kernfs_node_dentry()
252 sb->s_op = &kernfs_sops; in kernfs_fill_super()
/linux-6.3-rc2/block/
A Dbdev.c250 if (sb->s_op->freeze_super) in freeze_bdev()
251 error = sb->s_op->freeze_super(sb); in freeze_bdev()
293 if (sb->s_op->thaw_super) in thaw_bdev()
294 error = sb->s_op->thaw_super(sb); in thaw_bdev()
/linux-6.3-rc2/fs/9p/
A Dvfs_super.c66 sb->s_op = &v9fs_super_ops_dotl; in v9fs_fill_super()
69 sb->s_op = &v9fs_super_ops; in v9fs_fill_super()
/linux-6.3-rc2/fs/cachefiles/
A Dcache.c66 !root->d_sb->s_op->statfs || in cachefiles_add_cache()
67 !root->d_sb->s_op->sync_fs || in cachefiles_add_cache()
/linux-6.3-rc2/fs/configfs/
A Dmount.c71 sb->s_op = &configfs_ops; in configfs_fill_super()
/linux-6.3-rc2/security/
A Dinode.c49 sb->s_op = &securityfs_super_operations; in securityfs_fill_super()
/linux-6.3-rc2/fs/ubifs/
A Dfile.c1033 err = inode->i_sb->s_op->write_inode(inode, NULL); in ubifs_writepage()
1061 err = inode->i_sb->s_op->write_inode(inode, NULL); in ubifs_writepage()
1263 err = inode->i_sb->s_op->write_inode(inode, NULL); in do_setattr()
1340 err = inode->i_sb->s_op->write_inode(inode, NULL); in ubifs_fsync()
/linux-6.3-rc2/fs/efivarfs/
A Dsuper.c204 sb->s_op = &efivarfs_ops; in efivarfs_fill_super()
/linux-6.3-rc2/fs/freevxfs/
A Dvxfs_super.c206 sbp->s_op = &vxfs_super_ops; in vxfs_fill_super()
/linux-6.3-rc2/fs/ramfs/
A Dinode.c240 sb->s_op = &ramfs_ops; in ramfs_fill_super()
/linux-6.3-rc2/fs/coda/
A Dinode.c189 sb->s_op = &coda_super_operations; in coda_fill_super()
/linux-6.3-rc2/fs/ocfs2/
A Dquota_global.c380 status = sb->s_op->quota_read(sb, type, (char *)&dinfo, in ocfs2_global_read_info()
433 size = sb->s_op->quota_write(sb, type, (char *)&dinfo, in __ocfs2_global_write_info()
494 err = sb->s_op->quota_read(sb, type, (char *)&dqblk, in __ocfs2_sync_dquot()
/linux-6.3-rc2/fs/efs/
A Dsuper.c313 s->s_op = &efs_superblock_operations; in efs_fill_super()

Completed in 44 milliseconds

12345