diff mbox series

fstests: add commit IDs for kernel patches that are already in Linus' tree

Message ID 4ba5443a5789880423ce3b90406a12314626e349.1740142425.git.fdmanana@suse.com (mailing list archive)
State New
Headers show
Series fstests: add commit IDs for kernel patches that are already in Linus' tree | expand

Commit Message

Filipe Manana Feb. 21, 2025, 12:54 p.m. UTC
From: Filipe Manana <fdmanana@suse.com>

Update a few tests to refer to the commit IDs of patches that were already
merged into Linus' tree.

Signed-off-by: Filipe Manana <fdmanana@suse.com>
---
 tests/btrfs/323   | 2 +-
 tests/btrfs/326   | 2 +-
 tests/btrfs/330   | 2 +-
 tests/generic/562 | 2 +-
 tests/xfs/273     | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

Comments

Zorro Lang Feb. 21, 2025, 2:51 p.m. UTC | #1
On Fri, Feb 21, 2025 at 12:54:43PM +0000, fdmanana@kernel.org wrote:
> From: Filipe Manana <fdmanana@suse.com>
> 
> Update a few tests to refer to the commit IDs of patches that were already
> merged into Linus' tree.
> 
> Signed-off-by: Filipe Manana <fdmanana@suse.com>
> ---

Thanks for doing this,

Reviewed-by: Zorro Lang <zlang@redhat.com>

>  tests/btrfs/323   | 2 +-
>  tests/btrfs/326   | 2 +-
>  tests/btrfs/330   | 2 +-
>  tests/generic/562 | 2 +-
>  tests/xfs/273     | 2 +-
>  5 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/tests/btrfs/323 b/tests/btrfs/323
> index b7421f6e..08ebf194 100755
> --- a/tests/btrfs/323
> +++ b/tests/btrfs/323
> @@ -13,7 +13,7 @@ _begin_fstest auto quick seed remount volume
>  _require_command "$BTRFS_TUNE_PROG" btrfstune
>  _require_scratch_dev_pool 2
>  
> -_fixed_by_kernel_commit XXXXXXXX \
> +_fixed_by_kernel_commit 70958a949d85 \
>  	"btrfs: do not clear read-only when adding sprout device"
>  
>  _scratch_dev_pool_get 1
> diff --git a/tests/btrfs/326 b/tests/btrfs/326
> index 1fc4db06..7e6e7b77 100755
> --- a/tests/btrfs/326
> +++ b/tests/btrfs/326
> @@ -15,7 +15,7 @@ _fixed_by_kernel_commit 951a3f59d268 \
>  
>  # Another rare bug exposed by this test case where mnt_list list corruption or
>  # extra kernel warning on MNT_ONRB flag is triggered.
> -_fixed_by_kernel_commit xxxxxxxxxxxx \
> +_fixed_by_kernel_commit 344bac8f0d73 \
>  	"fs: kill MNT_ONRB"
>  
>  _cleanup()
> diff --git a/tests/btrfs/330 b/tests/btrfs/330
> index 92cc498f..3a311a5a 100755
> --- a/tests/btrfs/330
> +++ b/tests/btrfs/330
> @@ -19,7 +19,7 @@ _cleanup()
>  
>  $MOUNT_PROG -V | grep -q 'fd-based-mount'
>  if [ "$?" -eq 0 ]; then
> -	_fixed_by_kernel_commit xxxxxxxxxxxx \
> +	_fixed_by_kernel_commit cda7163d4e3d \
>  		"btrfs: fix per-subvolume RO/RW flags with new mount API"
>  fi
>  
> diff --git a/tests/generic/562 b/tests/generic/562
> index 36bd0291..03a66ff2 100755
> --- a/tests/generic/562
> +++ b/tests/generic/562
> @@ -16,7 +16,7 @@ _begin_fstest auto clone punch
>  . ./common/reflink
>  
>  test "$FSTYP" = "xfs" && \
> -	_fixed_by_kernel_commit XXXXXXXXXX "xfs: don't drop errno values when we fail to ficlone the entire range"
> +	_fixed_by_kernel_commit 7ce31f20a077 "xfs: don't drop errno values when we fail to ficlone the entire range"
>  
>  _require_scratch_reflink
>  _require_test_program "punch-alternating"
> diff --git a/tests/xfs/273 b/tests/xfs/273
> index 9f11540a..7e743179 100755
> --- a/tests/xfs/273
> +++ b/tests/xfs/273
> @@ -24,7 +24,7 @@ _require_scratch
>  _require_populate_commands
>  _require_xfs_io_command "fsmap"
>  
> -_fixed_by_kernel_commit XXXXXXXXXXXXXX "xfs: fix off-by-one error in fsmap"
> +_fixed_by_kernel_commit a440a28ddbdc "xfs: fix off-by-one error in fsmap"
>  
>  rm -f "$seqres.full"
>  
> -- 
> 2.45.2
> 
>
diff mbox series

