common/xfs: add iomap_dio_actor() to the dmesg filter
authorEryu Guan <eguan@redhat.com>
Mon, 31 Jul 2017 04:16:33 +0000 (12:16 +0800)
committerEryu Guan <eguan@redhat.com>
Thu, 3 Aug 2017 12:44:04 +0000 (20:44 +0800)
The warning in fs/iomap.c::iomap_dio_actor() could be triggered when
mixing dio and mmap I/O on the same sparse file. Several tests could
hit this warning now, like generic/095 generic/224 and generic/446.
So add this expected warning to whitelist too.

Reviewed-by: Brian Foster <bfoster@redhat.com>
Signed-off-by: Eryu Guan <eguan@redhat.com>
common/xfs

index fd04f65f6e25e720a8dd27aa9cc04ade25944048..8bd34190b0a60005dfc757fdc770fe79e3a6e986 100644 (file)
@@ -596,10 +596,12 @@ _filter_xfs_dmesg()
        local warn4="WARNING:.*fs/xfs/xfs_file\.c:.*xfs_file_aio_read.*"
        local warn5="WARNING:.*fs/iomap\.c:.*iomap_dio_rw.*"
        local warn6="WARNING:.*fs/xfs/xfs_aops\.c:.*__xfs_get_blocks.*"
+       local warn7="WARNING:.*fs/iomap\.c:.*iomap_dio_actor.*"
        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#" \
            -e "s#$warn4#Intentional warnings in xfs_file_aio_read#" \
            -e "s#$warn5#Intentional warnings in iomap_dio_rw#" \
-           -e "s#$warn6#Intentional warnings in __xfs_get_blocks#"
+           -e "s#$warn6#Intentional warnings in __xfs_get_blocks#" \
+           -e "s#$warn7#Intentional warnings in iomap_dio_actor#"
 }