@@ -4,7 +4,7 @@
#
# FS QA Test No. 374
#
-# Check that cross-mountpoint dedupe doesn't work.
+# Check that cross-mountpoint dedupe works
#
. ./common/preamble
_begin_fstest auto quick clone dedupe
@@ -50,7 +50,8 @@ _pwrite_byte 0x61 0 $sz $testdir/file >> $seqres.full
_pwrite_byte 0x61 0 $sz $testdir/otherfile >> $seqres.full
echo "Dedupe one file to another"
-_dedupe_range $testdir/file 0 $othertestdir/otherfile 0 $sz 2>&1 | _filter_dedupe_error
+_dedupe_range $testdir/file 0 $othertestdir/otherfile 0 $sz 2>&1 \
+ | _filter_xfs_io
filter_md5()
{
@@ -3,7 +3,8 @@ Format and mount
Mount otherdir
Create file
Dedupe one file to another
-XFS_IOC_FILE_EXTENT_SAME: Invalid cross-device link
+deduped 65536/65536 bytes at offset 0
+XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec)
Check output
2d61aa54b58c2e94403fb092c3dbc027 SCRATCH_MNT/test-374/file
2d61aa54b58c2e94403fb092c3dbc027 OTHER_DIR/test-374/otherfile
We allow for cross-vfsmount dedupes now, change this test to validate dedupe works properly cross-vfsmount. Signed-off-by: Josef Bacik <josef@toxicpanda.com> --- tests/generic/374 | 5 +++-- tests/generic/374.out | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-)