All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] xfstest: shared/298 fixup mkfs options
@ 2014-08-13 15:36 Dmitry Monakhov
  2014-08-13 15:36 ` [PATCH 2/2] xfstest: ext4/307 cleanup Dmitry Monakhov
                   ` (3 more replies)
  0 siblings, 4 replies; 10+ messages in thread
From: Dmitry Monakhov @ 2014-08-13 15:36 UTC (permalink / raw)
  To: fstests; +Cc: david, Dmitry Monakhov

Currently mkfs faile due to incorrect options

Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
---
 tests/shared/298 |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/shared/298 b/tests/shared/298
index 372fd02..685ba27 100755
--- a/tests/shared/298
+++ b/tests/shared/298
@@ -134,8 +134,8 @@ mkdir $loop_mnt
 
 [ "$FSTYP" = "xfs" ] && MKFS_OPTIONS="-f $MKFS_OPTIONS"
 
-$MKFS_PROG -t $FSTYP $MKFS_OPTIONS $loop_dev &> /dev/null
-$MOUNT_PROG $loop_dev $loop_mnt
+run_check $MKFS_PROG -t $FSTYP -- $MKFS_OPTIONS $loop_dev
+run_check $MOUNT_PROG $loop_dev $loop_mnt
 
 echo -n "Generating garbage on loop..."
 # Goal is to fill it up, ignore any errors.
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* [PATCH 2/2] xfstest: ext4/307 cleanup
  2014-08-13 15:36 [PATCH 1/2] xfstest: shared/298 fixup mkfs options Dmitry Monakhov
@ 2014-08-13 15:36 ` Dmitry Monakhov
  2014-08-14 14:22   ` Lukáš Czerner
  2014-08-14 14:13 ` [PATCH 1/2] xfstest: shared/298 fixup mkfs options Lukáš Czerner
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 10+ messages in thread
From: Dmitry Monakhov @ 2014-08-13 15:36 UTC (permalink / raw)
  To: fstests; +Cc: david, Dmitry Monakhov

 tests/ext4/307:
 - test various block sizes
 src/e4compact.c:
 - fix incorrect offset for donor file
 - add support for tunable block size

Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
---
 src/e4compact.c    |   22 +++++++++++++++++-----
 tests/ext4/307     |   16 +++++++++++-----
 tests/ext4/307.out |   13 +++++++++++++
 3 files changed, 41 insertions(+), 10 deletions(-)

diff --git a/src/e4compact.c b/src/e4compact.c
index de0aeb6..c0284ff 100644
--- a/src/e4compact.c
+++ b/src/e4compact.c
@@ -48,6 +48,8 @@ struct donor_info
 	__u64 length;
 };
 
+static long page_size;
+static long block_size;
 static int ignore_error = 0;
 static int verbose = 0;
 
@@ -64,7 +66,6 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
 	mv_ioc.donor_fd = donor->fd;
 	mv_ioc.orig_start = start;
 	mv_ioc.donor_start = donor->offset;
-	mv_ioc.moved_len = 0;
 	mv_ioc.len = len;
 
 	if (verbose)
@@ -77,6 +78,7 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
 	do {
 		i++;
 		errno = 0;
+		mv_ioc.moved_len = 0;
 		ret = ioctl(fd, EXT4_IOC_MOVE_EXT, &mv_ioc);
 		if (verbose)
 			printf("process %s  it:%d start:%lld len:%lld donor:%lld,"
@@ -102,12 +104,12 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
 		assert(mv_ioc.len >= mv_ioc.moved_len);
 		mv_ioc.len -= mv_ioc.moved_len;
 		mv_ioc.orig_start += mv_ioc.moved_len;
-		mv_ioc.donor_start = mv_ioc.orig_start;
+		mv_ioc.donor_start += mv_ioc.moved_len;
 		moved += mv_ioc.moved_len;
-
 	} while (mv_ioc.len);
 
-	if (ret && (errno == EBUSY || errno == ENODATA))
+	if (ret && ignore_error &&
+	    (errno == EBUSY || errno == ENODATA || errno == EOPNOTSUPP))
 		ret = 0;
 	donor->length -= moved;
 	donor->offset += moved;
@@ -133,9 +135,16 @@ int main(int argc, char **argv)
 	extern int optind;
 	int c;
 	char * donor_name = NULL;
+	int blk_per_pg;
 	donor.offset = 0;
-	while ((c = getopt(argc, argv, "f:o:iv")) != -1) {
+
+	page_size = sysconf(_SC_PAGESIZE);
+	block_size = page_size;
+
+	while ((c = getopt(argc, argv, "b:f:o:iv")) != -1) {
 		switch (c) {
+		case 'b':
+			block_size = atol(optarg);
 		case 'o':
 			donor.offset = atol(optarg);
 			break;
@@ -167,6 +176,7 @@ int main(int argc, char **argv)
 	if (donor.offset)
 		donor.offset /= st.st_blksize;
 
+	blk_per_pg = page_size / block_size;
 	if (verbose)
 		printf("Init donor :%s off:%lld len:%lld\n", argv[1], donor.offset, donor.length);
 	while ((read = getline(&line, &len, stdin)) != -1) {
@@ -194,6 +204,8 @@ int main(int argc, char **argv)
 
 		}
 		if (st.st_size && st.st_blocks) {
+
+			donor.offset =  (donor.offset + blk_per_pg -1) & ~(blk_per_pg -1);
 			ret = do_defrag_one(fd, line, 0,
 					    (st.st_size  + st.st_blksize-1)/
 					    st.st_blksize, &donor);
diff --git a/tests/ext4/307 b/tests/ext4/307
index 081f819..ee20f61 100755
--- a/tests/ext4/307
+++ b/tests/ext4/307
@@ -39,7 +39,11 @@ trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
 FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
 _workout()
 {
+	blk_sz=$1
 	echo ""
+	echo " Start test for $blk_sz blocksize "
+	_scratch_mkfs_sized $((512 * 1024 * 1024)) $blk_sz >> $seqres.full 2>&1
+	_scratch_mount
 	echo "Run fsstress"
 	out=$SCRATCH_MNT/fsstress.$$
 	args=`_scale_fsstress_args -p4 -n999 -f setattr=1 $FSSTRESS_AVOID -d $out`
@@ -52,9 +56,12 @@ _workout()
 	$XFS_IO_PROG -c "falloc 0 250M" -f $SCRATCH_MNT/donor | _filter_xfs_io
 	echo "Perform compacting"
 	cat $out.list | run_check $here/src/e4compact \
-		-i -v -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
+		-i -v -b $blk_sz -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
+	$XFS_IO_PROG -c "fiemap" -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
 	echo "Check data"
 	run_check md5sum -c $out.md5sum
+	_scratch_unmount
+	_check_scratch_fs
 }
 
 # real QA test starts here
@@ -65,9 +72,8 @@ _need_to_be_root
 _require_scratch
 _require_defrag
 
-_scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seqres.full 2>&1
-_scratch_mount
-
-_workout
+_workout 4096
+_workout 2048
+_workout 1024
 status=0
 exit
diff --git a/tests/ext4/307.out b/tests/ext4/307.out
index f48e9f3..9cbd1ab 100644
--- a/tests/ext4/307.out
+++ b/tests/ext4/307.out
@@ -1,5 +1,18 @@
 QA output created by 307
 
+ Start test for 4096 blocksize 
+Run fsstress
+Allocate donor file
+Perform compacting
+Check data
+
+ Start test for 2048 blocksize 
+Run fsstress
+Allocate donor file
+Perform compacting
+Check data
+
+ Start test for 1024 blocksize 
 Run fsstress
 Allocate donor file
 Perform compacting
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] xfstest: shared/298 fixup mkfs options
  2014-08-13 15:36 [PATCH 1/2] xfstest: shared/298 fixup mkfs options Dmitry Monakhov
  2014-08-13 15:36 ` [PATCH 2/2] xfstest: ext4/307 cleanup Dmitry Monakhov
