diff mbox

xfs/074: double the data section size

Message ID 1439212541-27554-1-git-send-email-eguan@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Eryu Guan Aug. 10, 2015, 1:15 p.m. UTC
When testing 512 block size xfs, xfs/074 fails as

   QA output created by 074
  +fallocate: No space left on device
   Silence is golden

That's because 40051712*512=20G < 30G.

Doubling the filesystem size makes the test on 512 block size xfs pass,
and test still fails on unpatched kernel.

Signed-off-by: Eryu Guan <eguan@redhat.com>
---
 tests/xfs/074 | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Dave Chinner Aug. 11, 2015, 2:39 a.m. UTC | #1
On Mon, Aug 10, 2015 at 09:15:41PM +0800, Eryu Guan wrote:
> When testing 512 block size xfs, xfs/074 fails as
> 
>    QA output created by 074
>   +fallocate: No space left on device
>    Silence is golden
> 
> That's because 40051712*512=20G < 30G.
> 
> Doubling the filesystem size makes the test on 512 block size xfs pass,
> and test still fails on unpatched kernel.
> 
> Signed-off-by: Eryu Guan <eguan@redhat.com>
> ---
>  tests/xfs/074 | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/tests/xfs/074 b/tests/xfs/074
> index a571a34..e6d6787 100755
> --- a/tests/xfs/074
> +++ b/tests/xfs/074
> @@ -62,7 +62,7 @@ mkdir -p $LOOP_MNT
>  $XFS_IO_PROG -ft -c "truncate 1t" $LOOP_FILE >> $seqres.full
>  LOOP_DEV=`_create_loop_device $LOOP_FILE`
>  
> -_mkfs_dev -d size=40051712b,agcount=4 -l size=32m $LOOP_DEV
> +_mkfs_dev -d size=80103424b,agcount=4 -l size=32m $LOOP_DEV
>  _mount $LOOP_DEV $LOOP_MNT

That was sized to give AGs of a specific size, which originally
contributed to the problem being exposed. You should change the
block count specification to a size specification so the filesysetm
being made on 4k block size filesystems remains unchanged.

size	= 40051712b
	= 40051712 * 4096
	= 164,051,812,352
	= 156452m

i.e.

+_mkfs_dev -d size=156452m,agcount=4 -l size=32m $LOOP_DEV

Cheers,

Dave.
Eryu Guan Aug. 12, 2015, 3:30 a.m. UTC | #2
On Tue, Aug 11, 2015 at 12:39:46PM +1000, Dave Chinner wrote:
> On Mon, Aug 10, 2015 at 09:15:41PM +0800, Eryu Guan wrote:
> > When testing 512 block size xfs, xfs/074 fails as
> > 
> >    QA output created by 074
> >   +fallocate: No space left on device
> >    Silence is golden
> > 
> > That's because 40051712*512=20G < 30G.
> > 
> > Doubling the filesystem size makes the test on 512 block size xfs pass,
> > and test still fails on unpatched kernel.
> > 
> > Signed-off-by: Eryu Guan <eguan@redhat.com>
> > ---
> >  tests/xfs/074 | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/tests/xfs/074 b/tests/xfs/074
> > index a571a34..e6d6787 100755
> > --- a/tests/xfs/074
> > +++ b/tests/xfs/074
> > @@ -62,7 +62,7 @@ mkdir -p $LOOP_MNT
> >  $XFS_IO_PROG -ft -c "truncate 1t" $LOOP_FILE >> $seqres.full
> >  LOOP_DEV=`_create_loop_device $LOOP_FILE`
> >  
> > -_mkfs_dev -d size=40051712b,agcount=4 -l size=32m $LOOP_DEV
> > +_mkfs_dev -d size=80103424b,agcount=4 -l size=32m $LOOP_DEV
> >  _mount $LOOP_DEV $LOOP_MNT
> 
> That was sized to give AGs of a specific size, which originally
> contributed to the problem being exposed. You should change the
> block count specification to a size specification so the filesysetm
> being made on 4k block size filesystems remains unchanged.
> 
> size	= 40051712b
> 	= 40051712 * 4096
> 	= 164,051,812,352
> 	= 156452m
> 
> i.e.
> 
> +_mkfs_dev -d size=156452m,agcount=4 -l size=32m $LOOP_DEV

Thanks for the review, will send v2.

Eryu
--
To unsubscribe from this list: send the line "unsubscribe fstests" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/tests/xfs/074 b/tests/xfs/074
index a571a34..e6d6787 100755
--- a/tests/xfs/074
+++ b/tests/xfs/074
@@ -62,7 +62,7 @@  mkdir -p $LOOP_MNT
 $XFS_IO_PROG -ft -c "truncate 1t" $LOOP_FILE >> $seqres.full
 LOOP_DEV=`_create_loop_device $LOOP_FILE`
 
-_mkfs_dev -d size=40051712b,agcount=4 -l size=32m $LOOP_DEV
+_mkfs_dev -d size=80103424b,agcount=4 -l size=32m $LOOP_DEV
 _mount $LOOP_DEV $LOOP_MNT
 
 # Corrupt the BMBT by creating extents larger than MAXEXTLEN