From patchwork Mon May 16 01:14:15 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Qu Wenruo X-Patchwork-Id: 9097791 Return-Path: X-Original-To: patchwork-fstests@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id 95EAEBF29F for ; Mon, 16 May 2016 01:14:35 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 88A4020263 for ; Mon, 16 May 2016 01:14:34 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6E09B2025A for ; Mon, 16 May 2016 01:14:33 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752617AbcEPBOd (ORCPT ); Sun, 15 May 2016 21:14:33 -0400 Received: from cn.fujitsu.com ([222.73.24.84]:14392 "EHLO song.cn.fujitsu.com" rhost-flags-OK-FAIL-OK-OK) by vger.kernel.org with ESMTP id S1752383AbcEPBOc (ORCPT ); Sun, 15 May 2016 21:14:32 -0400 X-IronPort-AV: E=Sophos;i="5.20,367,1444665600"; d="scan'208";a="485422" Received: from unknown (HELO cn.fujitsu.com) ([10.167.250.3]) by song.cn.fujitsu.com with ESMTP; 16 May 2016 09:14:18 +0800 Received: from adam-work.localdomain (unknown [10.167.226.34]) by cn.fujitsu.com (Postfix) with ESMTP id 6608D4056404; Mon, 16 May 2016 09:14:17 +0800 (CST) From: Qu Wenruo To: linux-btrfs@vger.kernel.org, fstests@vger.kernel.org Cc: darrick.wong@oracle.com Subject: [PATCH v2] fstests: generic: Test SHARED flag about fiemap ioctl before and after sync Date: Mon, 16 May 2016 09:14:15 +0800 Message-Id: <1463361255-8149-1-git-send-email-quwenruo@cn.fujitsu.com> X-Mailer: git-send-email 2.8.2 MIME-Version: 1.0 X-yoursite-MailScanner-ID: 6608D4056404.AB023 X-yoursite-MailScanner: Found to be clean X-yoursite-MailScanner-From: quwenruo@cn.fujitsu.com X-Spam-Status: No, score=-8.3 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, UNPARSEABLE_RELAY autolearn=ham version=3.3.1 Sender: fstests-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: fstests@vger.kernel.org X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The test case will check SHARED flag returned by fiemap ioctl on reflinked files before and after sync. Normally SHARED flag won't change just due to a normal sync operation. But btrfs doesn't handle SHARED flag well, and this time it won't check any delayed extent tree(reverse extent searching tree) modification, but only metadata already committed to disk. So btrfs will not return correct SHARED flag on reflinked files if there is no sync to commit all metadata. This testcase will just check it. Signed-off-by: Qu Wenruo --- And of course, xfs handles it quite well. Nice work Darrick. Also the test case needs the new infrastructure introduced in previous generic/352 test case. changelog: v2: Add more human readable output to golden output --- tests/generic/353 | 92 +++++++++++++++++++++++++++++++++++++++++++++++++++ tests/generic/353.out | 15 +++++++++ tests/generic/group | 1 + 3 files changed, 108 insertions(+) create mode 100755 tests/generic/353 create mode 100644 tests/generic/353.out diff --git a/tests/generic/353 b/tests/generic/353 new file mode 100755 index 0000000..ca665cf --- /dev/null +++ b/tests/generic/353 @@ -0,0 +1,92 @@ +#! /bin/bash +# FS QA Test 353 +# +# Check if fiemap ioctl returns correct SHARED flag on reflinked file +# before and after sync the fs +# +# Btrfs has a bug in checking shared extent, which can only handle metadata +# already committed to disk, but not delayed extent tree modification. +# This caused SHARED flag only occurs after sync. +# +#----------------------------------------------------------------------- +# Copyright (c) 2016 Fujitsu. All Rights Reserved. +# +# This program is free software; you can redistribute it and/or +# modify it under the terms of the GNU General Public License as +# published by the Free Software Foundation. +# +# This program is distributed in the hope that it would be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program; if not, write the Free Software Foundation, +# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +#----------------------------------------------------------------------- +# + +seq=`basename $0` +seqres=$RESULT_DIR/$seq +echo "QA output created by $seq" + +here=`pwd` +tmp=/tmp/$$ +status=1 # failure is the default! +trap "_cleanup; exit \$status" 0 1 2 3 15 + +_cleanup() +{ + cd / + rm -f $tmp.* +} + +# get standard environment, filters and checks +. ./common/rc +. ./common/filter +. ./common/reflink +. ./common/punch + +# remove previous $seqres.full before test +rm -f $seqres.full + +# real QA test starts here + +# Modify as appropriate. +_supported_fs generic +_supported_os Linux +_require_scratch_reflink +_require_fiemap + +_scratch_mkfs > /dev/null 2>&1 +_scratch_mount + +blocksize=64k +file1="$SCRATCH_MNT/file1" +file2="$SCRATCH_MNT/file2" + +# write the initial file +_pwrite_byte 0xcdcdcdcd 0 $blocksize $file1 | _filter_xfs_io + +# reflink initial file +_reflink_range $file1 0 $file2 0 $blocksize | _filter_xfs_io + +# check their fiemap to make sure it's correct +echo "before sync:" +echo "$file1" | _filter_scratch +$XFS_IO_PROG -c "fiemap -v" $file1 | _filter_fiemap_flags +echo "$file2" | _filter_scratch +$XFS_IO_PROG -c "fiemap -v" $file2 | _filter_fiemap_flags + +# sync and recheck, to make sure the fiemap doesn't change just +# due to sync +sync +echo "after sync:" +echo "$file1" | _filter_scratch +$XFS_IO_PROG -c "fiemap -v" $file1 | _filter_fiemap_flags +echo "$file2" | _filter_scratch +$XFS_IO_PROG -c "fiemap -v" $file2 | _filter_fiemap_flags + +# success, all done +status=0 +exit diff --git a/tests/generic/353.out b/tests/generic/353.out new file mode 100644 index 0000000..b7184a6 --- /dev/null +++ b/tests/generic/353.out @@ -0,0 +1,15 @@ +QA output created by 353 +wrote 65536/65536 bytes at offset 0 +XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +linked 65536/65536 bytes at offset 0 +XXX Bytes, X ops; XX:XX:XX.X (XXX YYY/sec and XXX ops/sec) +before sync: +SCRATCH_MNT/file1 +0: [0..127]: 0x2001 +SCRATCH_MNT/file2 +0: [0..127]: 0x2001 +after sync: +SCRATCH_MNT/file1 +0: [0..127]: 0x2001 +SCRATCH_MNT/file2 +0: [0..127]: 0x2001 diff --git a/tests/generic/group b/tests/generic/group index 3f00386..0392d4d 100644 --- a/tests/generic/group +++ b/tests/generic/group @@ -355,3 +355,4 @@ 350 blockdev quick rw 351 blockdev quick rw 352 auto clone +353 auto quick clone