diff mbox series

[1/2] xfs/139: work with 1k block size

Message ID 20181008062303.32286-1-chandan@linux.vnet.ibm.com (mailing list archive)
State Accepted
Headers show
Series [1/2] xfs/139: work with 1k block size | expand

Commit Message

Chandan Rajendra Oct. 8, 2018, 6:23 a.m. UTC
Commit 0e2b99951fa11ea8a8adf4676aef130cfeeb5250 (xfs/139: work with 64k
block size) created a test filesystem with AG size set to (8192 * block
size). When working with a 1k block sized XFS filesystem, this tries to
set the AG size to 8MiB which is less than the minimum AG size of
16MiB. Hence creation of the filesystem had actually failed.

This commit fixes the issue by setting AG size to be (16384 * block
size).

Reported-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Chandan Rajendra <chandan@linux.vnet.ibm.com>
---
 tests/xfs/139     | 4 ++--
 tests/xfs/139.out | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)
diff mbox series

Patch

diff --git a/tests/xfs/139 b/tests/xfs/139
index c074273..3a20ce5 100755
--- a/tests/xfs/139
+++ b/tests/xfs/139
@@ -40,14 +40,14 @@  blksz=$(_get_file_block_size $SCRATCH_MNT)
 _scratch_unmount
 
 echo "Format and mount"
-_scratch_mkfs -d agsize=$((8192 * $blksz)) > $seqres.full 2>&1
+_scratch_mkfs -d agsize=$((16384 * $blksz)) > $seqres.full 2>&1
 _scratch_mount >> $seqres.full 2>&1
 
 testdir=$SCRATCH_MNT/test-$seq
 mkdir $testdir
 
 echo "Create the original files"
-sz=$((12288 * $blksz))
+sz=$((20480 * $blksz))
 _pwrite_byte 0x61 0 $sz $testdir/file1 >> $seqres.full
 _cp_reflink $testdir/file1 $testdir/file2 >> $seqres.full
 _scratch_cycle_mount
diff --git a/tests/xfs/139.out b/tests/xfs/139.out
index 72909bc..1005d5c 100644
--- a/tests/xfs/139.out
+++ b/tests/xfs/139.out
@@ -5,7 +5,7 @@  CoW every other block
 Compare files
 0 62 62 62 62 62 62 62 62 62 62 62 62 62 62 62 62
 *
-30000
+50000
 0 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61 61
 *
-30000
+50000