• Home
  • Raw
  • Download

Lines Matching refs:id

24 				     qid_t id)  in check_quotactl_permission()  argument
38 if ((type == USRQUOTA && uid_eq(current_euid(), make_kuid(current_user_ns(), id))) || in check_quotactl_permission()
39 (type == GRPQUOTA && in_egroup_p(make_kgid(current_user_ns(), id)))) in check_quotactl_permission()
47 return security_quotactl(cmd, type, id, sb); in check_quotactl_permission()
84 static int quota_quotaon(struct super_block *sb, int type, qid_t id, in quota_quotaon() argument
93 return sb->s_qcop->quota_on(sb, type, id, path); in quota_quotaon()
199 static int quota_getquota(struct super_block *sb, int type, qid_t id, in quota_getquota() argument
209 qid = make_kqid(current_user_ns(), type, id); in quota_getquota()
225 static int quota_getnextquota(struct super_block *sb, int type, qid_t id, in quota_getnextquota() argument
235 qid = make_kqid(current_user_ns(), type, id); in quota_getnextquota()
275 static int quota_setquota(struct super_block *sb, int type, qid_t id, in quota_setquota() argument
286 qid = make_kqid(current_user_ns(), type, id); in quota_setquota()
560 static int quota_setxquota(struct super_block *sb, int type, qid_t id, in quota_setxquota() argument
571 qid = make_kqid(current_user_ns(), type, id); in quota_setxquota()
594 int type, qid_t id) in copy_to_xfs_dqblk() argument
598 dst->d_id = id; in copy_to_xfs_dqblk()
622 static int quota_getxquota(struct super_block *sb, int type, qid_t id, in quota_getxquota() argument
632 qid = make_kqid(current_user_ns(), type, id); in quota_getxquota()
638 copy_to_xfs_dqblk(&fdq, &qdq, type, id); in quota_getxquota()
648 static int quota_getnextxquota(struct super_block *sb, int type, qid_t id, in quota_getnextxquota() argument
659 qid = make_kqid(current_user_ns(), type, id); in quota_getnextxquota()
684 static int do_quotactl(struct super_block *sb, int type, int cmd, qid_t id, in do_quotactl() argument
701 ret = check_quotactl_permission(sb, type, cmd, id); in do_quotactl()
707 return quota_quotaon(sb, type, id, path); in do_quotactl()
717 return quota_getquota(sb, type, id, addr); in do_quotactl()
719 return quota_getnextquota(sb, type, id, addr); in do_quotactl()
721 return quota_setquota(sb, type, id, addr); in do_quotactl()
737 return quota_setxquota(sb, type, id, addr); in do_quotactl()
739 return quota_getxquota(sb, type, id, addr); in do_quotactl()
741 return quota_getnextxquota(sb, type, id, addr); in do_quotactl()
824 qid_t id, void __user *addr) in kernel_quotactl() argument
864 ret = do_quotactl(sb, type, cmds, id, addr, pathp); in kernel_quotactl()
877 qid_t, id, void __user *, addr) in SYSCALL_DEFINE4() argument
879 return kernel_quotactl(cmd, special, id, addr); in SYSCALL_DEFINE4()