Patch

diff --git a/tests/btrfs/323 b/tests/btrfs/323
index b7421f6e..08ebf194 100755
--- a/tests/btrfs/323
+++ b/tests/btrfs/323
@@ -13,7 +13,7 @@  _begin_fstest auto quick seed remount volume
 _require_command "$BTRFS_TUNE_PROG" btrfstune
 _require_scratch_dev_pool 2
 
-_fixed_by_kernel_commit XXXXXXXX \
+_fixed_by_kernel_commit 70958a949d85 \
 	"btrfs: do not clear read-only when adding sprout device"
 
 _scratch_dev_pool_get 1
diff --git a/tests/btrfs/326 b/tests/btrfs/326
index 1fc4db06..7e6e7b77 100755
--- a/tests/btrfs/326
+++ b/tests/btrfs/326
@@ -15,7 +15,7 @@  _fixed_by_kernel_commit 951a3f59d268 \
 
 # Another rare bug exposed by this test case where mnt_list list corruption or
 # extra kernel warning on MNT_ONRB flag is triggered.
-_fixed_by_kernel_commit xxxxxxxxxxxx \
+_fixed_by_kernel_commit 344bac8f0d73 \
 	"fs: kill MNT_ONRB"
 
 _cleanup()
diff --git a/tests/btrfs/330 b/tests/btrfs/330
index 92cc498f..3a311a5a 100755
--- a/tests/btrfs/330
+++ b/tests/btrfs/330
@@ -19,7 +19,7 @@  _cleanup()
 
 $MOUNT_PROG -V | grep -q 'fd-based-mount'
 if [ "$?" -eq 0 ]; then
-	_fixed_by_kernel_commit xxxxxxxxxxxx \
+	_fixed_by_kernel_commit cda7163d4e3d \
 		"btrfs: fix per-subvolume RO/RW flags with new mount API"
 fi
 
diff --git a/tests/generic/562 b/tests/generic/562
index 36bd0291..03a66ff2 100755
--- a/tests/generic/562
+++ b/tests/generic/562
@@ -16,7 +16,7 @@  _begin_fstest auto clone punch
 . ./common/reflink
 
 test "$FSTYP" = "xfs" && \
-	_fixed_by_kernel_commit XXXXXXXXXX "xfs: don't drop errno values when we fail to ficlone the entire range"
+	_fixed_by_kernel_commit 7ce31f20a077 "xfs: don't drop errno values when we fail to ficlone the entire range"
 
 _require_scratch_reflink
 _require_test_program "punch-alternating"
diff --git a/tests/xfs/273 b/tests/xfs/273
index 9f11540a..7e743179 100755
--- a/tests/xfs/273
+++ b/tests/xfs/273
@@ -24,7 +24,7 @@  _require_scratch
 _require_populate_commands
 _require_xfs_io_command "fsmap"
 
-_fixed_by_kernel_commit XXXXXXXXXXXXXX "xfs: fix off-by-one error in fsmap"
+_fixed_by_kernel_commit a440a28ddbdc "xfs: fix off-by-one error in fsmap"
 
 rm -f "$seqres.full"