From: Ilya Dryomov <idryomov@gmail.com>
To: fstests@vger.kernel.org
Cc: Lukas Czerner <lczerner@redhat.com>
Subject: [PATCH 2/3] common/rc: turn _filter_xfs_dmesg() into _filter_aiodio_dmesg()
Date: Tue, 10 Oct 2017 16:54:57 +0200 [thread overview]
Message-ID: <1507647298-9971-3-git-send-email-idryomov@gmail.com> (raw)
In-Reply-To: <1507647298-9971-1-git-send-email-idryomov@gmail.com>
With upstream commit 332391a9935d ("fs: Fix page cache inconsistency
when mixing buffered and AIO DIO"), ext4 (and probably other non-iomap
based filesystems) need a _check_dmesg() whitelist entry for a new WARN
in dio_complete() -- generic/095 and 247 trigger a dio_complete() splat
pretty reliably for me.
Add dio_complete() entry to _filter_xfs_dmesg(), rename it and use it
unconditionally in generic/095, 224, 247 and 446.
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
---
common/rc | 8 +++++---
tests/generic/095 | 7 ++-----
tests/generic/224 | 9 +++------
tests/generic/247 | 9 +++------
tests/generic/446 | 9 +++------
5 files changed, 16 insertions(+), 26 deletions(-)
diff --git a/common/rc b/common/rc
index e15c8fc27405..03d2a9cd2484 100644
--- a/common/rc
+++ b/common/rc
@@ -2027,10 +2027,10 @@ _run_aiodio()
return $status
}
-# xfs generates WARNINGs on purpose when applications mix buffered/mmap IO with
+# We generate WARNINGs on purpose when applications mix buffered/mmap IO with
# direct IO on the same file. This is a helper for _check_dmesg() to filter out
# such warnings.
-_filter_xfs_dmesg()
+_filter_aiodio_dmesg()
{
local warn1="WARNING:.*fs/xfs/xfs_file\.c:.*xfs_file_dio_aio_write.*"
local warn2="WARNING:.*fs/xfs/xfs_file\.c:.*xfs_file_dio_aio_read.*"
@@ -2040,6 +2040,7 @@ _filter_xfs_dmesg()
local warn6="WARNING:.*fs/xfs/xfs_aops\.c:.*__xfs_get_blocks.*"
local warn7="WARNING:.*fs/iomap\.c:.*iomap_dio_actor.*"
local warn8="WARNING:.*fs/iomap\.c:.*iomap_dio_complete.*"
+ local warn9="WARNING:.*fs/direct-io\.c:.*dio_complete.*"
sed -e "s#$warn1#Intentional warnings in xfs_file_dio_aio_write#" \
-e "s#$warn2#Intentional warnings in xfs_file_dio_aio_read#" \
-e "s#$warn3#Intentional warnings in xfs_file_read_iter#" \
@@ -2047,7 +2048,8 @@ _filter_xfs_dmesg()
-e "s#$warn5#Intentional warnings in iomap_dio_rw#" \
-e "s#$warn6#Intentional warnings in __xfs_get_blocks#" \
-e "s#$warn7#Intentional warnings in iomap_dio_actor#" \
- -e "s#$warn8#Intentional warnings in iomap_dio_complete#"
+ -e "s#$warn8#Intentional warnings in iomap_dio_complete#" \
+ -e "s#$warn9#Intentional warnings in dio_complete#"
}
# this test requires y2038 sysfs switch and filesystem
diff --git a/tests/generic/095 b/tests/generic/095
index 050215d41700..fd4f13fd0a1b 100755
--- a/tests/generic/095
+++ b/tests/generic/095
@@ -126,10 +126,7 @@ $FIO_PROG $fio_config >>$seqres.full 2>&1
# umount before checking dmesg in case umount triggers any WARNING or Oops
_scratch_unmount
-if [ "$FSTYP" == "xfs" ]; then
- _check_dmesg _filter_xfs_dmesg
-else
- _check_dmesg
-fi
+_check_dmesg _filter_aiodio_dmesg
+
status=$?
exit
diff --git a/tests/generic/224 b/tests/generic/224
index 29b1c05d06df..6b3a81536aa8 100755
--- a/tests/generic/224
+++ b/tests/generic/224
@@ -83,13 +83,10 @@ done
wait
echo "*** Silence is golden ***"
-# unmount and check dmesg, filtering out expected XFS warnings about mixed
+# unmount and check dmesg, filtering out expected warnings about mixed
# direct and buffered I/O
_scratch_unmount
-if [ "$FSTYP" == "xfs" ]; then
- _check_dmesg _filter_xfs_dmesg
-else
- _check_dmesg
-fi
+_check_dmesg _filter_aiodio_dmesg
+
status=$?
exit
diff --git a/tests/generic/247 b/tests/generic/247
index aac7078045ee..0614100cd7a8 100755
--- a/tests/generic/247
+++ b/tests/generic/247
@@ -80,13 +80,10 @@ wait
echo "Silence is golden."
-# unmount and check dmesg, filtering out expected XFS warnings about mixed
+# unmount and check dmesg, filtering out expected warnings about mixed
# mmap/dio
_test_unmount
-if [ "$FSTYP" == "xfs" ]; then
- _check_dmesg _filter_xfs_dmesg
-else
- _check_dmesg
-fi
+_check_dmesg _filter_aiodio_dmesg
+
status=$?
exit
diff --git a/tests/generic/446 b/tests/generic/446
index 6a1b69aa2edc..01228322911e 100755
--- a/tests/generic/446
+++ b/tests/generic/446
@@ -79,13 +79,10 @@ wait $dread_pid > /dev/null 2>&1
echo "Silence is golden"
-# check dmesg, filtering out expected XFS warnings about mixed mmap/dio
+# check dmesg, filtering out expected warnings about mixed mmap/dio
# and umount first in case umount triggers warnings
_scratch_unmount
-if [ "$FSTYP" == "xfs" ]; then
- _check_dmesg _filter_xfs_dmesg
-else
- _check_dmesg
-fi
+_check_dmesg _filter_aiodio_dmesg
+
status=$?
exit
--
2.4.3
next prev parent reply other threads:[~2017-10-10 14:55 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-10-10 14:54 [PATCH 0/3] generalize AIO/DIO dmesg filter Ilya Dryomov
2017-10-10 14:54 ` [PATCH 1/3] common/rc: move _filter_xfs_dmesg() to common/rc Ilya Dryomov
2017-10-11 5:35 ` Dave Chinner
2017-10-10 14:54 ` Ilya Dryomov [this message]
2017-10-10 14:54 ` [PATCH 3/3] generic/036,208: whitelist [iomap_]dio_complete() WARNs Ilya Dryomov
2017-10-12 4:25 ` [PATCH 0/3] generalize AIO/DIO dmesg filter Eryu Guan
2017-10-12 7:19 ` Ilya Dryomov
2017-10-12 7:25 ` Eryu Guan
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1507647298-9971-3-git-send-email-idryomov@gmail.com \
--to=idryomov@gmail.com \
--cc=fstests@vger.kernel.org \
--cc=lczerner@redhat.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox