From: Zorro Lang <zlang@kernel.org>
To: ChenXiaoSong <chenxiaosong@chenxiaosong.com>
Cc: smfrench@gmail.com, linkinjeon@kernel.org, pc@manguebit.org,
ronniesahlberg@gmail.com, sprasad@microsoft.com, tom@talpey.com,
bharathsm@microsoft.com, senozhatsky@chromium.org,
dhowells@redhat.com, metze@samba.org, linux-cifs@vger.kernel.org,
fstests@vger.kernel.org, ChenXiaoSong <chenxiaosong@kylinos.cn>
Subject: Re: [PATCH v3 xfstests 1/2] generic/002: simplify the hardlink count test
Date: Tue, 28 Jul 2026 18:13:40 +0800 [thread overview]
Message-ID: <amh85c25M9jOE_BW@zlang-mailbox> (raw)
In-Reply-To: <20260724031210.332153-2-chenxiaosong@chenxiaosong.com>
On Fri, Jul 24, 2026 at 03:12:09AM +0000, ChenXiaoSong wrote:
> From: ChenXiaoSong <chenxiaosong@kylinos.cn>
>
> Add the test to the hardlink group and replace the enumerated link
> counts with arithmetic loops.
>
> Clean up the test header, use "Silence is golden" success message,
> and return the test status explicitly.
>
> Suggested-by: Zorro Lang <zlang@kernel.org>
> Signed-off-by: ChenXiaoSong <chenxiaosong@kylinos.cn>
> ---
generic/002 is quite an old test case, and some of its code differs
from the current standard conventions in fstests. If you just want
to add it to the "hardlink" group, updating the group is sufficient.
However, if you'd like to take this opportunity to refactor some of
the code, besides your changes, you can refer to the review points
on [PATCH 2/2] as well as using _require_test_program "lstat64"
Thanks,
Zorro
> tests/generic/002 | 16 ++++++----------
> tests/generic/002.out | 2 +-
> 2 files changed, 7 insertions(+), 11 deletions(-)
>
> diff --git a/tests/generic/002 b/tests/generic/002
> index 6df57a7a..9b210705 100755
> --- a/tests/generic/002
> +++ b/tests/generic/002
> @@ -2,12 +2,12 @@
> # SPDX-License-Identifier: GPL-2.0
> # Copyright (c) 2000-2001 Silicon Graphics, Inc. All Rights Reserved.
> #
> -# FS QA Test No. 002
> +# FS QA Test 002
> #
> # simple inode link count test for a regular file
> #
> . ./common/preamble
> -_begin_fstest metadata udf auto quick
> +_begin_fstest metadata udf auto quick hardlink
>
> # Import common functions.
> . ./common/filter
> @@ -17,14 +17,11 @@ status=0 # success is the default!
> _require_test
> _require_hardlinks
>
> -echo "Silence is goodness ..."
> -
> # ensure target directory exists
> mkdir `dirname $TEST_DIR/tmp` 2>/dev/null
>
> touch $TEST_DIR/tmp.1
> -for l in 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
> -do
> +for ((l = 2; l <= 20; l++)); do
> ln $TEST_DIR/tmp.1 $TEST_DIR/tmp.$l
> x=`$here/src/lstat64 $TEST_DIR/tmp.1 | sed -n -e '/ Links: /s/.*Links: *//p'`
> if [ "$l" -ne $x ]
> @@ -35,8 +32,7 @@ do
> fi
> done
>
> -for l in 20 19 18 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1
> -do
> +for ((l = 20; l >= 1; l--)); do
> x=`$here/src/lstat64 $TEST_DIR/tmp.1 | sed -n -e '/ Links: /s/.*Links: *//p'`
> if [ "$l" -ne $x ]
> then
> @@ -47,5 +43,5 @@ do
> rm -f $TEST_DIR/tmp.$l
> done
>
> -# success, all done
> -exit
> +echo "Silence is golden"
> +exit $status
> diff --git a/tests/generic/002.out b/tests/generic/002.out
> index 11426b54..61705c7c 100644
> --- a/tests/generic/002.out
> +++ b/tests/generic/002.out
> @@ -1,2 +1,2 @@
> QA output created by 002
> -Silence is goodness ...
> +Silence is golden
> --
> 2.43.0
>
next prev parent reply other threads:[~2026-07-28 10:13 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 3:12 [PATCH v3 xfstests 0/2] generic: new test to check nlink returned by fstat() ChenXiaoSong
2026-07-24 3:12 ` [PATCH v3 xfstests 1/2] generic/002: simplify the hardlink count test ChenXiaoSong
2026-07-28 10:13 ` Zorro Lang [this message]
2026-07-24 3:12 ` [PATCH v3 xfstests 2/2] generic: new test to check nlink returned by fstat() ChenXiaoSong
2026-07-28 9:56 ` Zorro Lang
2026-07-28 3:38 ` [PATCH v3 xfstests 0/2] " Christoph Hellwig
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=amh85c25M9jOE_BW@zlang-mailbox \
--to=zlang@kernel.org \
--cc=bharathsm@microsoft.com \
--cc=chenxiaosong@chenxiaosong.com \
--cc=chenxiaosong@kylinos.cn \
--cc=dhowells@redhat.com \
--cc=fstests@vger.kernel.org \
--cc=linkinjeon@kernel.org \
--cc=linux-cifs@vger.kernel.org \
--cc=metze@samba.org \
--cc=pc@manguebit.org \
--cc=ronniesahlberg@gmail.com \
--cc=senozhatsky@chromium.org \
--cc=smfrench@gmail.com \
--cc=sprasad@microsoft.com \
--cc=tom@talpey.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox