Message ID | 161526483109.1214319.14555094406560973318.stgit@magnolia (mailing list archive) |
---|---|
State | Accepted, archived |
Headers | show |
Series | fstests: test kernel regressions fixed in 5.12 | expand |
On 09 Mar 2021 at 10:10, Darrick J. Wong wrote: > From: Darrick J. Wong <djwong@kernel.org> > > xfs/299 and xfs/050 share the same function to filter quota reporting > into a format suitable for the golden output. Refactor this so that we > can use it in a new test. > Looks good to me. Reviewed-by: Chandan Babu R <chandanrlinux@gmail.com> > Signed-off-by: Darrick J. Wong <djwong@kernel.org> > --- > common/filter | 24 ++++++++++++++++++++++++ > tests/xfs/050 | 30 ++++++------------------------ > tests/xfs/299 | 30 ++++++------------------------ > 3 files changed, 36 insertions(+), 48 deletions(-) > > > diff --git a/common/filter b/common/filter > index 2f3277f7..2efbbd99 100644 > --- a/common/filter > +++ b/common/filter > @@ -637,5 +637,29 @@ _filter_getcap() > sed -e "s/= //" -e "s/\+/=/g" > } > > +# Filter user/group/project id numbers out of quota reports, and standardize > +# the block counts to use filesystem block size. Callers must set the id and > +# bsize variables before calling this function. > +_filter_quota_report() > +{ > + test -n "$id" || echo "id must be set" > + test -n "$bsize" || echo "block size must be set" > + > + tr -s '[:space:]' | \ > + perl -npe ' > + s/^\#'$id' /[NAME] /g; > + s/^\#0 \d+ /[ROOT] 0 /g; > + s/6 days/7 days/g' | > + perl -npe ' > + $val = 0; > + if ($ENV{'LARGE_SCRATCH_DEV'}) { > + $val = $ENV{'NUM_SPACE_FILES'}; > + } > + s/(^\[ROOT\] \S+ \S+ \S+ \S+ \[--------\] )(\S+)/$1@{[$2 - $val]}/g' | > + sed -e 's/ 65535 \[--------\]/ 00 \[--------\]/g' | > + perl -npe ' > + s|^(.*?) (\d+) (\d+) (\d+)|$1 @{[$2 * 1024 /'$bsize']} @{[$3 * 1024 /'$bsize']} @{[$4 * 1024 /'$bsize']}|' > +} > + > # make sure this script returns success > /bin/true > diff --git a/tests/xfs/050 b/tests/xfs/050 > index 53412a13..1df97537 100755 > --- a/tests/xfs/050 > +++ b/tests/xfs/050 > @@ -47,24 +47,6 @@ bhard=$(( 1000 * $bsize )) > isoft=4 > ihard=10 > > -_filter_report() > -{ > - tr -s '[:space:]' | \ > - perl -npe ' > - s/^\#'$id' /[NAME] /g; > - s/^\#0 \d+ /[ROOT] 0 /g; > - s/6 days/7 days/g' | > - perl -npe ' > - $val = 0; > - if ($ENV{'LARGE_SCRATCH_DEV'}) { > - $val = $ENV{'NUM_SPACE_FILES'}; > - } > - s/(^\[ROOT\] \S+ \S+ \S+ \S+ \[--------\] )(\S+)/$1@{[$2 - $val]}/g' | > - sed -e 's/ 65535 \[--------\]/ 00 \[--------\]/g' | > - perl -npe ' > - s|^(.*?) (\d+) (\d+) (\d+)|$1 @{[$2 * 1024 /'$bsize']} @{[$3 * 1024 /'$bsize']} @{[$4 * 1024 /'$bsize']}|' > -} > - > # The actual point at which limit enforcement takes place for the > # hard block limit is variable depending on filesystem blocksize, > # and iosize. What we want to test is that the limit is enforced > @@ -84,7 +66,7 @@ _filter_and_check_blks() > } > s/^(\#'$id'\s+)(\d+)/\1 =OK=/g; > } > - ' | _filter_report > + ' | _filter_quota_report > } > > _qsetup() > @@ -134,7 +116,7 @@ _exercise() > echo "*** report no quota settings" | tee -a $seqres.full > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > echo "*** report initial settings" | tee -a $seqres.full > @@ -147,7 +129,7 @@ _exercise() > $SCRATCH_DEV > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > echo "*** push past the soft inode limit" | tee -a $seqres.full > @@ -159,7 +141,7 @@ _exercise() > $XFS_QUOTA_PROG -x -c "warn -i -$type 0 $id" $SCRATCH_DEV > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > echo "*** push past the soft block limit" | tee -a $seqres.full > @@ -169,7 +151,7 @@ _exercise() > -c "warn -b -$type 0 $id" $SCRATCH_DEV > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > # Note: for quota accounting (not enforcement), EDQUOT is not expected > @@ -183,7 +165,7 @@ _exercise() > -c "warn -i -$type 0 $id" $SCRATCH_DEV > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > # Note: for quota accounting (not enforcement), EDQUOT is not expected > diff --git a/tests/xfs/299 b/tests/xfs/299 > index 15e0edf6..b862e67e 100755 > --- a/tests/xfs/299 > +++ b/tests/xfs/299 > @@ -40,24 +40,6 @@ _require_xfs_quota > _require_xfs_mkfs_crc > _require_xfs_crc > > -_filter_report() > -{ > - tr -s '[:space:]' | \ > - perl -npe ' > - s/^\#'$id' /[NAME] /g; > - s/^\#0 \d+ /[ROOT] 0 /g; > - s/6 days/7 days/g' | > - perl -npe ' > - $val = 0; > - if ($ENV{'LARGE_SCRATCH_DEV'}) { > - $val = $ENV{'NUM_SPACE_FILES'}; > - } > - s/(^\[ROOT\] \S+ \S+ \S+ \S+ \[--------\] )(\S+)/$1@{[$2 - $val]}/g' | > - sed -e 's/ 65535 \[--------\]/ 00 \[--------\]/g' | > - perl -npe ' > - s|^(.*?) (\d+) (\d+) (\d+)|$1 @{[$2 * 1024 /'$bsize']} @{[$3 * 1024 /'$bsize']} @{[$4 * 1024 /'$bsize']}|' > -} > - > # The actual point at which limit enforcement takes place for the > # hard block limit is variable depending on filesystem blocksize, > # and iosize. What we want to test is that the limit is enforced > @@ -77,7 +59,7 @@ _filter_and_check_blks() > } > s/^(\#'$id'\s+)(\d+)/\1 =OK=/g; > } > - ' | _filter_report > + ' | _filter_quota_report > } > > _qsetup() > @@ -120,7 +102,7 @@ _exercise() > echo "*** report no quota settings" | tee -a $seqres.full > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > echo "*** report initial settings" | tee -a $seqres.full > @@ -133,7 +115,7 @@ _exercise() > $SCRATCH_DEV > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > echo "*** push past the soft inode limit" | tee -a $seqres.full > @@ -145,7 +127,7 @@ _exercise() > $XFS_QUOTA_PROG -x -c "warn -i -$type 0 $id" $SCRATCH_DEV > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > echo "*** push past the soft block limit" | tee -a $seqres.full > @@ -155,7 +137,7 @@ _exercise() > -c "warn -b -$type 0 $id" $SCRATCH_DEV > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > # Note: for quota accounting (not enforcement), EDQUOT is not expected > @@ -169,7 +151,7 @@ _exercise() > -c "warn -i -$type 0 $id" $SCRATCH_DEV > $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ > -c "repquota -birnN -$type" $SCRATCH_DEV | > - _filter_report | LC_COLLATE=POSIX sort -ru > + _filter_quota_report | LC_COLLATE=POSIX sort -ru > > echo > # Note: for quota accounting (not enforcement), EDQUOT is not expected
diff --git a/common/filter b/common/filter index 2f3277f7..2efbbd99 100644 --- a/common/filter +++ b/common/filter @@ -637,5 +637,29 @@ _filter_getcap() sed -e "s/= //" -e "s/\+/=/g" } +# Filter user/group/project id numbers out of quota reports, and standardize +# the block counts to use filesystem block size. Callers must set the id and +# bsize variables before calling this function. +_filter_quota_report() +{ + test -n "$id" || echo "id must be set" + test -n "$bsize" || echo "block size must be set" + + tr -s '[:space:]' | \ + perl -npe ' + s/^\#'$id' /[NAME] /g; + s/^\#0 \d+ /[ROOT] 0 /g; + s/6 days/7 days/g' | + perl -npe ' + $val = 0; + if ($ENV{'LARGE_SCRATCH_DEV'}) { + $val = $ENV{'NUM_SPACE_FILES'}; + } + s/(^\[ROOT\] \S+ \S+ \S+ \S+ \[--------\] )(\S+)/$1@{[$2 - $val]}/g' | + sed -e 's/ 65535 \[--------\]/ 00 \[--------\]/g' | + perl -npe ' + s|^(.*?) (\d+) (\d+) (\d+)|$1 @{[$2 * 1024 /'$bsize']} @{[$3 * 1024 /'$bsize']} @{[$4 * 1024 /'$bsize']}|' +} + # make sure this script returns success /bin/true diff --git a/tests/xfs/050 b/tests/xfs/050 index 53412a13..1df97537 100755 --- a/tests/xfs/050 +++ b/tests/xfs/050 @@ -47,24 +47,6 @@ bhard=$(( 1000 * $bsize )) isoft=4 ihard=10 -_filter_report() -{ - tr -s '[:space:]' | \ - perl -npe ' - s/^\#'$id' /[NAME] /g; - s/^\#0 \d+ /[ROOT] 0 /g; - s/6 days/7 days/g' | - perl -npe ' - $val = 0; - if ($ENV{'LARGE_SCRATCH_DEV'}) { - $val = $ENV{'NUM_SPACE_FILES'}; - } - s/(^\[ROOT\] \S+ \S+ \S+ \S+ \[--------\] )(\S+)/$1@{[$2 - $val]}/g' | - sed -e 's/ 65535 \[--------\]/ 00 \[--------\]/g' | - perl -npe ' - s|^(.*?) (\d+) (\d+) (\d+)|$1 @{[$2 * 1024 /'$bsize']} @{[$3 * 1024 /'$bsize']} @{[$4 * 1024 /'$bsize']}|' -} - # The actual point at which limit enforcement takes place for the # hard block limit is variable depending on filesystem blocksize, # and iosize. What we want to test is that the limit is enforced @@ -84,7 +66,7 @@ _filter_and_check_blks() } s/^(\#'$id'\s+)(\d+)/\1 =OK=/g; } - ' | _filter_report + ' | _filter_quota_report } _qsetup() @@ -134,7 +116,7 @@ _exercise() echo "*** report no quota settings" | tee -a $seqres.full $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo echo "*** report initial settings" | tee -a $seqres.full @@ -147,7 +129,7 @@ _exercise() $SCRATCH_DEV $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo echo "*** push past the soft inode limit" | tee -a $seqres.full @@ -159,7 +141,7 @@ _exercise() $XFS_QUOTA_PROG -x -c "warn -i -$type 0 $id" $SCRATCH_DEV $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo echo "*** push past the soft block limit" | tee -a $seqres.full @@ -169,7 +151,7 @@ _exercise() -c "warn -b -$type 0 $id" $SCRATCH_DEV $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo # Note: for quota accounting (not enforcement), EDQUOT is not expected @@ -183,7 +165,7 @@ _exercise() -c "warn -i -$type 0 $id" $SCRATCH_DEV $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo # Note: for quota accounting (not enforcement), EDQUOT is not expected diff --git a/tests/xfs/299 b/tests/xfs/299 index 15e0edf6..b862e67e 100755 --- a/tests/xfs/299 +++ b/tests/xfs/299 @@ -40,24 +40,6 @@ _require_xfs_quota _require_xfs_mkfs_crc _require_xfs_crc -_filter_report() -{ - tr -s '[:space:]' | \ - perl -npe ' - s/^\#'$id' /[NAME] /g; - s/^\#0 \d+ /[ROOT] 0 /g; - s/6 days/7 days/g' | - perl -npe ' - $val = 0; - if ($ENV{'LARGE_SCRATCH_DEV'}) { - $val = $ENV{'NUM_SPACE_FILES'}; - } - s/(^\[ROOT\] \S+ \S+ \S+ \S+ \[--------\] )(\S+)/$1@{[$2 - $val]}/g' | - sed -e 's/ 65535 \[--------\]/ 00 \[--------\]/g' | - perl -npe ' - s|^(.*?) (\d+) (\d+) (\d+)|$1 @{[$2 * 1024 /'$bsize']} @{[$3 * 1024 /'$bsize']} @{[$4 * 1024 /'$bsize']}|' -} - # The actual point at which limit enforcement takes place for the # hard block limit is variable depending on filesystem blocksize, # and iosize. What we want to test is that the limit is enforced @@ -77,7 +59,7 @@ _filter_and_check_blks() } s/^(\#'$id'\s+)(\d+)/\1 =OK=/g; } - ' | _filter_report + ' | _filter_quota_report } _qsetup() @@ -120,7 +102,7 @@ _exercise() echo "*** report no quota settings" | tee -a $seqres.full $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo echo "*** report initial settings" | tee -a $seqres.full @@ -133,7 +115,7 @@ _exercise() $SCRATCH_DEV $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo echo "*** push past the soft inode limit" | tee -a $seqres.full @@ -145,7 +127,7 @@ _exercise() $XFS_QUOTA_PROG -x -c "warn -i -$type 0 $id" $SCRATCH_DEV $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo echo "*** push past the soft block limit" | tee -a $seqres.full @@ -155,7 +137,7 @@ _exercise() -c "warn -b -$type 0 $id" $SCRATCH_DEV $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo # Note: for quota accounting (not enforcement), EDQUOT is not expected @@ -169,7 +151,7 @@ _exercise() -c "warn -i -$type 0 $id" $SCRATCH_DEV $XFS_QUOTA_PROG -D $tmp.projects -P $tmp.projid -x \ -c "repquota -birnN -$type" $SCRATCH_DEV | - _filter_report | LC_COLLATE=POSIX sort -ru + _filter_quota_report | LC_COLLATE=POSIX sort -ru echo # Note: for quota accounting (not enforcement), EDQUOT is not expected