From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from cuda.sgi.com (cuda3.sgi.com [192.48.176.15]) by oss.sgi.com (8.14.3/8.14.3/SuSE Linux 0.8) with ESMTP id pBE2ML7M183507 for ; Tue, 13 Dec 2011 20:22:21 -0600 Received: from fgwmail6.fujitsu.co.jp (localhost [127.0.0.1]) by cuda.sgi.com (Spam Firewall) with ESMTP id 2D01C1D3AA59 for ; Tue, 13 Dec 2011 18:22:19 -0800 (PST) Received: from fgwmail6.fujitsu.co.jp (fgwmail6.fujitsu.co.jp [192.51.44.36]) by cuda.sgi.com with ESMTP id IOQOrUn9vmKw0i8r for ; Tue, 13 Dec 2011 18:22:19 -0800 (PST) Received: from m4.gw.fujitsu.co.jp (unknown [10.0.50.74]) by fgwmail6.fujitsu.co.jp (Postfix) with ESMTP id DD6B03EE0B6 for ; Wed, 14 Dec 2011 11:22:17 +0900 (JST) Received: from smail (m4 [127.0.0.1]) by outgoing.m4.gw.fujitsu.co.jp (Postfix) with ESMTP id C63EC45DE50 for ; Wed, 14 Dec 2011 11:22:17 +0900 (JST) Received: from s4.gw.fujitsu.co.jp (s4.gw.fujitsu.co.jp [10.0.50.94]) by m4.gw.fujitsu.co.jp (Postfix) with ESMTP id A81DA45DE4E for ; Wed, 14 Dec 2011 11:22:17 +0900 (JST) Received: from s4.gw.fujitsu.co.jp (localhost.localdomain [127.0.0.1]) by s4.gw.fujitsu.co.jp (Postfix) with ESMTP id 98E6E1DB802F for ; Wed, 14 Dec 2011 11:22:17 +0900 (JST) Received: from m005.s.css.fujitsu.com (m005.s.css.fujitsu.com [10.23.4.35]) by s4.gw.fujitsu.co.jp (Postfix) with ESMTP id 4F857E08002 for ; Wed, 14 Dec 2011 11:22:17 +0900 (JST) Date: Wed, 14 Dec 2011 11:22:10 +0900 From: Masayoshi MIZUMA Subject: Re: [PATCH] update 068 to reproduce an unfreeze hanging up problem In-Reply-To: <20111213063212.GC14273@dastard> References: <20111213094245.4004.61FB500B@jp.fujitsu.com> <20111213063212.GC14273@dastard> Message-Id: <20111214112209.1002.61FB500B@jp.fujitsu.com> MIME-Version: 1.0 List-Id: XFS Filesystem from SGI List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: xfs-bounces@oss.sgi.com Errors-To: xfs-bounces@oss.sgi.com To: Dave Chinner Cc: linux-fsdevel@vger.kernel.org, Christoph Hellwig , linux-ext4@vger.kernel.org, xfs@oss.sgi.com (2011/12/13 15:32), Dave Chinner wrote: > On Tue, Dec 13, 2011 at 09:42:46AM +0900, Masayoshi MIZUMA wrote: > > update 068 to reproduce an unfreeze hanging up problem which is unfreeze > > function, thaw_super(), sometimes hangs up if flush kernel thread does > > writeback to the same filesystem concurrently. > > That's not exactly what I asked to be done when I reviewed the > original patch - I asked you to "make 068 generic" because it > already exercises freeze/thaw under a stressful workload. What I > expected was a change to "supported_fs" and the scratch mkfs > command so it will run on all filesystems. > > test 068 will catch problems like the one your specific test > catches, but maybe not every time. Test 068 will catch problems your > test case won't, though - it's a trade-off between having lots of > tests that are similar but slightly different (difficult to > maintain, increases runtime, etc), and having one test that > exercises the functionality in a simple manner likely to detect > problems. Thank you for your explanation about the policy and I understand it. (snip) > > @@ -99,13 +98,11 @@ do > > xfs_freeze -f "$SCRATCH_MNT" | tee -a $seq.full > > [ $? != 0 ] && echo xfs_freeze -f "$SCRATCH_MNT" failed | \ > > tee -a $seq.full > > - sleep 2 > > And this simulates typical freeze/do something/thaw cycles. It also > allows fsstress to execute operations while the filesytem is frozen > and potentially try to grab things like the superblock lock because > fsstress issued a sync() system call. Dropping the sleep makes the > test less likely to find problems.... I tried to reproduce the problem not dropping the sleep, but the problem was not reproduced... Therefore, I dropped it and the problem was reproduced. However, as you mentioned, the problem is a timing proglem, so the my reproduction might be just by chance. Dropping sleep may increase the possibility of the reproduction, but not every time, so the change is not good. That is same for the arguments of fsstress which I changed. OK, I update 068 just to run other filesystem, ext3, ext4 and btrfs which I confirmed xfs_freeze works on. (xfs_freeze may work on the other filesystems which have freeze_fs/unfreeze_fs super_operations but I don't confirm...) The patch is below. ----------------------------------------------------------- update 068 to run other filesystems, ext3, ext4 and btrfs because xfs_freeze works on the filesystems. --- 068 | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/068 b/068 index 5d0053d..6f08f18 100755 --- a/068 +++ b/068 @@ -51,7 +51,7 @@ trap "_cleanup" 0 1 2 3 15 . ./common.filter # real QA test starts here -_supported_fs xfs +_supported_fs btrfs ext3 ext4 xfs _supported_os Linux IRIX _require_scratch @@ -62,7 +62,7 @@ rm -f $seq.full umount $SCRATCH_DEV >/dev/null 2>&1 echo "*** MKFS ***" >>$seq.full echo "" >>$seq.full -_scratch_mkfs_xfs >>$seq.full 2>&1 \ +_scratch_mkfs >>$seq.full 2>&1 \ || _fail "mkfs failed" _scratch_mount >>$seq.full 2>&1 \ || _fail "mount failed" -- 1.7.1 Thanks, Masayoshi Mizuma > > Cheers, > > Dave. > -- > Dave Chinner > david@fromorbit.com _______________________________________________ xfs mailing list xfs@oss.sgi.com http://oss.sgi.com/mailman/listinfo/xfs