diff options
| author | Eugene Syromyatnikov <evgsyr@gmail.com> | 2016-09-21 06:28:38 +0300 |
|---|---|---|
| committer | Michael Kerrisk <mtk.manpages@gmail.com> | 2016-09-21 14:54:52 +0200 |
| commit | 2219bd3f59beec22b4c395f71b827ba4e07021e9 (patch) | |
| tree | 84c19ab2b0075ffbcd983dae2513ad801f60d890 | |
| parent | b5b42cc585d7fa4946dda791f856a006385bc9ac (diff) | |
| download | man-pages-2219bd3f59beec22b4c395f71b827ba4e07021e9.tar.gz | |
quotactl.2: Updated information regarding disk quota flags
Added information regarding DQF_SYS_FILE flag; updated definition
of V1_DQF_RSQUASH, which has been defined privately and defined
publicly as DQF_ROOT_SQUASH.
| -rw-r--r-- | man2/quotactl.2 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/man2/quotactl.2 b/man2/quotactl.2 index 82406d440e..3910379a36 100644 --- a/man2/quotactl.2 +++ b/man2/quotactl.2 @@ -285,9 +285,12 @@ struct dqinfo { /* Defined since kernel 2.4.22 */ /* Quota format QFMT_VFS_OLD */ -#define V1_DQF_RSQUASH 1 /* Root squash enabled */ +/* Before v4.0-rc1~141^2~14 it had been defined privately as V1_DQF_RSQUASH */ +#define DQF_ROOT_SQUASH (1 << 0) /* Root squash enabled */ -/* Other quota formats have no dqi_flags bits defined */ +/* Quota format QFMT_VFS_V0 / QFMT_VFS_V1 */ + +#define DQF_SYS_FILE (1 << 16) /* Quota stored in a system file */ /* Flags in dqi_valid that indicate which fields in dqinfo structure are valid. */ |
