Searched refs:s_qcop (Results 1 - 11 of 11) sorted by relevance
/linux-4.1.27/fs/quota/ |
H A D | quota.c | 52 if (sb->s_qcop && sb->s_qcop->quota_sync && quota_sync_one() 54 sb->s_qcop->quota_sync(sb, type); quota_sync_one() 85 if (!sb->s_qcop->quota_on && !sb->s_qcop->quota_enable) quota_quotaon() 87 if (sb->s_qcop->quota_enable) quota_quotaon() 88 return sb->s_qcop->quota_enable(sb, qtype_enforce_flag(type)); quota_quotaon() 91 return sb->s_qcop->quota_on(sb, type, id, path); quota_quotaon() 96 if (!sb->s_qcop->quota_off && !sb->s_qcop->quota_disable) quota_quotaoff() 98 if (sb->s_qcop->quota_disable) quota_quotaoff() 99 return sb->s_qcop->quota_disable(sb, qtype_enforce_flag(type)); quota_quotaoff() 100 return sb->s_qcop->quota_off(sb, type); quota_quotaoff() 128 if (!sb->s_qcop->get_state) quota_getinfo() 130 ret = sb->s_qcop->get_state(sb, &state); quota_getinfo() 156 if (!sb->s_qcop->set_info) quota_setinfo() 176 return sb->s_qcop->set_info(sb, type, &qinfo); quota_setinfo() 211 if (!sb->s_qcop->get_dqblk) quota_getquota() 216 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq); quota_getquota() 260 if (!sb->s_qcop->set_dqblk) quota_setquota() 266 return sb->s_qcop->set_dqblk(sb, qid, &fdq); quota_setquota() 275 if (!sb->s_qcop->quota_enable) quota_enable() 277 return sb->s_qcop->quota_enable(sb, flags); quota_enable() 286 if (!sb->s_qcop->quota_disable) quota_disable() 288 return sb->s_qcop->quota_disable(sb, flags); quota_disable() 316 ret = sb->s_qcop->get_state(sb, &state); quota_getstate() 372 if (!sb->s_qcop->get_state) quota_getxstate() 386 ret = sb->s_qcop->get_state(sb, &state); quota_getstatev() 433 if (!sb->s_qcop->get_state) quota_getxstatev() 553 if (!sb->s_qcop->set_dqblk) quota_setxquota() 564 if (!sb->s_qcop->set_info) quota_setxquota() 567 ret = sb->s_qcop->set_info(sb, type, &qinfo); quota_setxquota() 574 return sb->s_qcop->set_dqblk(sb, qid, &qdq); quota_setxquota() 614 if (!sb->s_qcop->get_dqblk) quota_getxquota() 619 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq); quota_getxquota() 634 if (!sb->s_qcop->rm_xquota) quota_rmxquota() 636 return sb->s_qcop->rm_xquota(sb, flags); quota_rmxquota() 651 if (!sb->s_qcop) do_quotactl() 676 if (!sb->s_qcop->quota_sync) do_quotactl() 678 return sb->s_qcop->quota_sync(sb, type); do_quotactl()
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/linux/ |
H A D | lustre_compat25.h | 105 if (sb->s_qcop->quota_on) { ll_quota_on() 111 rc = sb->s_qcop->quota_on(sb, off, ver ll_quota_on() 122 if (sb->s_qcop->quota_off) { ll_quota_off() 123 return sb->s_qcop->quota_off(sb, off ll_quota_off()
|
/linux-4.1.27/fs/jfs/ |
H A D | super.c | 542 sb->s_qcop = &dquot_quotactl_ops; jfs_fill_super()
|
/linux-4.1.27/fs/gfs2/ |
H A D | ops_fstype.c | 1075 sb->s_qcop = &gfs2_quotactl_ops; fill_super()
|
/linux-4.1.27/fs/xfs/ |
H A D | xfs_super.c | 1468 sb->s_qcop = &xfs_quotactl_operations; xfs_fs_fill_super()
|
/linux-4.1.27/fs/ext2/ |
H A D | super.c | 1110 sb->s_qcop = &dquot_quotactl_ops; ext2_fill_super()
|
/linux-4.1.27/fs/ocfs2/ |
H A D | super.c | 2062 sb->s_qcop = &dquot_quotactl_sysfile_ops; ocfs2_initialize_super()
|
/linux-4.1.27/fs/reiserfs/ |
H A D | super.c | 1646 s->s_qcop = &reiserfs_qctl_operations; read_super_block()
|
/linux-4.1.27/fs/ext3/ |
H A D | super.c | 2013 sb->s_qcop = &ext3_qctl_operations; ext3_fill_super()
|
/linux-4.1.27/fs/ext4/ |
H A D | super.c | 4003 sb->s_qcop = &dquot_quotactl_sysfile_ops; ext4_fill_super() 4005 sb->s_qcop = &ext4_qctl_operations; ext4_fill_super()
|
/linux-4.1.27/include/linux/ |
H A D | fs.h | 1286 const struct quotactl_ops *s_qcop; member in struct:super_block
|
Completed in 209 milliseconds