Lines Matching refs:qid

201 	struct kqid qid;  in quota_getquota()  local
208 qid = make_kqid(current_user_ns(), type, id); in quota_getquota()
209 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getquota()
211 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq); in quota_getquota()
237 struct kqid qid; in quota_getnextquota() local
244 qid = make_kqid(current_user_ns(), type, id); in quota_getnextquota()
245 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getnextquota()
247 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq); in quota_getnextquota()
252 idq.dqb_id = from_kqid(current_user_ns(), qid); in quota_getnextquota()
289 struct kqid qid; in quota_setquota() local
303 qid = make_kqid(current_user_ns(), type, id); in quota_setquota()
304 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_setquota()
307 return sb->s_qcop->set_dqblk(sb, qid, &fdq); in quota_setquota()
625 struct kqid qid; in quota_setxquota() local
631 qid = make_kqid(current_user_ns(), type, id); in quota_setxquota()
632 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_setxquota()
635 if (from_kqid(sb->s_user_ns, qid) == 0 && in quota_setxquota()
650 return sb->s_qcop->set_dqblk(sb, qid, &qdq); in quota_setxquota()
706 struct kqid qid; in quota_getxquota() local
711 qid = make_kqid(current_user_ns(), type, id); in quota_getxquota()
712 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getxquota()
714 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq); in quota_getxquota()
732 struct kqid qid; in quota_getnextxquota() local
738 qid = make_kqid(current_user_ns(), type, id); in quota_getnextxquota()
739 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getnextxquota()
741 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq); in quota_getnextxquota()
744 id_out = from_kqid(current_user_ns(), qid); in quota_getnextxquota()