Lines Matching defs:uq
718 struct uquot *uq;
719 SLIST_FOREACH(uq, &uq_hash[uid & q2h_hash_mask], uq_entries) {
720 if (uq->uq_uid == uid)
721 return uq;
725 uq = malloc(sizeof(struct uquot));
726 if (uq == NULL)
728 memset(uq, 0, sizeof(struct uquot));
729 uq->uq_uid = uid;
730 SLIST_INSERT_HEAD(&uq_hash[uid & q2h_hash_mask], uq, uq_entries);
731 return uq;
735 remove_uquot(struct uquot_hash *uq_hash, struct uquot *uq)
737 SLIST_REMOVE(&uq_hash[uq->uq_uid & q2h_hash_mask],
738 uq, uquot, uq_entries);