Message ID | e9c369a2-43d2-c8a0-6be6-1d8070e8cd77@redhat.com (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
Series | [1/3,V3] xfs_quota: document how the default quota is stored | expand |
On Thu, Dec 03, 2020 at 02:46:10PM -0600, Eric Sandeen wrote: > Nowhere in the man page is the default quota described; what it > does or where it is stored. Add some brief information about this. > > Signed-off-by: Eric Sandeen <sandeen@redhat.com> Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com> --D > --- > > V3: stop trying, and just use Darrick's nice words. > > diff --git a/man/man8/xfs_quota.8 b/man/man8/xfs_quota.8 > index dd0479cd..2a911969 100644 > --- a/man/man8/xfs_quota.8 > +++ b/man/man8/xfs_quota.8 > @@ -178,6 +178,12 @@ to a file on > where the user's quota has not been exceeded. > Then after rectifying the quota situation, the file can be moved back to the > filesystem it belongs on. > +.SS Default Quotas > +The XFS quota subsystem allows a default quota to be enforced > +for any user, group or project which does not have a quota limit > +explicitly set. > +These limits are stored in and displayed as ID 0's limits, although they > +do not actually limit ID 0. > .SH USER COMMANDS > .TP > .B print > >
diff --git a/man/man8/xfs_quota.8 b/man/man8/xfs_quota.8 index dd0479cd..2a911969 100644 --- a/man/man8/xfs_quota.8 +++ b/man/man8/xfs_quota.8 @@ -178,6 +178,12 @@ to a file on where the user's quota has not been exceeded. Then after rectifying the quota situation, the file can be moved back to the filesystem it belongs on. +.SS Default Quotas +The XFS quota subsystem allows a default quota to be enforced +for any user, group or project which does not have a quota limit +explicitly set. +These limits are stored in and displayed as ID 0's limits, although they +do not actually limit ID 0. .SH USER COMMANDS .TP .B print
Nowhere in the man page is the default quota described; what it does or where it is stored. Add some brief information about this. Signed-off-by: Eric Sandeen <sandeen@redhat.com> --- V3: stop trying, and just use Darrick's nice words.