diff options
Diffstat (limited to 'fs/xfs/xfs_quota.h')
-rw-r--r-- | fs/xfs/xfs_quota.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/fs/xfs/xfs_quota.h b/fs/xfs/xfs_quota.h index 3ec91ac74c2a..91bfd60f4c74 100644 --- a/fs/xfs/xfs_quota.h +++ b/fs/xfs/xfs_quota.h | |||
@@ -92,6 +92,14 @@ typedef struct xfs_dqblk { | |||
92 | 92 | ||
93 | #define XFS_DQ_ALLTYPES (XFS_DQ_USER|XFS_DQ_PROJ|XFS_DQ_GROUP) | 93 | #define XFS_DQ_ALLTYPES (XFS_DQ_USER|XFS_DQ_PROJ|XFS_DQ_GROUP) |
94 | 94 | ||
95 | #define XFS_DQ_FLAGS \ | ||
96 | { XFS_DQ_USER, "USER" }, \ | ||
97 | { XFS_DQ_PROJ, "PROJ" }, \ | ||
98 | { XFS_DQ_GROUP, "GROUP" }, \ | ||
99 | { XFS_DQ_DIRTY, "DIRTY" }, \ | ||
100 | { XFS_DQ_WANT, "WANT" }, \ | ||
101 | { XFS_DQ_INACTIVE, "INACTIVE" } | ||
102 | |||
95 | /* | 103 | /* |
96 | * In the worst case, when both user and group quotas are on, | 104 | * In the worst case, when both user and group quotas are on, |
97 | * we can have a max of three dquots changing in a single transaction. | 105 | * we can have a max of three dquots changing in a single transaction. |