From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,UNPARSEABLE_RELAY autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3CC72C4320A for ; Sun, 25 Jul 2021 16:02:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1DFA060F39 for ; Sun, 25 Jul 2021 16:02:49 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231280AbhGYPWS (ORCPT ); Sun, 25 Jul 2021 11:22:18 -0400 Received: from out20-1.mail.aliyun.com ([115.124.20.1]:36929 "EHLO out20-1.mail.aliyun.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231215AbhGYPWR (ORCPT ); Sun, 25 Jul 2021 11:22:17 -0400 X-Alimail-AntiSpam: AC=CONTINUE;BC=0.2117037|-1;CH=green;DM=|CONTINUE|false|;DS=CONTINUE|ham_system_inform|0.0157347-0.000326297-0.983939;FP=0|0|0|0|0|-1|-1|-1;HT=ay29a033018047212;MF=guan@eryu.me;NM=1;PH=DS;RN=4;RT=4;SR=0;TI=SMTPD_---.KqkPlcl_1627228965; Received: from localhost(mailfrom:guan@eryu.me fp:SMTPD_---.KqkPlcl_1627228965) by smtp.aliyun-inc.com(10.147.41.121); Mon, 26 Jul 2021 00:02:45 +0800 Date: Mon, 26 Jul 2021 00:02:45 +0800 From: Eryu Guan To: "Darrick J. Wong" Cc: guaneryu@gmail.com, linux-xfs@vger.kernel.org, fstests@vger.kernel.org Subject: Re: [PATCH 1/2] generic: test xattr operations only Message-ID: References: <162674332320.2650898.17601790625049494810.stgit@magnolia> <162674332866.2650898.16916837755915187962.stgit@magnolia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <162674332866.2650898.16916837755915187962.stgit@magnolia> Precedence: bulk List-ID: X-Mailing-List: linux-xfs@vger.kernel.org On Mon, Jul 19, 2021 at 06:08:48PM -0700, Darrick J. Wong wrote: > From: Darrick J. Wong > > Exercise extended attribute operations. > > Signed-off-by: Darrick J. Wong > --- > tests/generic/724 | 57 +++++++++++++++++++++++++++++++++++++++++++++++++ > tests/generic/724.out | 2 ++ > 2 files changed, 59 insertions(+) > create mode 100755 tests/generic/724 > create mode 100644 tests/generic/724.out > > > diff --git a/tests/generic/724 b/tests/generic/724 > new file mode 100755 > index 00000000..f2f4a2ec > --- /dev/null > +++ b/tests/generic/724 > @@ -0,0 +1,57 @@ > +#! /bin/bash > +# SPDX-License-Identifier: GPL-2.0 > +# Copyright (c) 2021 Oracle, Inc. All Rights Reserved. > +# > +# FS QA Test No. 724 > +# > +# Run an extended attributes fsstress run with multiple threads to shake out > +# bugs in the xattr code. > +# > +. ./common/preamble > +_begin_fstest auto attr > + > +_cleanup() > +{ > + $KILLALL_PROG -9 fsstress > /dev/null 2>&1 > + cd / > + rm -f $tmp.* > +} > + > +# Modify as appropriate. > +_supported_fs generic > + > +_require_scratch > +_require_command "$KILLALL_PROG" "killall" > + > +echo "Silence is golden." > + > +_scratch_mkfs > $seqres.full 2>&1 > +_scratch_mount >> $seqres.full 2>&1 > + > +nr_cpus=$((LOAD_FACTOR * 4)) > +nr_ops=$((700000 * nr_cpus * TIME_FACTOR)) This takes too long time to be an 'auto' test, it runs for 20min on my test vm and is still running, I think I have to kill it manually. I noticed that generic/52[12] run long time fsx tests, and they are in 'soak long_rw' groups, perhaps this one fits there as well? And maybe 'stress' group too. Thanks, Eryu > + > +args=('-z' '-S' 'c') > + > +# Do some directory tree modifications, but the bulk of this is geared towards > +# exercising the xattr code, especially attr_set which can do up to 10k values. > +for verb in unlink rmdir; do > + args+=('-f' "${verb}=1") > +done > +for verb in creat mkdir; do > + args+=('-f' "${verb}=2") > +done > +for verb in getfattr listfattr; do > + args+=('-f' "${verb}=3") > +done > +for verb in attr_remove removefattr; do > + args+=('-f' "${verb}=4") > +done > +args+=('-f' "setfattr=20") > +args+=('-f' "attr_set=60") # sets larger xattrs > + > +$FSSTRESS_PROG "${args[@]}" $FSSTRESS_AVOID -d $SCRATCH_MNT -n $nr_ops -p $nr_cpus >> $seqres.full > + > +# success, all done > +status=0 > +exit > diff --git a/tests/generic/724.out b/tests/generic/724.out > new file mode 100644 > index 00000000..164cfffb > --- /dev/null > +++ b/tests/generic/724.out > @@ -0,0 +1,2 @@ > +QA output created by 724 > +Silence is golden. >