From: Zorro Lang <zlang@kernel.org>
To: Eric Sandeen <sandeen@redhat.com>
Cc: fstests@vger.kernel.org
Subject: Re: [PATCH 4/5] Add _require_hardlinks as needed
Date: Thu, 27 Aug 2026 23:17:22 +0800 [thread overview]
Message-ID: <apBUU2TiduWtpPrr@zlang-mailbox> (raw)
In-Reply-To: <20260825001337.449670-5-sandeen@redhat.com>
On Mon, Aug 24, 2026 at 07:11:11PM -0500, Eric Sandeen wrote:
> Signed-off-by: Eric Sandeen <sandeen@redhat.com>
> ---
Reviewed-by: Zorro Lang <zlang@kernel.org>
> tests/generic/066 | 1 +
> tests/generic/084 | 1 +
> tests/generic/398 | 1 +
> tests/generic/423 | 1 +
> tests/generic/440 | 1 +
> tests/generic/479 | 1 +
> tests/generic/520 | 1 +
> tests/generic/556 | 1 +
> tests/generic/572 | 1 +
> tests/generic/597 | 1 +
> tests/generic/681 | 1 +
> tests/generic/682 | 1 +
> tests/generic/782 | 1 +
> tests/generic/789 | 1 +
> tests/generic/790 | 1 +
> 15 files changed, 15 insertions(+)
>
> diff --git a/tests/generic/066 b/tests/generic/066
> index 98674cdf..98f23723 100755
> --- a/tests/generic/066
> +++ b/tests/generic/066
> @@ -34,6 +34,7 @@ _cleanup()
> . ./common/attr
>
> _require_scratch
> +_require_hardlinks
> _require_dm_target flakey
> _require_attrs
>
> diff --git a/tests/generic/084 b/tests/generic/084
> index fe758f11..05f2f4ba 100755
> --- a/tests/generic/084
> +++ b/tests/generic/084
> @@ -25,6 +25,7 @@ _cleanup()
> . ./common/filter
>
> _require_scratch
> +_require_hardlinks
>
> link_unlink_storm()
> {
> diff --git a/tests/generic/398 b/tests/generic/398
> index 40d7b6e3..a6939b22 100755
> --- a/tests/generic/398
> +++ b/tests/generic/398
> @@ -20,6 +20,7 @@ _begin_fstest auto quick encrypt
> . ./common/renameat2
>
> _require_scratch_encryption
> +_require_hardlinks
> _require_renameat2 exchange
>
> _init_session_keyring
> diff --git a/tests/generic/423 b/tests/generic/423
> index 9d41f7a8..36f8dccc 100755
> --- a/tests/generic/423
> +++ b/tests/generic/423
> @@ -27,6 +27,7 @@ _require_test_program "stat_test"
> _require_test_program "af_unix"
> _require_statx
> _require_symlinks
> +_require_hardlinks
> _require_mknod
>
> function check_stat () {
> diff --git a/tests/generic/440 b/tests/generic/440
> index 1c8e3e8f..9d80cf04 100755
> --- a/tests/generic/440
> +++ b/tests/generic/440
> @@ -20,6 +20,7 @@ _begin_fstest auto quick encrypt
>
> _require_scratch_encryption
> _require_symlinks
> +_require_hardlinks
> _require_command "$KEYCTL_PROG" keyctl
>
> # Set up an encryption-capable filesystem and an encryption key.
> diff --git a/tests/generic/479 b/tests/generic/479
> index f9661001..ceeaa754 100755
> --- a/tests/generic/479
> +++ b/tests/generic/479
> @@ -26,6 +26,7 @@ _cleanup()
>
> _require_scratch
> _require_symlinks
> +_require_hardlinks
> _require_mknod
> _require_dm_target flakey
>
> diff --git a/tests/generic/520 b/tests/generic/520
> index 3c7ae615..d03c726c 100755
> --- a/tests/generic/520
> +++ b/tests/generic/520
> @@ -28,6 +28,7 @@ _cleanup()
> fssize=$((2**20 * 256))
>
> _require_scratch_nocheck
> +_require_hardlinks
> _require_dm_target flakey
>
> # initialize scratch device
> diff --git a/tests/generic/556 b/tests/generic/556
> index 279ff58b..7c5d0371 100755
> --- a/tests/generic/556
> +++ b/tests/generic/556
> @@ -15,6 +15,7 @@ _begin_fstest auto quick casefold
> _require_scratch_nocheck
> _require_scratch_casefold
> _require_symlinks
> +_require_hardlinks
> _require_check_dmesg
> _require_attrs
>
> diff --git a/tests/generic/572 b/tests/generic/572
> index c3059eb2..97f99a53 100755
> --- a/tests/generic/572
> +++ b/tests/generic/572
> @@ -29,6 +29,7 @@ _cleanup()
> _require_scratch_verity
> _require_chmod
> _require_chown
> +_require_hardlinks
> _disable_fsverity_signatures
>
> _scratch_mkfs_verity &>> $seqres.full
> diff --git a/tests/generic/597 b/tests/generic/597
> index 3aef67a1..6256c4f4 100755
> --- a/tests/generic/597
> +++ b/tests/generic/597
> @@ -37,6 +37,7 @@ _require_group fsgqa2
> _require_user fsgqa
> _require_group fsgqa
> _require_symlinks
> +_require_hardlinks
>
> OWNER=fsgqa2
> OTHER=fsgqa
> diff --git a/tests/generic/681 b/tests/generic/681
> index 651ee157..14bc78bc 100755
> --- a/tests/generic/681
> +++ b/tests/generic/681
> @@ -24,6 +24,7 @@ _require_quota
> _require_user
> _require_scratch
> _require_chown
> +_require_hardlinks
>
> _scratch_mkfs > "$seqres.full" 2>&1
> _qmount_option usrquota
> diff --git a/tests/generic/682 b/tests/generic/682
> index 80846463..964200c7 100755
> --- a/tests/generic/682
> +++ b/tests/generic/682
> @@ -25,6 +25,7 @@ _require_user
> _require_scratch
> _require_chmod
> _require_chown
> +_require_hardlinks
>
> _scratch_mkfs > "$seqres.full" 2>&1
> _qmount_option usrquota
> diff --git a/tests/generic/782 b/tests/generic/782
> index f3298a70..ef6f6a8e 100755
> --- a/tests/generic/782
> +++ b/tests/generic/782
> @@ -23,6 +23,7 @@ _cleanup()
> . ./common/dmflakey
>
> _require_scratch
> +_require_hardlinks
> _require_dm_target flakey
>
> _fixed_by_fs_commit btrfs bfe3d755ef7c \
> diff --git a/tests/generic/789 b/tests/generic/789
> index 0e72966e..7cacf238 100755
> --- a/tests/generic/789
> +++ b/tests/generic/789
> @@ -22,6 +22,7 @@ _cleanup()
> . ./common/dmflakey
>
> _require_scratch
> +_require_hardlinks
> _require_dm_target flakey
>
> _fixed_by_fs_commit btrfs 5254d4181add \
> diff --git a/tests/generic/790 b/tests/generic/790
> index 28f7faa2..44de7bb8 100755
> --- a/tests/generic/790
> +++ b/tests/generic/790
> @@ -25,6 +25,7 @@ _cleanup()
> . ./common/dmflakey
>
> _require_scratch
> +_require_hardlinks
> _require_dm_target flakey
>
> _fixed_by_fs_commit btrfs 9573a365ff9f \
> --
> 2.55.0
>
>
next prev parent reply other threads:[~2026-08-27 15:17 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-08-25 0:11 [PATCH 0/5] Add many missing _requires Eric Sandeen
2026-08-25 0:11 ` [PATCH 1/5] generic: remove chmod of $seqres.full file Eric Sandeen
2026-08-26 15:15 ` Zorro Lang
2026-08-25 0:11 ` [PATCH 2/5] Add _require_chmod as needed Eric Sandeen
2026-08-26 16:09 ` Zorro Lang
2026-08-25 0:11 ` [PATCH 3/5] Add _require_chown " Eric Sandeen
2026-08-26 17:52 ` Zorro Lang
2026-08-26 19:56 ` Eric Sandeen
2026-08-27 15:14 ` Zorro Lang
2026-08-27 15:17 ` Eric Sandeen
2026-08-25 0:11 ` [PATCH 4/5] Add _require_hardlinks " Eric Sandeen
2026-08-27 15:17 ` Zorro Lang [this message]
2026-08-25 0:11 ` [PATCH 5/5] Add _require_mknod " Eric Sandeen
2026-08-27 15:19 ` Zorro Lang
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=apBUU2TiduWtpPrr@zlang-mailbox \
--to=zlang@kernel.org \
--cc=fstests@vger.kernel.org \
--cc=sandeen@redhat.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