From cd74736e17949b32c6e680b8f83755f147558a6f Mon Sep 17 00:00:00 2001 From: Christoph Hellwig Date: Thu, 18 Dec 2025 08:30:02 +0100 Subject: [PATCH] ext4/032: use _check_dev_fs _check_dev_fs is the new designated helper to check file systems on arbitrary devices, use that instead of _check_generic_filesystem, which is just an implementation detail. Signed-off-by: Christoph Hellwig Reviewed-by: Anand Jain Reviewed-by: Darrick J. Wong Signed-off-by: Zorro Lang --- tests/ext4/032 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ext4/032 b/tests/ext4/032 index 690fcf06..043ae4f5 100755 --- a/tests/ext4/032 +++ b/tests/ext4/032 @@ -66,7 +66,7 @@ ext4_online_resize() $UMOUNT_PROG ${IMG_MNT} echo "+++ check fs" | tee -a $seqres.full - _check_generic_filesystem $LOOP_DEVICE >> $seqres.full 2>&1 || \ + _check_dev_fs $LOOP_DEVICE >> $seqres.full 2>&1 || \ _fail "fsck should not fail" _destroy_loop_device $LOOP_DEVICE && LOOP_DEVICE= } -- 2.47.3