Lines Matching refs:qid
203 struct kqid qid; in quota_getquota() local
210 qid = make_kqid(current_user_ns(), type, id); in quota_getquota()
211 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getquota()
213 ret = sb->s_qcop->get_dqblk(sb, qid, &fdq); in quota_getquota()
239 struct kqid qid; in quota_getnextquota() local
246 qid = make_kqid(current_user_ns(), type, id); in quota_getnextquota()
247 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getnextquota()
249 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &fdq); in quota_getnextquota()
254 idq.dqb_id = from_kqid(current_user_ns(), qid); in quota_getnextquota()
291 struct kqid qid; in quota_setquota() local
305 qid = make_kqid(current_user_ns(), type, id); in quota_setquota()
306 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_setquota()
309 return sb->s_qcop->set_dqblk(sb, qid, &fdq); in quota_setquota()
628 struct kqid qid; in quota_setxquota() local
634 qid = make_kqid(current_user_ns(), type, id); in quota_setxquota()
635 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_setxquota()
638 if (from_kqid(sb->s_user_ns, qid) == 0 && in quota_setxquota()
653 return sb->s_qcop->set_dqblk(sb, qid, &qdq); in quota_setxquota()
709 struct kqid qid; in quota_getxquota() local
714 qid = make_kqid(current_user_ns(), type, id); in quota_getxquota()
715 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getxquota()
717 ret = sb->s_qcop->get_dqblk(sb, qid, &qdq); in quota_getxquota()
735 struct kqid qid; in quota_getnextxquota() local
741 qid = make_kqid(current_user_ns(), type, id); in quota_getnextxquota()
742 if (!qid_has_mapping(sb->s_user_ns, qid)) in quota_getnextxquota()
744 ret = sb->s_qcop->get_nextdqblk(sb, &qid, &qdq); in quota_getnextxquota()
747 id_out = from_kqid(current_user_ns(), qid); in quota_getnextxquota()