Details
-
New Feature
-
Resolution: Fixed
-
Minor
-
Lustre 2.4.0
-
None
-
4399
Description
Tracker bug for landing orion_quota to master.
Attachments
Issue Links
- is duplicated by
-
LU-1300 Quota enforcement support for OSD Restructuring
-
- Closed
-
- is related to
-
LU-5975 Consider removing quotacheck compatibility code
-
- Resolved
-
-
LU-5978 Remove migration of old admin quota files
-
- Resolved
-
-
LU-5980 Eliminate old quota formats
-
- Resolved
-
-
LUDOC-89 Quota Enforcement Doc Changes
-
- Closed
-
- is related to
-
LU-1789 Lightweight connection support
-
- Resolved
-
-
LU-1318 Quota Enforcement DLM&FID
-
- Closed
-
(2 is related to )
Hello,
I am seeing a problem with ldiskfs and quotas in 2.4. http://review.whamcloud.com/4098 turned on quotas by default when mounting. However, when my ldiskfs goes to mount, it will fails since quotas and usage accounting are contraindicated. from the "first class accounting" ldiskfs patch:
+#ifdef CONFIG_QUOTA
{ + ext4_msg(sb, KERN_ERR, "Can't enable usage tracking on " + "a filesystem with the QUOTA feature set"); + goto failed_mount4; + }+ /* Enable space tracking during mount, enforcement can be enabled/disable
+ * later with quota_on/off */
+ if (EXT4_HAS_RO_COMPAT_FEATURE(sb, EXT4_FEATURE_RO_COMPAT_QUOTA) &&
+ !(sb->s_flags & MS_RDONLY)) {
+ ret = ext4_acct_on(sb);
+ if (ret)
+ }
am i confused about what is going on here?