Lines Matching defs:change
61 * dq_interlock (this means we can't read or change a quota entry without
431 lfsquota2_check_limit(struct quota2_val *q2v, uint64_t change, time_t now)
433 return lfsquota_check_limit(q2v->q2v_cur, change, q2v->q2v_softlimit,
438 quota2_check(struct inode *ip, int vtype, int64_t change, kauth_cred_t cred,
453 if ((error = getinoquota2(ip, change > 0, change != 0, bp, q2e)) != 0)
455 if (change == 0) {
466 if (change < 0) {
477 if (ncurblks < -change)
480 ncurblks += change;
496 ql_stat = lfsquota2_check_limit(&q2v, change, time_second);
556 q2vp->q2v_cur = ulfs_rw64(ncurblks + change, needswap);
566 lfs_chkdq2(struct inode *ip, int64_t change, kauth_cred_t cred, int flags)
568 return quota2_check(ip, QL_BLOCK, change, cred, flags);
572 lfs_chkiq2(struct inode *ip, int32_t change, kauth_cred_t cred, int flags)
574 return quota2_check(ip, QL_FILE, change, cred, flags);