https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234413
--- Comment #6 from Mark Johnston <[email protected]> --- (In reply to Emrion from comment #5) I was wondering specifically which quotactl() operation was returning ENOENT. It's a bit more clear now; we have the following in zfs_getquota(): 146 if (quotaobj == 0 || zfsvfs->z_replay) { 147 error = ENOENT; 148 goto done; 149 } whereas UFS does: 1302 dqvp = ump->um_quotas[type]; 1303 if (dqvp == NULLVP || (ump->um_qflags[type] & QTF_CLOSING)) { 1304 *dqp = NODQUOT; 1305 UFS_UNLOCK(ump); 1306 return (EINVAL); 1307 } This use of EINVAL isn't documented in the man page. Linux's quotactl() doesn't document it either, but I presume that it always returns EINVAL in this case. -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-bugs To unsubscribe, send any mail to "[email protected]"
