| /linux/net/rds/ |
| H A D | ib_send.c | 159 if (send->s_op) { in rds_ib_send_unmap_op() 160 rm = container_of(send->s_op, struct rds_message, data); in rds_ib_send_unmap_op() 161 rds_ib_send_unmap_data(ic, send->s_op, wc_status); in rds_ib_send_unmap_op() 166 if (send->s_op) { in rds_ib_send_unmap_op() 167 rm = container_of(send->s_op, struct rds_message, rdma); in rds_ib_send_unmap_op() 168 rds_ib_send_unmap_rdma(ic, send->s_op, wc_status); in rds_ib_send_unmap_op() 173 if (send->s_op) { in rds_ib_send_unmap_op() 174 rm = container_of(send->s_op, struct rds_message, atomic); in rds_ib_send_unmap_op() 175 rds_ib_send_unmap_atomic(ic, send->s_op, wc_status); in rds_ib_send_unmap_op() 198 send->s_op in rds_ib_send_init_ring() [all...] |
| /linux/fs/ |
| H A D | super.c | 201 if (sb->s_op->nr_cached_objects) in super_cache_scan() 202 fs_objects = sb->s_op->nr_cached_objects(sb, sc); in super_cache_scan() 229 freed += sb->s_op->free_cached_objects(sb, sc); in super_cache_scan() 262 if (sb->s_op && sb->s_op->nr_cached_objects) in super_cache_count() 263 total_objects = sb->s_op->nr_cached_objects(sb, sc); in super_cache_count() 375 s->s_op = &default_op; in alloc_super() 620 const struct super_operations *sop = sb->s_op; in generic_shutdown_super() 1192 if (!sb->s_op->freeze_fs && !sb->s_op->freeze_super) in filesystems_freeze_callback() 1201 if (sb->s_op->freeze_super) in filesystems_freeze_callback() 1202 sb->s_op->freeze_super(sb, FREEZE_EXCL | FREEZE_HOLDER_KERNEL, in filesystems_freeze_callback() [all …]
|
| H A D | sync.c | 55 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()
|
| H A D | ioctl.c | 393 if (sb->s_op->freeze_fs == NULL && sb->s_op->freeze_super == NULL) in ioctl_fsfreeze() 397 if (sb->s_op->freeze_super) in ioctl_fsfreeze() 398 return sb->s_op->freeze_super(sb, FREEZE_HOLDER_USERSPACE, NULL); in ioctl_fsfreeze() 410 if (sb->s_op->thaw_super) in ioctl_fsthaw() 411 return sb->s_op->thaw_super(sb, FREEZE_HOLDER_USERSPACE, NULL); in ioctl_fsthaw()
|
| H A D | inode.c | 343 const struct super_operations *ops = sb->s_op; in alloc_inode() 392 const struct super_operations *ops = inode->i_sb->s_op; in destroy_inode() 825 const struct super_operations *op = inode->i_sb->s_op; in evict() 1925 const struct super_operations *op = inode->i_sb->s_op; in iput_final() 2192 if ((flags & IOCB_NOWAIT) && inode->i_sb->s_op->dirty_inode) in generic_update_time()
|
| H A D | fs-writeback.c | 1580 if (inode->i_sb->s_op->write_inode && !is_bad_inode(inode)) { in write_inode() 1582 ret = inode->i_sb->s_op->write_inode(inode, wbc); in write_inode() 2608 if (sb->s_op->dirty_inode) { in __mark_inode_dirty() 2609 sb->s_op->dirty_inode(inode, in __mark_inode_dirty()
|
| H A D | namespace.c | 1910 if (flags & MNT_FORCE && sb->s_op->umount_begin) { in do_umount() 1911 sb->s_op->umount_begin(sb); in do_umount() 5180 if (root->d_sb->s_op->show_path) in show_path() 5181 return root->d_sb->s_op->show_path(m, root); in show_path() 5351 if (sb->s_op->show_devname) { in statmount_sb_source() 5355 ret = sb->s_op->show_devname(seq, s->mnt->mnt_root); in statmount_sb_source() 5389 if (sb->s_op->show_options) { in statmount_mnt_opts() 5390 err = sb->s_op->show_options(seq, mnt->mnt_root); in statmount_mnt_opts() 5445 if (!sb->s_op->show_options) in statmount_opt_array() 5448 err = sb->s_op->show_options(seq, mnt->mnt_root); in statmount_opt_array()
|
| /linux/fs/quota/ |
| H A D | quota_v1.c | 67 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() 168 ret = sb->s_op->quota_read(sb, type, (char *)&dqblk, in v1_read_file_info() 198 ret = sb->s_op->quota_read(sb, type, (char *)&dqblk, in v1_write_file_info() 210 ret = sb->s_op->quota_write(sb, type, (char *)&dqblk, in v1_write_file_info()
|
| H A D | quota_v2.c | 62 size = sb->s_op->quota_read(sb, type, (char *)dqhead, in v2_read_header() 114 size = sb->s_op->quota_read(sb, type, (char *)&dinfo, in v2_read_file_info() 218 size = sb->s_op->quota_write(sb, type, (char *)&dinfo, in v2_write_file_info()
|
| H A D | quota_tree.c | 61 return sb->s_op->quota_read(sb, info->dqi_type, buf, in read_blk() 70 ret = sb->s_op->quota_write(sb, info->dqi_type, buf, in write_blk() 462 ret = sb->s_op->quota_write(sb, type, ddquot, info->dqi_entry_size, in qtree_write_dquot() 754 ret = sb->s_op->quota_read(sb, type, ddquot, info->dqi_entry_size, in qtree_read_dquot()
|
| /linux/fs/ecryptfs/ |
| H A D | super.c | 92 if (!lower_dentry->d_sb->s_op->statfs) in ecryptfs_statfs() 95 rc = lower_dentry->d_sb->s_op->statfs(lower_dentry, buf); in ecryptfs_statfs()
|
| /linux/fs/kernfs/ |
| H A D | mount.c | 185 if (sb->s_op == &kernfs_sops) in kernfs_root_from_sb() 229 BUG_ON(sb->s_op != &kernfs_sops); in kernfs_node_dentry() 296 sb->s_op = &kernfs_sops; in kernfs_fill_super()
|
| /linux/fs/9p/ |
| H A D | vfs_super.c | 44 sb->s_op = &v9fs_super_ops_dotl; in v9fs_fill_super() 48 sb->s_op = &v9fs_super_ops; in v9fs_fill_super()
|
| /linux/drivers/soc/mediatek/ |
| H A D | mtk-cmdq-helper.c | 531 enum cmdq_logic_op s_op, in cmdq_pkt_logic_command() argument 536 if (!left_operand || !right_operand || s_op >= CMDQ_LOGIC_MAX) in cmdq_pkt_logic_command() 544 inst.sop = s_op; in cmdq_pkt_logic_command()
|
| /linux/fs/cachefiles/ |
| H A D | cache.c | 67 !root->d_sb->s_op->statfs || in cachefiles_add_cache() 68 !root->d_sb->s_op->sync_fs || in cachefiles_add_cache()
|
| /linux/fs/configfs/ |
| H A D | mount.c | 71 sb->s_op = &configfs_ops; in configfs_fill_super()
|
| /linux/fs/ubifs/ |
| H A D | file.c | 1007 err = inode->i_sb->s_op->write_inode(inode, NULL); in ubifs_writepage() 1033 err = inode->i_sb->s_op->write_inode(inode, NULL); in ubifs_writepage() 1250 err = inode->i_sb->s_op->write_inode(inode, NULL); in do_setattr() 1327 err = inode->i_sb->s_op->write_inode(inode, NULL); in ubifs_fsync()
|
| /linux/security/ |
| H A D | inode.c | 51 sb->s_op = &securityfs_super_operations; in securityfs_fill_super()
|
| /linux/fs/freevxfs/ |
| H A D | vxfs_super.c | 208 sbp->s_op = &vxfs_super_ops; in vxfs_fill_super()
|
| /linux/kernel/bpf/ |
| H A D | token.c | 132 if (sb->s_op != &bpf_super_ops) in bpf_token_create()
|
| /linux/fs/ramfs/ |
| H A D | inode.c | 269 sb->s_op = &ramfs_ops; in ramfs_fill_super()
|
| /linux/fs/efs/ |
| H A D | super.c | 303 s->s_op = &efs_superblock_operations; in efs_fill_super()
|
| /linux/fs/coda/ |
| H A D | inode.c | 232 sb->s_op = &coda_super_operations; in coda_fill_super()
|
| /linux/fs/jffs2/ |
| H A D | super.c | 283 sb->s_op = &jffs2_super_operations; in jffs2_fill_super()
|
| /linux/fs/proc/ |
| H A D | root.c | 265 s->s_op = &proc_sops; in proc_fill_super()
|