* [Cluster-devel] [PATCH] generic/441: whitelist gfs2 for full test
@ 2017-07-28 10:48 Jeff Layton
2017-07-31 8:49 ` Eryu Guan
2017-09-13 13:04 ` [Cluster-devel] [xfstests PATCH][RESEND] " Jeff Layton
0 siblings, 2 replies; 4+ messages in thread
From: Jeff Layton @ 2017-07-28 10:48 UTC (permalink / raw)
To: cluster-devel.redhat.com
From: Jeff Layton <jlayton@redhat.com>
gfs2 passes the full-scale generic/441 test with the patch that
converts it to use errseq_t reporting for fsync.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
---
tests/generic/441 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/generic/441 b/tests/generic/441
index 075d87723ca1..b98f709cb6eb 100755
--- a/tests/generic/441
+++ b/tests/generic/441
@@ -55,7 +55,7 @@ case $FSTYP in
btrfs)
_notrun "btrfs has a specialized test for this"
;;
- ext3|ext4|xfs)
+ ext3|ext4|gfs2|xfs)
# Do the more thorough test if we have a logdev
_has_logdev && sflag=''
;;
--
2.13.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Cluster-devel] [PATCH] generic/441: whitelist gfs2 for full test
2017-07-28 10:48 [Cluster-devel] [PATCH] generic/441: whitelist gfs2 for full test Jeff Layton
@ 2017-07-31 8:49 ` Eryu Guan
2017-09-13 13:04 ` [Cluster-devel] [xfstests PATCH][RESEND] " Jeff Layton
1 sibling, 0 replies; 4+ messages in thread
From: Eryu Guan @ 2017-07-31 8:49 UTC (permalink / raw)
To: cluster-devel.redhat.com
On Fri, Jul 28, 2017 at 06:48:27AM -0400, Jeff Layton wrote:
> From: Jeff Layton <jlayton@redhat.com>
>
> gfs2 passes the full-scale generic/441 test with the patch that
> converts it to use errseq_t reporting for fsync.
>
> Signed-off-by: Jeff Layton <jlayton@redhat.com>
> ---
> tests/generic/441 | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/generic/441 b/tests/generic/441
> index 075d87723ca1..b98f709cb6eb 100755
> --- a/tests/generic/441
> +++ b/tests/generic/441
> @@ -55,7 +55,7 @@ case $FSTYP in
> btrfs)
> _notrun "btrfs has a specialized test for this"
> ;;
> - ext3|ext4|xfs)
> + ext3|ext4|gfs2|xfs)
gfs2 has no external log device support yet in _scratch_mkfs, so if test
still passes with patched gfs2 in this case, I think we can test gfs2 in
full-scale mode unconditionally? e.g.
ext3|ext4|xfs)
# Do the more thorough test if we have a logdev
_has_logdev && sflag=''
;;
gfs2)
# <comments here>
sflag=''
;;
*)
;;
Thanks,
Eryu
^ permalink raw reply [flat|nested] 4+ messages in thread
* [Cluster-devel] [xfstests PATCH][RESEND] generic/441: whitelist gfs2 for full test
2017-07-28 10:48 [Cluster-devel] [PATCH] generic/441: whitelist gfs2 for full test Jeff Layton
2017-07-31 8:49 ` Eryu Guan
@ 2017-09-13 13:04 ` Jeff Layton
2017-09-14 6:16 ` Eryu Guan
1 sibling, 1 reply; 4+ messages in thread
From: Jeff Layton @ 2017-09-13 13:04 UTC (permalink / raw)
To: cluster-devel.redhat.com
From: Jeff Layton <jlayton@redhat.com>
gfs2 passes the full-scale generic/441 test with the patch that
converts it to use errseq_t reporting for fsync.
Signed-off-by: Jeff Layton <jlayton@redhat.com>
---
tests/generic/441 | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/generic/441 b/tests/generic/441
index 075d87723ca1..b98f709cb6eb 100755
--- a/tests/generic/441
+++ b/tests/generic/441
@@ -55,7 +55,7 @@ case $FSTYP in
btrfs)
_notrun "btrfs has a specialized test for this"
;;
- ext3|ext4|xfs)
+ ext3|ext4|gfs2|xfs)
# Do the more thorough test if we have a logdev
_has_logdev && sflag=''
;;
--
2.13.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [Cluster-devel] [xfstests PATCH][RESEND] generic/441: whitelist gfs2 for full test
2017-09-13 13:04 ` [Cluster-devel] [xfstests PATCH][RESEND] " Jeff Layton
@ 2017-09-14 6:16 ` Eryu Guan
0 siblings, 0 replies; 4+ messages in thread
From: Eryu Guan @ 2017-09-14 6:16 UTC (permalink / raw)
To: cluster-devel.redhat.com
Hi Jeff,
On Wed, Sep 13, 2017 at 09:04:00AM -0400, Jeff Layton wrote:
> From: Jeff Layton <jlayton@redhat.com>
>
> gfs2 passes the full-scale generic/441 test with the patch that
> converts it to use errseq_t reporting for fsync.
>
> Signed-off-by: Jeff Layton <jlayton@redhat.com>
> ---
> tests/generic/441 | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/generic/441 b/tests/generic/441
> index 075d87723ca1..b98f709cb6eb 100755
> --- a/tests/generic/441
> +++ b/tests/generic/441
> @@ -55,7 +55,7 @@ case $FSTYP in
> btrfs)
> _notrun "btrfs has a specialized test for this"
> ;;
> - ext3|ext4|xfs)
> + ext3|ext4|gfs2|xfs)
Seems you missed my previous reply to this patch on July 31st, or my
reply didn't hit the list at all..
Anyway, gfs2 has no external log device support yet in _scratch_mkfs,
gfs2 was created with internal log even _has_logdev returned true. So if
test still passes with patched gfs2 in this case, I think we can test
gfs2 in full-scale mode unconditionally? e.g.
ext3|ext4|xfs)
# Do the more thorough test if we have a logdev
_has_logdev && sflag=''
;;
gfs2)
# <comments here>
sflag=''
;;
*)
;;
But I pulled & built the latest Linus tree (which contains commit
d07a6ac7b6f8 ("gfs2: convert to errseq_t based writeback error reporting
for fsync")), and generic/441 still fails on gfs2 in the full-scale test
setup, and this doesn't match the commit log. Are there any additional
fixes required? Or did I miss anything?
--- tests/generic/441.out 2017-09-05 13:14:52.768000000 +0800
+++ /root/workspace/xfstests/results//gfs2/generic/441.out.bad 2017-09-14 13:03:57.280000000 +0800
@@ -1,3 +1,3 @@
QA output created by 441
Format and mount
-Test passed!
+Third fsync on fd[0] failed: Input/output error
Thanks,
Eryu
> # Do the more thorough test if we have a logdev
> _has_logdev && sflag=''
> ;;
> --
> 2.13.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe fstests" in
> the body of a message to majordomo at vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-09-14 6:16 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-28 10:48 [Cluster-devel] [PATCH] generic/441: whitelist gfs2 for full test Jeff Layton
2017-07-31 8:49 ` Eryu Guan
2017-09-13 13:04 ` [Cluster-devel] [xfstests PATCH][RESEND] " Jeff Layton
2017-09-14 6:16 ` Eryu Guan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).