[PATCH 1/6] generic/204: tweak reserve pool size

Dave Chinner david at fromorbit.com
Tue Apr 22 17:04:29 CDT 2014


From: Dave Chinner <dchinner at redhat.com>

On small block size filesystems, the reserve pool size is kept
constant at 4MB. filesystems with smaller blocks use comparitively
more blocks for indexing metadata (e.g. in the inode and extent
btrees) and so having a higher indirect block usage. Hence we need
to leave the reserve pool at 1024 block and not scale it for a
constant size.

This makes the test pass on a filesystem made with MKFS_OPTIONS="-b
size=1024 -m crc=1".

Signed-off-by: Dave Chinner <dchinner at redhat.com>
---
 tests/generic/204 | 2 --
 1 file changed, 2 deletions(-)

diff --git a/tests/generic/204 b/tests/generic/204
index 4ebab26..de029c6 100755
--- a/tests/generic/204
+++ b/tests/generic/204
@@ -74,7 +74,6 @@ space=97920000
 #	files = (97920000 / (isize + bsize))
 
 files=$((space / (isize + dbsize)))
-resv_blks=$((resv_blks * (4096 / dbsize)))
 
 echo files $files, resvblks $resv_blks >> $seqres.full
 _scratch_resvblks $resv_blks >> $seqres.full 2>&1
@@ -88,5 +87,4 @@ _check_scratch_fs
 
 # success, all done
 echo "*** done"
-rm -f $seqres.full
 status=0
-- 
1.9.0



More information about the xfs mailing list