@ 2014-08-14 14:13 ` Lukáš Czerner
  2014-08-14 17:08 ` Eric Sandeen
  2014-08-15  0:44 ` Dave Chinner
  3 siblings, 0 replies; 10+ messages in thread
From: Lukáš Czerner @ 2014-08-14 14:13 UTC (permalink / raw)
  To: Dmitry Monakhov; +Cc: fstests, david

On Wed, 13 Aug 2014, Dmitry Monakhov wrote:

> Date: Wed, 13 Aug 2014 19:36:27 +0400
> From: Dmitry Monakhov <dmonakhov@openvz.org>
> To: fstests@vger.kernel.org
> Cc: david@fromorbit.com, Dmitry Monakhov <dmonakhov@openvz.org>
> Subject: [PATCH 1/2] xfstest: shared/298 fixup mkfs options
> 
> Currently mkfs faile due to incorrect options

Looks good.

Reviewed-by: Lukas Czerner <lczerner@redhat.com>

> 
> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> ---
>  tests/shared/298 |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/shared/298 b/tests/shared/298
> index 372fd02..685ba27 100755
> --- a/tests/shared/298
> +++ b/tests/shared/298
> @@ -134,8 +134,8 @@ mkdir $loop_mnt
>  
>  [ "$FSTYP" = "xfs" ] && MKFS_OPTIONS="-f $MKFS_OPTIONS"
>  
> -$MKFS_PROG -t $FSTYP $MKFS_OPTIONS $loop_dev &> /dev/null
> -$MOUNT_PROG $loop_dev $loop_mnt
> +run_check $MKFS_PROG -t $FSTYP -- $MKFS_OPTIONS $loop_dev
> +run_check $MOUNT_PROG $loop_dev $loop_mnt
>  
>  echo -n "Generating garbage on loop..."
>  # Goal is to fill it up, ignore any errors.
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/2] xfstest: ext4/307 cleanup
  2014-08-13 15:36 ` [PATCH 2/2] xfstest: ext4/307 cleanup Dmitry Monakhov
@ 2014-08-14 14:22   ` Lukáš Czerner
  2014-08-15 10:42     ` Dmitry Monakhov
  0 siblings, 1 reply; 10+ messages in thread
From: Lukáš Czerner @ 2014-08-14 14:22 UTC (permalink / raw)
  To: Dmitry Monakhov; +Cc: fstests, david

On Wed, 13 Aug 2014, Dmitry Monakhov wrote:

> Date: Wed, 13 Aug 2014 19:36:28 +0400
> From: Dmitry Monakhov <dmonakhov@openvz.org>
> To: fstests@vger.kernel.org
> Cc: david@fromorbit.com, Dmitry Monakhov <dmonakhov@openvz.org>
> Subject: [PATCH 2/2] xfstest: ext4/307 cleanup
> 
>  tests/ext4/307:
>  - test various block sizes
>  src/e4compact.c:
>  - fix incorrect offset for donor file
>  - add support for tunable block size

Seems like those are two separate problems and should be in separate
patches.

Also I do not particularly like the idea of adding multiple block
size test to every test there is in xfstests. There is
MKFS_OPTIONS for that to do exactly this globally. And this
particular test does not really seem to require different block
sizes.

-Lukas


