From: Dmitry V. Levin Date: Sun, 17 Jan 2016 22:30:54 +0000 (+0000) Subject: Update quotactl constants X-Git-Tag: v4.12~633 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2d544968feccb0721975fb3bd75ff92329360c92;p=strace Update quotactl constants * xlat/quota_formats.in: Add QFMT_OCFS2 and QFMT_VFS_V1. * xlat/quotacmds.in: Add Q_XGETQSTATV. * xlat/quotatypes.in: Add PRJQUOTA. * xlat/xfs_quota_flags.in: Add FS_QUOTA_PDQ_ACCT and FS_QUOTA_PDQ_ENFD. --- diff --git a/xlat/quota_formats.in b/xlat/quota_formats.in index 470df469..dcbbb61c 100644 --- a/xlat/quota_formats.in +++ b/xlat/quota_formats.in @@ -1,2 +1,4 @@ QFMT_VFS_OLD 1 QFMT_VFS_V0 2 +QFMT_OCFS2 3 +QFMT_VFS_V1 4 diff --git a/xlat/quotacmds.in b/xlat/quotacmds.in index e40ac9be..6d3969a3 100644 --- a/xlat/quotacmds.in +++ b/xlat/quotacmds.in @@ -33,3 +33,4 @@ Q_XSETQLIM XQM_CMD(0x4) Q_XGETQSTAT XQM_CMD(0x5) Q_XQUOTARM XQM_CMD(0x6) Q_XQUOTASYNC XQM_CMD(0x7) +Q_XGETQSTATV XQM_CMD(0x8) diff --git a/xlat/quotatypes.in b/xlat/quotatypes.in index 00c81dfd..671fe7df 100644 --- a/xlat/quotatypes.in +++ b/xlat/quotatypes.in @@ -1,2 +1,3 @@ USRQUOTA 0 GRPQUOTA 1 +PRJQUOTA 2 diff --git a/xlat/xfs_quota_flags.in b/xlat/xfs_quota_flags.in index 3f11dc7e..cf44da51 100644 --- a/xlat/xfs_quota_flags.in +++ b/xlat/xfs_quota_flags.in @@ -2,3 +2,5 @@ XFS_QUOTA_UDQ_ACCT (1<<0) XFS_QUOTA_UDQ_ENFD (1<<1) XFS_QUOTA_GDQ_ACCT (1<<2) XFS_QUOTA_GDQ_ENFD (1<<3) +XFS_QUOTA_PDQ_ACCT (1<<4) +XFS_QUOTA_PDQ_ENFD (1<<5)