Message ID | 20220524071838.715013-7-hch@lst.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/9] btrfs: add a helpers for read repair testing | expand |
On 2022/5/24 15:18, Christoph Hellwig wrote: > Use the _btrfs_get_first_logical helper instead of open coding it. > > Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Qu Wenruo <wqu@suse.com> Thanks, Qu > --- > tests/btrfs/157 | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/btrfs/157 b/tests/btrfs/157 > index 343178b7..022db511 100755 > --- a/tests/btrfs/157 > +++ b/tests/btrfs/157 > @@ -71,7 +71,7 @@ _scratch_mount $(_btrfs_no_v1_cache_opt) > $XFS_IO_PROG -f -d -c "pwrite -S 0xaa 0 128K" -c "fsync" \ > "$SCRATCH_MNT/foobar" | _filter_xfs_io > > -logical=`${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar | _filter_filefrag | cut -d '#' -f 1` > +logical=$(_btrfs_get_first_logical $SCRATCH_MNT/foobar) > _scratch_unmount > > phy0=$(get_physical 0)
diff --git a/tests/btrfs/157 b/tests/btrfs/157 index 343178b7..022db511 100755 --- a/tests/btrfs/157 +++ b/tests/btrfs/157 @@ -71,7 +71,7 @@ _scratch_mount $(_btrfs_no_v1_cache_opt) $XFS_IO_PROG -f -d -c "pwrite -S 0xaa 0 128K" -c "fsync" \ "$SCRATCH_MNT/foobar" | _filter_xfs_io -logical=`${FILEFRAG_PROG} -v $SCRATCH_MNT/foobar | _filter_filefrag | cut -d '#' -f 1` +logical=$(_btrfs_get_first_logical $SCRATCH_MNT/foobar) _scratch_unmount phy0=$(get_physical 0)
Use the _btrfs_get_first_logical helper instead of open coding it. Signed-off-by: Christoph Hellwig <hch@lst.de> --- tests/btrfs/157 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)