> 
> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> ---
>  src/e4compact.c    |   22 +++++++++++++++++-----
>  tests/ext4/307     |   16 +++++++++++-----
>  tests/ext4/307.out |   13 +++++++++++++
>  3 files changed, 41 insertions(+), 10 deletions(-)
> 
> diff --git a/src/e4compact.c b/src/e4compact.c
> index de0aeb6..c0284ff 100644
> --- a/src/e4compact.c
> +++ b/src/e4compact.c
> @@ -48,6 +48,8 @@ struct donor_info
>  	__u64 length;
>  };
>  
> +static long page_size;
> +static long block_size;
>  static int ignore_error = 0;
>  static int verbose = 0;
>  
> @@ -64,7 +66,6 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
>  	mv_ioc.donor_fd = donor->fd;
>  	mv_ioc.orig_start = start;
>  	mv_ioc.donor_start = donor->offset;
> -	mv_ioc.moved_len = 0;
>  	mv_ioc.len = len;
>  
>  	if (verbose)
> @@ -77,6 +78,7 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
>  	do {
>  		i++;
>  		errno = 0;
> +		mv_ioc.moved_len = 0;
>  		ret = ioctl(fd, EXT4_IOC_MOVE_EXT, &mv_ioc);
>  		if (verbose)
>  			printf("process %s  it:%d start:%lld len:%lld donor:%lld,"
> @@ -102,12 +104,12 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
>  		assert(mv_ioc.len >= mv_ioc.moved_len);
>  		mv_ioc.len -= mv_ioc.moved_len;
>  		mv_ioc.orig_start += mv_ioc.moved_len;
> -		mv_ioc.donor_start = mv_ioc.orig_start;
> +		mv_ioc.donor_start += mv_ioc.moved_len;
>  		moved += mv_ioc.moved_len;
> -
>  	} while (mv_ioc.len);
>  
> -	if (ret && (errno == EBUSY || errno == ENODATA))
> +	if (ret && ignore_error &&
> +	    (errno == EBUSY || errno == ENODATA || errno == EOPNOTSUPP))
>  		ret = 0;
>  	donor->length -= moved;
>  	donor->offset += moved;
> @@ -133,9 +135,16 @@ int main(int argc, char **argv)
>  	extern int optind;
>  	int c;
>  	char * donor_name = NULL;
> +	int blk_per_pg;
>  	donor.offset = 0;
> -	while ((c = getopt(argc, argv, "f:o:iv")) != -1) {
> +
> +	page_size = sysconf(_SC_PAGESIZE);
> +	block_size = page_size;
> +
> +	while ((c = getopt(argc, argv, "b:f:o:iv")) != -1) {
>  		switch (c) {
> +		case 'b':
> +			block_size = atol(optarg);
>  		case 'o':
>  			donor.offset = atol(optarg);
>  			break;
> @@ -167,6 +176,7 @@ int main(int argc, char **argv)
>  	if (donor.offset)
>  		donor.offset /= st.st_blksize;
>  
> +	blk_per_pg = page_size / block_size;
>  	if (verbose)
>  		printf("Init donor :%s off:%lld len:%lld\n", argv[1], donor.offset, donor.length);
>  	while ((read = getline(&line, &len, stdin)) != -1) {
> @@ -194,6 +204,8 @@ int main(int argc, char **argv)
>  
>  		}
>  		if (st.st_size && st.st_blocks) {
> +
> +			donor.offset =  (donor.offset + blk_per_pg -1) & ~(blk_per_pg -1);
>  			ret = do_defrag_one(fd, line, 0,
>  					    (st.st_size  + st.st_blksize-1)/
>  					    st.st_blksize, &donor);
> diff --git a/tests/ext4/307 b/tests/ext4/307
> index 081f819..ee20f61 100755
> --- a/tests/ext4/307
> +++ b/tests/ext4/307
> @@ -39,7 +39,11 @@ trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
>  FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
>  _workout()
>  {
> +	blk_sz=$1
>  	echo ""
> +	echo " Start test for $blk_sz blocksize "
> +	_scratch_mkfs_sized $((512 * 1024 * 1024)) $blk_sz >> $seqres.full 2>&1
> +	_scratch_mount
>  	echo "Run fsstress"
>  	out=$SCRATCH_MNT/fsstress.$$
>  	args=`_scale_fsstress_args -p4 -n999 -f setattr=1 $FSSTRESS_AVOID -d $out`
> @@ -52,9 +56,12 @@ _workout()
>  	$XFS_IO_PROG -c "falloc 0 250M" -f $SCRATCH_MNT/donor | _filter_xfs_io
>  	echo "Perform compacting"
>  	cat $out.list | run_check $here/src/e4compact \
> -		-i -v -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
> +		-i -v -b $blk_sz -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
> +	$XFS_IO_PROG -c "fiemap" -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
>  	echo "Check data"
>  	run_check md5sum -c $out.md5sum
> +	_scratch_unmount
> +	_check_scratch_fs
>  }
>  
>  # real QA test starts here
> @@ -65,9 +72,8 @@ _need_to_be_root
>  _require_scratch
>  _require_defrag
>  
> -_scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seqres.full 2>&1
> -_scratch_mount
> -
> -_workout
> +_workout 4096
> +_workout 2048
> +_workout 1024
>  status=0
>  exit
> diff --git a/tests/ext4/307.out b/tests/ext4/307.out
> index f48e9f3..9cbd1ab 100644
> --- a/tests/ext4/307.out
> +++ b/tests/ext4/307.out
> @@ -1,5 +1,18 @@
>  QA output created by 307
>  
> + Start test for 4096 blocksize 
> +Run fsstress
> +Allocate donor file
> +Perform compacting
> +Check data
> +
> + Start test for 2048 blocksize 
> +Run fsstress
> +Allocate donor file
> +Perform compacting
> +Check data
> +
> + Start test for 1024 blocksize 
>  Run fsstress
>  Allocate donor file
>  Perform compacting
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] xfstest: shared/298 fixup mkfs options
  2014-08-13 15:36 [PATCH 1/2] xfstest: shared/298 fixup mkfs options Dmitry Monakhov
  2014-08-13 15:36 ` [PATCH 2/2] xfstest: ext4/307 cleanup Dmitry Monakhov
  2014-08-14 14:13 ` [PATCH 1/2] xfstest: shared/298 fixup mkfs options Lukáš Czerner
@ 2014-08-14 17:08 ` Eric Sandeen
  2014-08-15 10:20   ` Dmitry Monakhov
  2014-08-15  0:44 ` Dave Chinner
  3 siblings, 1 reply; 10+ messages in thread
From: Eric Sandeen @ 2014-08-14 17:08 UTC (permalink / raw)
  To: Dmitry Monakhov, fstests; +Cc: david

On 8/13/14, 8:36 AM, Dmitry Monakhov wrote:
> Currently mkfs faile due to incorrect options

fails how, for what fs, with what options?

Thanks,
-Eric

> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> ---
>  tests/shared/298 |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/shared/298 b/tests/shared/298
> index 372fd02..685ba27 100755
> --- a/tests/shared/298
> +++ b/tests/shared/298
> @@ -134,8 +134,8 @@ mkdir $loop_mnt
>  
>  [ "$FSTYP" = "xfs" ] && MKFS_OPTIONS="-f $MKFS_OPTIONS"
>  
> -$MKFS_PROG -t $FSTYP $MKFS_OPTIONS $loop_dev &> /dev/null
> -$MOUNT_PROG $loop_dev $loop_mnt
> +run_check $MKFS_PROG -t $FSTYP -- $MKFS_OPTIONS $loop_dev
> +run_check $MOUNT_PROG $loop_dev $loop_mnt
>  
>  echo -n "Generating garbage on loop..."
>  # Goal is to fill it up, ignore any errors.
> 


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] xfstest: shared/298 fixup mkfs options
  2014-08-13 15:36 [PATCH 1/2] xfstest: shared/298 fixup mkfs options Dmitry Monakhov
                   ` (2 preceding siblings ...)
  2014-08-14 17:08 ` Eric Sandeen
@ 2014-08-15  0:44 ` Dave Chinner
  2014-08-15 10:30   ` Dmitry Monakhov
  3 siblings, 1 reply; 10+ messages in thread
From: Dave Chinner @ 2014-08-15  0:44 UTC (permalink / raw)
  To: Dmitry Monakhov; +Cc: fstests

On Wed, Aug 13, 2014 at 07:36:27PM +0400, Dmitry Monakhov wrote:
> Currently mkfs faile due to incorrect options
> 
> Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> ---
>  tests/shared/298 |    4 ++--
>  1 files changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/tests/shared/298 b/tests/shared/298
> index 372fd02..685ba27 100755
> --- a/tests/shared/298
> +++ b/tests/shared/298
> @@ -134,8 +134,8 @@ mkdir $loop_mnt
>  
>  [ "$FSTYP" = "xfs" ] && MKFS_OPTIONS="-f $MKFS_OPTIONS"
>  
> -$MKFS_PROG -t $FSTYP $MKFS_OPTIONS $loop_dev &> /dev/null
> -$MOUNT_PROG $loop_dev $loop_mnt
> +run_check $MKFS_PROG -t $FSTYP -- $MKFS_OPTIONS $loop_dev
> +run_check $MOUNT_PROG $loop_dev $loop_mnt

Urk. Please don't propagate run_check into code that doesn't need
it.

What we should do here is write a generic wrapper - _mkfs_dev -
which allows you to pass in a device to run mkfs on.  This can then
be implemented similar to _scratch_mkfs, and so avoid the need for
everyone to re-invent the wheel slightly differently to support
different filesystems on loop devices in generic/shared tests.

Cheers,

Dave.
-- 
Dave Chinner
david@fromorbit.com

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] xfstest: shared/298 fixup mkfs options
  2014-08-14 17:08 ` Eric Sandeen
@ 2014-08-15 10:20   ` Dmitry Monakhov
  0 siblings, 0 replies; 10+ messages in thread
From: Dmitry Monakhov @ 2014-08-15 10:20 UTC (permalink / raw)
  To: Eric Sandeen, fstests; +Cc: david

On Thu, 14 Aug 2014 10:08:46 -0700, Eric Sandeen <sandeen@sandeen.net> wrote:
> On 8/13/14, 8:36 AM, Dmitry Monakhov wrote:
> > Currently mkfs faile due to incorrect options
> 
> fails how, for what fs, with what options?
FSTYP         -- ext4
PLATFORM      -- Linux/x86_64 ts105 3.16.0-rc5-00015-g15eb408
MKFS_OPTIONS  -- -b4096 /dev/mapper/vg-scratch_dev
MOUNT_OPTIONS -- -o acl,user_xattr /dev/mapper/vg-scratch_dev /mnt_scratch

shared/298 18s ... - output mismatch (see
/root/xfstests-dev.git/results//shared/298.out.bad)
    --- tests/shared/298.out    2014-08-13 18:22:08.297016412 +0400
    +++ /root/xfstests-dev.git/results//shared/298.out.bad    2014-08-15
    14:19:00.847434929 +0400
    @@ -1,4 +1,5 @@
     QA output created by 298
    +mount: you must specify the filesystem type
     Generating garbage on loop...done.
     Running fstrim...done.
     Detecting interesting holes in image...done.
    ...
    (Run 'diff -u tests/shared/298.out
    /root/xfstests-dev.git/results//shared/298.out.bad'  to see the
    entire diff)
Ran: shared/298
Failures: shared/298
Failed 1 of 1 tests
> 
> Thanks,
> -Eric
> 
> > Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> > ---
> >  tests/shared/298 |    4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/shared/298 b/tests/shared/298
> > index 372fd02..685ba27 100755
> > --- a/tests/shared/298
> > +++ b/tests/shared/298
> > @@ -134,8 +134,8 @@ mkdir $loop_mnt
> >  
> >  [ "$FSTYP" = "xfs" ] && MKFS_OPTIONS="-f $MKFS_OPTIONS"
> >  
> > -$MKFS_PROG -t $FSTYP $MKFS_OPTIONS $loop_dev &> /dev/null
> > -$MOUNT_PROG $loop_dev $loop_mnt
> > +run_check $MKFS_PROG -t $FSTYP -- $MKFS_OPTIONS $loop_dev
> > +run_check $MOUNT_PROG $loop_dev $loop_mnt
> >  
> >  echo -n "Generating garbage on loop..."
> >  # Goal is to fill it up, ignore any errors.
> > 
> 
> --
> 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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 1/2] xfstest: shared/298 fixup mkfs options
  2014-08-15  0:44 ` Dave Chinner
@ 2014-08-15 10:30   ` Dmitry Monakhov
  0 siblings, 0 replies; 10+ messages in thread
From: Dmitry Monakhov @ 2014-08-15 10:30 UTC (permalink / raw)
  To: Dave Chinner; +Cc: fstests

On Fri, 15 Aug 2014 10:44:20 +1000, Dave Chinner <david@fromorbit.com> wrote:
> On Wed, Aug 13, 2014 at 07:36:27PM +0400, Dmitry Monakhov wrote:
> > Currently mkfs faile due to incorrect options
> > 
> > Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> > ---
> >  tests/shared/298 |    4 ++--
> >  1 files changed, 2 insertions(+), 2 deletions(-)
> > 
> > diff --git a/tests/shared/298 b/tests/shared/298
> > index 372fd02..685ba27 100755
> > --- a/tests/shared/298
> > +++ b/tests/shared/298
> > @@ -134,8 +134,8 @@ mkdir $loop_mnt
> >  
> >  [ "$FSTYP" = "xfs" ] && MKFS_OPTIONS="-f $MKFS_OPTIONS"
> >  
> > -$MKFS_PROG -t $FSTYP $MKFS_OPTIONS $loop_dev &> /dev/null
> > -$MOUNT_PROG $loop_dev $loop_mnt
> > +run_check $MKFS_PROG -t $FSTYP -- $MKFS_OPTIONS $loop_dev
> > +run_check $MOUNT_PROG $loop_dev $loop_mnt
> 
> Urk. Please don't propagate run_check into code that doesn't need
> it.
Ok. My idea was to check result before starting any IO activity
> 
> What we should do here is write a generic wrapper - _mkfs_dev -
> which allows you to pass in a device to run mkfs on.  This can then
> be implemented similar to _scratch_mkfs, and so avoid the need for
> everyone to re-invent the wheel slightly differently to support
> different filesystems on loop devices in generic/shared tests.
Agree, this is the only way to make things right. Will send new
version soon.
> Cheers,
> 
> Dave.
> -- 
> Dave Chinner
> david@fromorbit.com
> --
> 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

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/2] xfstest: ext4/307 cleanup
  2014-08-14 14:22   ` Lukáš Czerner
@ 2014-08-15 10:42     ` Dmitry Monakhov
  2014-08-15 10:51       ` Lukáš Czerner
  0 siblings, 1 reply; 10+ messages in thread
From: Dmitry Monakhov @ 2014-08-15 10:42 UTC (permalink / raw)
  To: Lukáš Czerner; +Cc: fstests, david

On Thu, 14 Aug 2014 16:22:35 +0200 (CEST), Lukáš Czerner <lczerner@redhat.com> wrote:
> On Wed, 13 Aug 2014, Dmitry Monakhov wrote:
> 
> > Date: Wed, 13 Aug 2014 19:36:28 +0400
> > From: Dmitry Monakhov <dmonakhov@openvz.org>
> > To: fstests@vger.kernel.org
> > Cc: david@fromorbit.com, Dmitry Monakhov <dmonakhov@openvz.org>
> > Subject: [PATCH 2/2] xfstest: ext4/307 cleanup
> > 
> >  tests/ext4/307:
> >  - test various block sizes
> >  src/e4compact.c:
> >  - fix incorrect offset for donor file
> >  - add support for tunable block size
> 
> Seems like those are two separate problems and should be in separate
> patches.
Ok. No problem I'll separate it in two patches.
> 
> Also I do not particularly like the idea of adding multiple block
> size test to every test there is in xfstests. There is
> MKFS_OPTIONS for that to do exactly this globally. And this
> particular test does not really seem to require different block
> sizes.
Ok. But unfortunately _scratch_mkfs_sized ignores $MKFS_OPT and
require explicit block size parameter (and use 4096 BS by default)
In fact all existing users of this function use default blocksize value.
(which is bad because IMHO). I'll have to change _scratch_mkfs_sized in
order to respect $MKFS_OPT parameters
> -Lukas
> 
> 
> > 
> > Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> > ---
> >  src/e4compact.c    |   22 +++++++++++++++++-----
> >  tests/ext4/307     |   16 +++++++++++-----
> >  tests/ext4/307.out |   13 +++++++++++++
> >  3 files changed, 41 insertions(+), 10 deletions(-)
> > 
> > diff --git a/src/e4compact.c b/src/e4compact.c
> > index de0aeb6..c0284ff 100644
> > --- a/src/e4compact.c
> > +++ b/src/e4compact.c
> > @@ -48,6 +48,8 @@ struct donor_info
> >  	__u64 length;
> >  };
> >  
> > +static long page_size;
> > +static long block_size;
> >  static int ignore_error = 0;
> >  static int verbose = 0;
> >  
> > @@ -64,7 +66,6 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
> >  	mv_ioc.donor_fd = donor->fd;
> >  	mv_ioc.orig_start = start;
> >  	mv_ioc.donor_start = donor->offset;
> > -	mv_ioc.moved_len = 0;
> >  	mv_ioc.len = len;
> >  
> >  	if (verbose)
> > @@ -77,6 +78,7 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
> >  	do {
> >  		i++;
> >  		errno = 0;
> > +		mv_ioc.moved_len = 0;
> >  		ret = ioctl(fd, EXT4_IOC_MOVE_EXT, &mv_ioc);
> >  		if (verbose)
> >  			printf("process %s  it:%d start:%lld len:%lld donor:%lld,"
> > @@ -102,12 +104,12 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
> >  		assert(mv_ioc.len >= mv_ioc.moved_len);
> >  		mv_ioc.len -= mv_ioc.moved_len;
> >  		mv_ioc.orig_start += mv_ioc.moved_len;
> > -		mv_ioc.donor_start = mv_ioc.orig_start;
> > +		mv_ioc.donor_start += mv_ioc.moved_len;
> >  		moved += mv_ioc.moved_len;
> > -
> >  	} while (mv_ioc.len);
> >  
> > -	if (ret && (errno == EBUSY || errno == ENODATA))
> > +	if (ret && ignore_error &&
> > +	    (errno == EBUSY || errno == ENODATA || errno == EOPNOTSUPP))
> >  		ret = 0;
> >  	donor->length -= moved;
> >  	donor->offset += moved;
> > @@ -133,9 +135,16 @@ int main(int argc, char **argv)
> >  	extern int optind;
> >  	int c;
> >  	char * donor_name = NULL;
> > +	int blk_per_pg;
> >  	donor.offset = 0;
> > -	while ((c = getopt(argc, argv, "f:o:iv")) != -1) {
> > +
> > +	page_size = sysconf(_SC_PAGESIZE);
> > +	block_size = page_size;
> > +
> > +	while ((c = getopt(argc, argv, "b:f:o:iv")) != -1) {
> >  		switch (c) {
> > +		case 'b':
> > +			block_size = atol(optarg);
> >  		case 'o':
> >  			donor.offset = atol(optarg);
> >  			break;
> > @@ -167,6 +176,7 @@ int main(int argc, char **argv)
> >  	if (donor.offset)
> >  		donor.offset /= st.st_blksize;
> >  
> > +	blk_per_pg = page_size / block_size;
> >  	if (verbose)
> >  		printf("Init donor :%s off:%lld len:%lld\n", argv[1], donor.offset, donor.length);
> >  	while ((read = getline(&line, &len, stdin)) != -1) {
> > @@ -194,6 +204,8 @@ int main(int argc, char **argv)
> >  
> >  		}
> >  		if (st.st_size && st.st_blocks) {
> > +
> > +			donor.offset =  (donor.offset + blk_per_pg -1) & ~(blk_per_pg -1);
> >  			ret = do_defrag_one(fd, line, 0,
> >  					    (st.st_size  + st.st_blksize-1)/
> >  					    st.st_blksize, &donor);
> > diff --git a/tests/ext4/307 b/tests/ext4/307
> > index 081f819..ee20f61 100755
> > --- a/tests/ext4/307
> > +++ b/tests/ext4/307
> > @@ -39,7 +39,11 @@ trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
> >  FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
> >  _workout()
> >  {
> > +	blk_sz=$1
> >  	echo ""
> > +	echo " Start test for $blk_sz blocksize "
> > +	_scratch_mkfs_sized $((512 * 1024 * 1024)) $blk_sz >> $seqres.full 2>&1
> > +	_scratch_mount
> >  	echo "Run fsstress"
> >  	out=$SCRATCH_MNT/fsstress.$$
> >  	args=`_scale_fsstress_args -p4 -n999 -f setattr=1 $FSSTRESS_AVOID -d $out`
> > @@ -52,9 +56,12 @@ _workout()
> >  	$XFS_IO_PROG -c "falloc 0 250M" -f $SCRATCH_MNT/donor | _filter_xfs_io
> >  	echo "Perform compacting"
> >  	cat $out.list | run_check $here/src/e4compact \
> > -		-i -v -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
> > +		-i -v -b $blk_sz -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
> > +	$XFS_IO_PROG -c "fiemap" -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
> >  	echo "Check data"
> >  	run_check md5sum -c $out.md5sum
> > +	_scratch_unmount
> > +	_check_scratch_fs
> >  }
> >  
> >  # real QA test starts here
> > @@ -65,9 +72,8 @@ _need_to_be_root
> >  _require_scratch
> >  _require_defrag
> >  
> > -_scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seqres.full 2>&1
> > -_scratch_mount
> > -
> > -_workout
> > +_workout 4096
> > +_workout 2048
> > +_workout 1024
> >  status=0
> >  exit
> > diff --git a/tests/ext4/307.out b/tests/ext4/307.out
> > index f48e9f3..9cbd1ab 100644
> > --- a/tests/ext4/307.out
> > +++ b/tests/ext4/307.out
> > @@ -1,5 +1,18 @@
> >  QA output created by 307
> >  
> > + Start test for 4096 blocksize 
> > +Run fsstress
> > +Allocate donor file
> > +Perform compacting
> > +Check data
> > +
> > + Start test for 2048 blocksize 
> > +Run fsstress
> > +Allocate donor file
> > +Perform compacting
> > +Check data
> > +
> > + Start test for 1024 blocksize 
> >  Run fsstress
> >  Allocate donor file
> >  Perform compacting
> > 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: [PATCH 2/2] xfstest: ext4/307 cleanup
  2014-08-15 10:42     ` Dmitry Monakhov
@ 2014-08-15 10:51       ` Lukáš Czerner
  0 siblings, 0 replies; 10+ messages in thread
From: Lukáš Czerner @ 2014-08-15 10:51 UTC (permalink / raw)
  To: Dmitry Monakhov; +Cc: fstests, david

[-- Attachment #1: Type: TEXT/PLAIN, Size: 7060 bytes --]

On Fri, 15 Aug 2014, Dmitry Monakhov wrote:

> Date: Fri, 15 Aug 2014 14:42:30 +0400
> From: Dmitry Monakhov <dmonakhov@openvz.org>
> To: Lukáš Czerner <lczerner@redhat.com>
> Cc: fstests@vger.kernel.org, david@fromorbit.com
> Subject: Re: [PATCH 2/2] xfstest: ext4/307 cleanup
> 
> On Thu, 14 Aug 2014 16:22:35 +0200 (CEST), Lukáš Czerner <lczerner@redhat.com> wrote:
> > On Wed, 13 Aug 2014, Dmitry Monakhov wrote:
> > 
> > > Date: Wed, 13 Aug 2014 19:36:28 +0400
> > > From: Dmitry Monakhov <dmonakhov@openvz.org>
> > > To: fstests@vger.kernel.org
> > > Cc: david@fromorbit.com, Dmitry Monakhov <dmonakhov@openvz.org>
> > > Subject: [PATCH 2/2] xfstest: ext4/307 cleanup
> > > 
> > >  tests/ext4/307:
> > >  - test various block sizes
> > >  src/e4compact.c:
> > >  - fix incorrect offset for donor file
> > >  - add support for tunable block size
> > 
> > Seems like those are two separate problems and should be in separate
> > patches.
> Ok. No problem I'll separate it in two patches.
> > 
> > Also I do not particularly like the idea of adding multiple block
> > size test to every test there is in xfstests. There is
> > MKFS_OPTIONS for that to do exactly this globally. And this
> > particular test does not really seem to require different block
> > sizes.
> Ok. But unfortunately _scratch_mkfs_sized ignores $MKFS_OPT and
> require explicit block size parameter (and use 4096 BS by default)
> In fact all existing users of this function use default blocksize value.
> (which is bad because IMHO). I'll have to change _scratch_mkfs_sized in
> order to respect $MKFS_OPT parameters

You're right I am quite surprised that this is the case. It'll be
best to fix it.

-Lukas

> > -Lukas
> > 
> > 
> > > 
> > > Signed-off-by: Dmitry Monakhov <dmonakhov@openvz.org>
> > > ---
> > >  src/e4compact.c    |   22 +++++++++++++++++-----
> > >  tests/ext4/307     |   16 +++++++++++-----
> > >  tests/ext4/307.out |   13 +++++++++++++
> > >  3 files changed, 41 insertions(+), 10 deletions(-)
> > > 
> > > diff --git a/src/e4compact.c b/src/e4compact.c
> > > index de0aeb6..c0284ff 100644
> > > --- a/src/e4compact.c
> > > +++ b/src/e4compact.c
> > > @@ -48,6 +48,8 @@ struct donor_info
> > >  	__u64 length;
> > >  };
> > >  
> > > +static long page_size;
> > > +static long block_size;
> > >  static int ignore_error = 0;
> > >  static int verbose = 0;
> > >  
> > > @@ -64,7 +66,6 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
> > >  	mv_ioc.donor_fd = donor->fd;
> > >  	mv_ioc.orig_start = start;
> > >  	mv_ioc.donor_start = donor->offset;
> > > -	mv_ioc.moved_len = 0;
> > >  	mv_ioc.len = len;
> > >  
> > >  	if (verbose)
> > > @@ -77,6 +78,7 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
> > >  	do {
> > >  		i++;
> > >  		errno = 0;
> > > +		mv_ioc.moved_len = 0;
> > >  		ret = ioctl(fd, EXT4_IOC_MOVE_EXT, &mv_ioc);
> > >  		if (verbose)
> > >  			printf("process %s  it:%d start:%lld len:%lld donor:%lld,"
> > > @@ -102,12 +104,12 @@ static int do_defrag_one(int fd, char *name,__u64 start, __u64 len, struct donor
> > >  		assert(mv_ioc.len >= mv_ioc.moved_len);
> > >  		mv_ioc.len -= mv_ioc.moved_len;
> > >  		mv_ioc.orig_start += mv_ioc.moved_len;
> > > -		mv_ioc.donor_start = mv_ioc.orig_start;
> > > +		mv_ioc.donor_start += mv_ioc.moved_len;
> > >  		moved += mv_ioc.moved_len;
> > > -
> > >  	} while (mv_ioc.len);
> > >  
> > > -	if (ret && (errno == EBUSY || errno == ENODATA))
> > > +	if (ret && ignore_error &&
> > > +	    (errno == EBUSY || errno == ENODATA || errno == EOPNOTSUPP))
> > >  		ret = 0;
> > >  	donor->length -= moved;
> > >  	donor->offset += moved;
> > > @@ -133,9 +135,16 @@ int main(int argc, char **argv)
> > >  	extern int optind;
> > >  	int c;
> > >  	char * donor_name = NULL;
> > > +	int blk_per_pg;
> > >  	donor.offset = 0;
> > > -	while ((c = getopt(argc, argv, "f:o:iv")) != -1) {
> > > +
> > > +	page_size = sysconf(_SC_PAGESIZE);
> > > +	block_size = page_size;
> > > +
> > > +	while ((c = getopt(argc, argv, "b:f:o:iv")) != -1) {
> > >  		switch (c) {
> > > +		case 'b':
> > > +			block_size = atol(optarg);
> > >  		case 'o':
> > >  			donor.offset = atol(optarg);
> > >  			break;
> > > @@ -167,6 +176,7 @@ int main(int argc, char **argv)
> > >  	if (donor.offset)
> > >  		donor.offset /= st.st_blksize;
> > >  
> > > +	blk_per_pg = page_size / block_size;
> > >  	if (verbose)
> > >  		printf("Init donor :%s off:%lld len:%lld\n", argv[1], donor.offset, donor.length);
> > >  	while ((read = getline(&line, &len, stdin)) != -1) {
> > > @@ -194,6 +204,8 @@ int main(int argc, char **argv)
> > >  
> > >  		}
> > >  		if (st.st_size && st.st_blocks) {
> > > +
> > > +			donor.offset =  (donor.offset + blk_per_pg -1) & ~(blk_per_pg -1);
> > >  			ret = do_defrag_one(fd, line, 0,
> > >  					    (st.st_size  + st.st_blksize-1)/
> > >  					    st.st_blksize, &donor);
> > > diff --git a/tests/ext4/307 b/tests/ext4/307
> > > index 081f819..ee20f61 100755
> > > --- a/tests/ext4/307
> > > +++ b/tests/ext4/307
> > > @@ -39,7 +39,11 @@ trap "rm -f $tmp.*; exit \$status" 0 1 2 3 15
> > >  FSSTRESS_AVOID="$FSSTRESS_AVOID -ffsync=0 -fsync=0 -ffdatasync=0"
> > >  _workout()
> > >  {
> > > +	blk_sz=$1
> > >  	echo ""
> > > +	echo " Start test for $blk_sz blocksize "
> > > +	_scratch_mkfs_sized $((512 * 1024 * 1024)) $blk_sz >> $seqres.full 2>&1
> > > +	_scratch_mount
> > >  	echo "Run fsstress"
> > >  	out=$SCRATCH_MNT/fsstress.$$
> > >  	args=`_scale_fsstress_args -p4 -n999 -f setattr=1 $FSSTRESS_AVOID -d $out`
> > > @@ -52,9 +56,12 @@ _workout()
> > >  	$XFS_IO_PROG -c "falloc 0 250M" -f $SCRATCH_MNT/donor | _filter_xfs_io
> > >  	echo "Perform compacting"
> > >  	cat $out.list | run_check $here/src/e4compact \
> > > -		-i -v -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
> > > +		-i -v -b $blk_sz -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
> > > +	$XFS_IO_PROG -c "fiemap" -f $SCRATCH_MNT/donor  >> $seqres.full 2>&1
> > >  	echo "Check data"
> > >  	run_check md5sum -c $out.md5sum
> > > +	_scratch_unmount
> > > +	_check_scratch_fs
> > >  }
> > >  
> > >  # real QA test starts here
> > > @@ -65,9 +72,8 @@ _need_to_be_root
> > >  _require_scratch
> > >  _require_defrag
> > >  
> > > -_scratch_mkfs_sized $((512 * 1024 * 1024)) >> $seqres.full 2>&1
> > > -_scratch_mount
> > > -
> > > -_workout
> > > +_workout 4096
> > > +_workout 2048
> > > +_workout 1024
> > >  status=0
> > >  exit
> > > diff --git a/tests/ext4/307.out b/tests/ext4/307.out
> > > index f48e9f3..9cbd1ab 100644
> > > --- a/tests/ext4/307.out
> > > +++ b/tests/ext4/307.out
> > > @@ -1,5 +1,18 @@
> > >  QA output created by 307
> > >  
> > > + Start test for 4096 blocksize 
> > > +Run fsstress
> > > +Allocate donor file
> > > +Perform compacting
> > > +Check data
> > > +
> > > + Start test for 2048 blocksize 
> > > +Run fsstress
> > > +Allocate donor file
> > > +Perform compacting
> > > +Check data
> > > +
> > > + Start test for 1024 blocksize 
> > >  Run fsstress
> > >  Allocate donor file
> > >  Perform compacting
> > > 
> 

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-08-15 10:52 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-08-13 15:36 [PATCH 1/2] xfstest: shared/298 fixup mkfs options Dmitry Monakhov
2014-08-13 15:36 ` [PATCH 2/2] xfstest: ext4/307 cleanup Dmitry Monakhov
2014-08-14 14:22   ` Lukáš Czerner
2014-08-15 10:42     ` Dmitry Monakhov
2014-08-15 10:51       ` Lukáš Czerner
2014-08-14 14:13 ` [PATCH 1/2] xfstest: shared/298 fixup mkfs options Lukáš Czerner
2014-08-14 17:08 ` Eric Sandeen
2014-08-15 10:20   ` Dmitry Monakhov
2014-08-15  0:44 ` Dave Chinner
2014-08-15 10:30   ` Dmitry Monakhov

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.