Lines Matching refs:qid
204 struct kqid qid; in quota_getquota() local
211 qid = make_kqid(current_user_ns(), type, id); in quota_getquota()
212 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getquota()
214 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq); in quota_getquota()
230 struct kqid qid; in quota_getnextquota() local
237 qid = make_kqid(current_user_ns(), type, id); in quota_getnextquota()
238 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getnextquota()
240 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq); in quota_getnextquota()
245 idq.dqb_id = from_kqid(current_user_ns(), qid); in quota_getnextquota()
282 struct kqid qid; in quota_setquota() local
288 qid = make_kqid(current_user_ns(), type, id); in quota_setquota()
289 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_setquota()
292 return sb->s_qcop->set_dqblk(sb, qid, &fdq); in quota_setquota()
581 struct kqid qid; in quota_setxquota() local
587 qid = make_kqid(current_user_ns(), type, id); in quota_setxquota()
588 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_setxquota()
591 if (from_kqid(sb->s_user_ns, qid) == 0 && in quota_setxquota()
606 return sb->s_qcop->set_dqblk(sb, qid, &qdq); in quota_setxquota()
643 struct kqid qid; in quota_getxquota() local
648 qid = make_kqid(current_user_ns(), type, id); in quota_getxquota()
649 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getxquota()
651 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq); in quota_getxquota()
669 struct kqid qid; in quota_getnextxquota() local
675 qid = make_kqid(current_user_ns(), type, id); in quota_getnextxquota()
676 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getnextxquota()
678 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq); in quota_getnextxquota()
681 id_out = from_kqid(current_user_ns(), qid); in quota_getnextxquota()