HomeSort by: relevance | last modified time | path
    Searched refs:q2e (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/ufs/ufs/
ufs_quota2.c 82 struct quota2_entry *q2e)
88 q2e->q2e_val[objtype].q2v_hardlimit = val->qv_hardlimit;
89 q2e->q2e_val[objtype].q2v_softlimit = val->qv_softlimit;
90 q2e->q2e_val[objtype].q2v_grace = val->qv_grace;
114 q2e_to_quotaval(struct quota2_entry *q2e, int def,
120 *id = q2e->q2e_uid;
124 q2val_to_quotaval(&q2e->q2e_val[objtype], ret);
202 struct quota2_entry *q2e; local
226 q2e = (void *)((char *)(bp->b_data) + blkoff);
227 ret = (*func)(ump, offp, q2e, off, a)
296 struct quota2_entry *q2e; local
443 struct quota2_entry *q2e[MAXQUOTAS]; local
583 struct quota2_entry q2e, *q2ep; local
694 struct quota2_entry q2e, *q2ep; local
841 struct quota2_entry *q2ep, q2e; local
879 struct quota2_entry q2e; local
1232 struct quota2_entry q2e; local
    [all...]
quota2_subr.c 50 struct quota2_entry *q2e; local
52 q2e = (void *)((char *)bp + blkoff);
53 nq2e = (bsize - blkoff) / sizeof(*q2e);
55 q2e[i].q2e_next = q2h->q2h_free;
56 q2h->q2h_free = ufs_rw64(i * sizeof(*q2e) + baseoff, ns);
  /src/sbin/fsck_ffs/
quota2.c 81 struct quota2_entry *q2e; local
112 q2e = (void *)((caddr_t)(bp->b_un.b_buf) +
115 q2h->q2h_free = q2e->q2e_next;
117 memcpy(q2e, &q2h->q2h_defentry, sizeof(*q2e));
118 q2e->q2e_uid = iswap32(uid);
119 q2e->q2e_val[QL_BLOCK].q2v_cur = iswap64(u_b);
120 q2e->q2e_val[QL_FILE].q2v_cur = iswap64(u_i);
122 q2e->q2e_next = q2h->q2h_entries[uid & q2h_hash_mask];
146 struct quota2_entry *q2e; local
241 struct quota2_entry *q2e; local
    [all...]
  /src/sys/ufs/lfs/
ulfs_quota2.c 84 struct quota2_entry *q2e)
90 q2e->q2e_val[objtype].q2v_hardlimit = val->qv_hardlimit;
91 q2e->q2e_val[objtype].q2v_softlimit = val->qv_softlimit;
92 q2e->q2e_val[objtype].q2v_grace = val->qv_grace;
116 q2e_to_quotaval(struct quota2_entry *q2e, int def,
122 *id = q2e->q2e_uid;
126 q2val_to_quotaval(&q2e->q2e_val[objtype], ret);
203 struct quota2_entry *q2e; local
227 q2e = (void *)((char *)(bp->b_data) + blkoff);
228 ret = (*func)(ump, offp, q2e, off, a)
298 struct quota2_entry *q2e; local
443 struct quota2_entry *q2e[ULFS_MAXQUOTAS]; local
584 struct quota2_entry q2e, *q2ep; local
689 struct quota2_entry q2e, *q2ep; local
832 struct quota2_entry *q2ep, q2e; local
871 struct quota2_entry q2e; local
1227 struct quota2_entry q2e; local
    [all...]
ulfs_quota2_subr.c 53 struct quota2_entry *q2e; local
55 q2e = (void *)((char *)bp + blkoff);
56 nq2e = (bsize - blkoff) / sizeof(*q2e);
58 q2e[i].q2e_next = q2h->q2h_free;
59 q2h->q2h_free = ulfs_rw64(i * sizeof(*q2e) + baseoff, ns);
  /src/sbin/newfs/
mkfs.c 1195 struct quota2_entry *q2e; local
1206 q2e = (void *)((char *)&buf + offset);
1207 q2h->q2h_free = q2e->q2e_next;
1208 memcpy(q2e, &q2h->q2h_defentry, sizeof(*q2e));
1209 q2e->q2e_uid = ufs_rw32(uid, needswap);
1210 q2e->q2e_val[QL_BLOCK].q2v_cur = ufs_rw64(qblocks, needswap);
1211 q2e->q2e_val[QL_FILE].q2v_cur = ufs_rw64(qinos, needswap);
1213 q2e->q2e_next = q2h->q2h_entries[uid & q2h_hash_mask];

Completed in 44 milliseconds