Lines Matching defs:quota
1250 uint64_t quota = 0;
1258 * work upwards looking for the smallest quota. When we reach the
1259 * pool itself, the quota is the amount used plus the amount
1278 quota = _zfs_prop_get_int(zhp, ZFS_PROP_REFQUOTA);
1279 if (quota == 0)
1280 quota = UINT64_MAX;
1285 if (this_quota && this_quota < quota)
1286 quota = this_quota;
1294 if (size < quota)
1295 quota = size;
1304 if (quota != 0)
1305 *total = quota / blocksize;