* [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster
@ 2025-08-15 8:14 Chao Yu
2025-08-15 8:14 ` [PATCH v3 2/3] f2fs/019: do sanity check on mapping table Chao Yu
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Chao Yu @ 2025-08-15 8:14 UTC (permalink / raw)
To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel, Chao Yu
This is a regression testcase, it is added to check below case
and its variants:
- write 16k data into compressed file (data will be compressed)
- truncate file to 12k (truncate partial data in compressed cluster)
- truncate file to 20k
- verify data in range of [12k, 16k] to see whether data is all zero
or not
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Chao Yu <chao@kernel.org>
---
v3:
- introduce build_fio_config() for cleanup
- use run_check() to check return value of check_data_eof()
- add _cleanup
- use $XFS_IO_PROG instead of xfs_io
tests/f2fs/018 | 89 ++++++++++++++++++++++++++++++++++++++++++++++
tests/f2fs/018.out | 2 ++
2 files changed, 91 insertions(+)
create mode 100755 tests/f2fs/018
create mode 100644 tests/f2fs/018.out
diff --git a/tests/f2fs/018 b/tests/f2fs/018
new file mode 100755
index 00000000..8013042d
--- /dev/null
+++ b/tests/f2fs/018
@@ -0,0 +1,89 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2025 Chao Yu. All Rights Reserved.
+#
+# FS QA Test No. f2fs/018
+#
+# This is a regression test to check whether page eof will be
+# zero or not after we truncate partial data in compressed
+# cluster.
+#
+. ./common/preamble
+_begin_fstest auto quick rw compress
+
+_fixed_by_kernel_commit ba8dac350faf \
+ "f2fs: fix to zero post-eof page"
+_fixed_by_kernel_commit xxxxxxxxxxxx \
+ "f2fs: fix to zero data after EOF for compressed file correctly"
+
+_require_xfs_io_command "truncate"
+_require_scratch
+
+testfile=$SCRATCH_MNT/testfile
+fio_config=$tmp.fio
+
+build_fio_config()
+{
+ local offset=$1
+ local size=$2
+
+ cat >$fio_config <<EOF
+[verify-data]
+filename=$testfile
+rw=read
+verify=pattern
+verify_pattern=0x00
+do_verify=1
+verify_only
+offset=$offset
+size=$size
+numjobs=1
+EOF
+ cat $fio_config >> $seqres.full
+}
+
+build_fio_config 0 4k
+_require_fio $fio_config
+
+_cleanup()
+{
+ rm -f $testfile
+}
+
+_scratch_mkfs "-O extra_attr,compression" >> $seqres.full || _fail "mkfs failed"
+_scratch_mount "-o compress_extension=*" >> $seqres.full
+
+check_data_eof()
+{
+ local eof_start=$1
+ local eof_size=$2
+ local filesize=$3
+ local offset1=$4
+ local offset2=$5
+ local offset3=$6
+
+ rm -f $testfile
+
+ $XFS_IO_PROG -f -c "pwrite 0 $filesize" -c "fsync" $testfile >> $seqres.full
+ $XFS_IO_PROG -c "truncate $offset1" $testfile
+ $XFS_IO_PROG -c "truncate $offset2" $testfile
+
+ if [ "$offset3" ]; then
+ $XFS_IO_PROG -c "truncate $offset3" $testfile
+ fi
+
+ build_fio_config $eof_start $eof_size
+ $FIO_PROG $fio_config >> $seqres.full 2>&1
+
+ return $?
+}
+
+run_check check_data_eof 12k 4k 16k 12k 20k
+run_check check_data_eof 10k 6k 16k 10k 20k
+run_check check_data_eof 12k 4k 16k 8k 12k 20k
+run_check check_data_eof 10k 6k 16k 8k 10k 20k
+
+echo "Silence is golden"
+
+status=0
+exit
diff --git a/tests/f2fs/018.out b/tests/f2fs/018.out
new file mode 100644
index 00000000..8849e303
--- /dev/null
+++ b/tests/f2fs/018.out
@@ -0,0 +1,2 @@
+QA output created by 018
+Silence is golden
--
2.49.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 2/3] f2fs/019: do sanity check on mapping table
2025-08-15 8:14 [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster Chao Yu
@ 2025-08-15 8:14 ` Chao Yu
2025-08-15 8:14 ` [PATCH v3 3/3] f2fs/020: do sanity check on i_xattr_nid Chao Yu
2025-08-15 15:31 ` [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster Zorro Lang
2 siblings, 0 replies; 6+ messages in thread
From: Chao Yu @ 2025-08-15 8:14 UTC (permalink / raw)
To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel, Chao Yu, Zorro Lang
This is a regression test:
1. create a file
2. write file to create a direct node at special offset
3. use inject.f2fs to inject nid of direct node w/ ino of the inode
4. check whether f2fs kernel module will detect and report such
corruption in the fil
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Reviewed-by: Zorro Lang <zlang@redhat.com>
Signed-off-by: Chao Yu <chao@kernel.org>
---
v2:
- add RVB tag from Zorro
tests/f2fs/019 | 42 ++++++++++++++++++++++++++++++++++++++++++
tests/f2fs/019.out | 2 ++
2 files changed, 44 insertions(+)
create mode 100755 tests/f2fs/019
create mode 100644 tests/f2fs/019.out
diff --git a/tests/f2fs/019 b/tests/f2fs/019
new file mode 100755
index 00000000..2307bd96
--- /dev/null
+++ b/tests/f2fs/019
@@ -0,0 +1,42 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2025 Chao Yu. All Rights Reserved.
+#
+# FS QA Test No. f2fs/019
+#
+# This is a regression test:
+# 1. create a file
+# 2. write file to create a direct node at special offset
+# 3. use inject.f2fs to inject nid of direct node w/ ino of the inode
+# 4. check whether f2fs kernel module will detect and report such
+# corruption in the file
+#
+. ./common/preamble
+_begin_fstest auto quick rw
+
+_fixed_by_kernel_commit 77de19b6867f \
+ "f2fs: fix to avoid out-of-boundary access in dnode page"
+
+_require_scratch_nocheck
+_require_command "$F2FS_INJECT_PROG" inject.f2fs
+
+# remove all mkfs options to avoid layout change of on-disk inode
+export MKFS_OPTIONS=""
+
+testfile=$SCRATCH_MNT/testfile
+
+_scratch_mkfs >> $seqres.full
+_scratch_mount
+
+$XFS_IO_PROG -f -c "pwrite 3738M 1M" -c "fsync" $testfile >> $seqres.full
+
+_scratch_unmount
+
+$F2FS_INJECT_PROG --node --mb addr --nid 5 --idx 937 --val 4 $SCRATCH_DEV >> $seqres.full
+
+_scratch_mount
+$XFS_IO_PROG -c "pread 3700M 40M" $testfile
+_scratch_unmount
+
+status=0
+exit
diff --git a/tests/f2fs/019.out b/tests/f2fs/019.out
new file mode 100644
index 00000000..2f7469e2
--- /dev/null
+++ b/tests/f2fs/019.out
@@ -0,0 +1,2 @@
+QA output created by 019
+pread: Structure needs cleaning
--
2.49.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH v3 3/3] f2fs/020: do sanity check on i_xattr_nid
2025-08-15 8:14 [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster Chao Yu
2025-08-15 8:14 ` [PATCH v3 2/3] f2fs/019: do sanity check on mapping table Chao Yu
@ 2025-08-15 8:14 ` Chao Yu
2025-08-15 15:40 ` Zorro Lang
2025-08-15 15:31 ` [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster Zorro Lang
2 siblings, 1 reply; 6+ messages in thread
From: Chao Yu @ 2025-08-15 8:14 UTC (permalink / raw)
To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel, Chao Yu
This is a regression test:
1. create directory
2. add a new xattr entry to create xattr node
3. use inject.f2fs to inject nid of xattr node w/ ino in a file
4. check whether f2fs kernel module will detect and report such
corruption in the file
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Chao Yu <chao@kernel.org>
---
v3:
- fix mount option
- check return value of inject.f2fs
tests/f2fs/020 | 51 ++++++++++++++++++++++++++++++++++++++++++++++
tests/f2fs/020.out | 2 ++
2 files changed, 53 insertions(+)
create mode 100755 tests/f2fs/020
create mode 100644 tests/f2fs/020.out
diff --git a/tests/f2fs/020 b/tests/f2fs/020
new file mode 100755
index 00000000..38bc6582
--- /dev/null
+++ b/tests/f2fs/020
@@ -0,0 +1,51 @@
+#! /bin/bash
+# SPDX-License-Identifier: GPL-2.0
+# Copyright (c) 2025 Chao Yu. All Rights Reserved.
+#
+# FS QA Test No. f2fs/020
+#
+# This is a regression test:
+# 1. create directory
+# 2. add a new xattr entry to create xattr node
+# 3. use inject.f2fs to inject nid of xattr node w/ ino in a file
+# 4. check whether f2fs kernel module will detect and report such
+# corruption in the file
+#
+. ./common/preamble
+_begin_fstest auto quick rw
+
+. ./common/attr
+
+_fixed_by_kernel_commit 061cf3a84bde \
+ "f2fs: fix to do sanity check on ino and xnid"
+
+_require_scratch_nocheck
+_require_command "$F2FS_INJECT_PROG" inject.f2fs
+_require_attrs user
+
+# remove all mkfs options to avoid layout change of on-disk inode
+export MKFS_OPTIONS=""
+
+testdir=$SCRATCH_MNT/testdir
+
+_scratch_mkfs >> $seqres.full
+_scratch_mount "-o user_xattr,noinline_xattr"
+
+mkdir $testdir
+# add a new xattr entry to create xattr node
+$SETFATTR_PROG -n user.abc -v 123 $testdir
+
+_scratch_unmount
+
+# inject i_xattr_nid w/ nid of inode node
+$F2FS_INJECT_PROG --node --mb i_xattr_nid --nid 4 --val 4 $SCRATCH_DEV >> $seqres.full || _fail "failed to inject"
+
+_scratch_mount "-o acl,user_xattr"
+# may potentially trigger a deadlock w/ double inode_lock on parent's inode
+mkdir $testdir/dir >> $seqres.full 2>&1
+_scratch_unmount
+
+echo "Silence is golden"
+
+status=0
+exit
diff --git a/tests/f2fs/020.out b/tests/f2fs/020.out
new file mode 100644
index 00000000..20d7944e
--- /dev/null
+++ b/tests/f2fs/020.out
@@ -0,0 +1,2 @@
+QA output created by 020
+Silence is golden
--
2.49.0
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster
2025-08-15 8:14 [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster Chao Yu
2025-08-15 8:14 ` [PATCH v3 2/3] f2fs/019: do sanity check on mapping table Chao Yu
2025-08-15 8:14 ` [PATCH v3 3/3] f2fs/020: do sanity check on i_xattr_nid Chao Yu
@ 2025-08-15 15:31 ` Zorro Lang
2025-08-16 7:09 ` Chao Yu
2 siblings, 1 reply; 6+ messages in thread
From: Zorro Lang @ 2025-08-15 15:31 UTC (permalink / raw)
To: Chao Yu; +Cc: Zorro Lang, fstests, jaegeuk, linux-f2fs-devel
On Fri, Aug 15, 2025 at 04:14:03PM +0800, Chao Yu wrote:
> This is a regression testcase, it is added to check below case
> and its variants:
> - write 16k data into compressed file (data will be compressed)
> - truncate file to 12k (truncate partial data in compressed cluster)
> - truncate file to 20k
> - verify data in range of [12k, 16k] to see whether data is all zero
> or not
>
> Cc: Jaegeuk Kim <jaegeuk@kernel.org>
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
> v3:
> - introduce build_fio_config() for cleanup
> - use run_check() to check return value of check_data_eof()
> - add _cleanup
> - use $XFS_IO_PROG instead of xfs_io
> tests/f2fs/018 | 89 ++++++++++++++++++++++++++++++++++++++++++++++
> tests/f2fs/018.out | 2 ++
> 2 files changed, 91 insertions(+)
> create mode 100755 tests/f2fs/018
> create mode 100644 tests/f2fs/018.out
>
> diff --git a/tests/f2fs/018 b/tests/f2fs/018
> new file mode 100755
> index 00000000..8013042d
> --- /dev/null
> +++ b/tests/f2fs/018
> @@ -0,0 +1,89 @@
> +#! /bin/bash
> +# SPDX-License-Identifier: GPL-2.0
> +# Copyright (c) 2025 Chao Yu. All Rights Reserved.
> +#
> +# FS QA Test No. f2fs/018
> +#
> +# This is a regression test to check whether page eof will be
> +# zero or not after we truncate partial data in compressed
> +# cluster.
> +#
> +. ./common/preamble
> +_begin_fstest auto quick rw compress
> +
> +_fixed_by_kernel_commit ba8dac350faf \
> + "f2fs: fix to zero post-eof page"
> +_fixed_by_kernel_commit xxxxxxxxxxxx \
> + "f2fs: fix to zero data after EOF for compressed file correctly"
> +
> +_require_xfs_io_command "truncate"
> +_require_scratch
> +
> +testfile=$SCRATCH_MNT/testfile
> +fio_config=$tmp.fio
> +
> +build_fio_config()
> +{
> + local offset=$1
> + local size=$2
> +
> + cat >$fio_config <<EOF
> +[verify-data]
> +filename=$testfile
> +rw=read
> +verify=pattern
> +verify_pattern=0x00
> +do_verify=1
> +verify_only
> +offset=$offset
> +size=$size
> +numjobs=1
> +EOF
> + cat $fio_config >> $seqres.full
> +}
> +
> +build_fio_config 0 4k
> +_require_fio $fio_config
> +
> +_cleanup()
> +{
> + rm -f $testfile
> +}
This _cleanup isn't necessary, the $testfile is on SCRATCH_DEV, we don't
need to cleanup SCRATCH_DEV manually.
Others look good to me, I can help to remove above _cleanup function when
I merge this patchset, if other 2 patches are good to merge too :)
Reviewed-by: Zorro Lang <zlang@redhat.com>
Thanks,
Zorro
> +
> +_scratch_mkfs "-O extra_attr,compression" >> $seqres.full || _fail "mkfs failed"
> +_scratch_mount "-o compress_extension=*" >> $seqres.full
> +
> +check_data_eof()
> +{
> + local eof_start=$1
> + local eof_size=$2
> + local filesize=$3
> + local offset1=$4
> + local offset2=$5
> + local offset3=$6
> +
> + rm -f $testfile
> +
> + $XFS_IO_PROG -f -c "pwrite 0 $filesize" -c "fsync" $testfile >> $seqres.full
> + $XFS_IO_PROG -c "truncate $offset1" $testfile
> + $XFS_IO_PROG -c "truncate $offset2" $testfile
> +
> + if [ "$offset3" ]; then
> + $XFS_IO_PROG -c "truncate $offset3" $testfile
> + fi
> +
> + build_fio_config $eof_start $eof_size
> + $FIO_PROG $fio_config >> $seqres.full 2>&1
> +
> + return $?
> +}
> +
> +run_check check_data_eof 12k 4k 16k 12k 20k
> +run_check check_data_eof 10k 6k 16k 10k 20k
> +run_check check_data_eof 12k 4k 16k 8k 12k 20k
> +run_check check_data_eof 10k 6k 16k 8k 10k 20k
> +
> +echo "Silence is golden"
> +
> +status=0
> +exit
> diff --git a/tests/f2fs/018.out b/tests/f2fs/018.out
> new file mode 100644
> index 00000000..8849e303
> --- /dev/null
> +++ b/tests/f2fs/018.out
> @@ -0,0 +1,2 @@
> +QA output created by 018
> +Silence is golden
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3 3/3] f2fs/020: do sanity check on i_xattr_nid
2025-08-15 8:14 ` [PATCH v3 3/3] f2fs/020: do sanity check on i_xattr_nid Chao Yu
@ 2025-08-15 15:40 ` Zorro Lang
0 siblings, 0 replies; 6+ messages in thread
From: Zorro Lang @ 2025-08-15 15:40 UTC (permalink / raw)
To: Chao Yu; +Cc: Zorro Lang, fstests, jaegeuk, linux-f2fs-devel
On Fri, Aug 15, 2025 at 04:14:05PM +0800, Chao Yu wrote:
> This is a regression test:
> 1. create directory
> 2. add a new xattr entry to create xattr node
> 3. use inject.f2fs to inject nid of xattr node w/ ino in a file
> 4. check whether f2fs kernel module will detect and report such
> corruption in the file
>
> Cc: Jaegeuk Kim <jaegeuk@kernel.org>
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
> v3:
> - fix mount option
> - check return value of inject.f2fs
> tests/f2fs/020 | 51 ++++++++++++++++++++++++++++++++++++++++++++++
> tests/f2fs/020.out | 2 ++
> 2 files changed, 53 insertions(+)
> create mode 100755 tests/f2fs/020
> create mode 100644 tests/f2fs/020.out
>
> diff --git a/tests/f2fs/020 b/tests/f2fs/020
> new file mode 100755
> index 00000000..38bc6582
> --- /dev/null
> +++ b/tests/f2fs/020
> @@ -0,0 +1,51 @@
> +#! /bin/bash
> +# SPDX-License-Identifier: GPL-2.0
> +# Copyright (c) 2025 Chao Yu. All Rights Reserved.
> +#
> +# FS QA Test No. f2fs/020
> +#
> +# This is a regression test:
> +# 1. create directory
> +# 2. add a new xattr entry to create xattr node
> +# 3. use inject.f2fs to inject nid of xattr node w/ ino in a file
> +# 4. check whether f2fs kernel module will detect and report such
> +# corruption in the file
> +#
> +. ./common/preamble
> +_begin_fstest auto quick rw
> +
> +. ./common/attr
> +
> +_fixed_by_kernel_commit 061cf3a84bde \
> + "f2fs: fix to do sanity check on ino and xnid"
> +
> +_require_scratch_nocheck
> +_require_command "$F2FS_INJECT_PROG" inject.f2fs
> +_require_attrs user
> +
> +# remove all mkfs options to avoid layout change of on-disk inode
> +export MKFS_OPTIONS=""
> +
> +testdir=$SCRATCH_MNT/testdir
> +
> +_scratch_mkfs >> $seqres.full
> +_scratch_mount "-o user_xattr,noinline_xattr"
> +
> +mkdir $testdir
> +# add a new xattr entry to create xattr node
> +$SETFATTR_PROG -n user.abc -v 123 $testdir
> +
> +_scratch_unmount
> +
> +# inject i_xattr_nid w/ nid of inode node
> +$F2FS_INJECT_PROG --node --mb i_xattr_nid --nid 4 --val 4 $SCRATCH_DEV >> $seqres.full || _fail "failed to inject"
If you'd like to deal with that _require_inject_f2fs_command (what ever name) things
in another separated patchset, this patch is good to me.
Reviewed-by: Zorro Lang <zlang@redhat.com>
> +
> +_scratch_mount "-o acl,user_xattr"
> +# may potentially trigger a deadlock w/ double inode_lock on parent's inode
> +mkdir $testdir/dir >> $seqres.full 2>&1
> +_scratch_unmount
> +
> +echo "Silence is golden"
> +
> +status=0
> +exit
> diff --git a/tests/f2fs/020.out b/tests/f2fs/020.out
> new file mode 100644
> index 00000000..20d7944e
> --- /dev/null
> +++ b/tests/f2fs/020.out
> @@ -0,0 +1,2 @@
> +QA output created by 020
> +Silence is golden
> --
> 2.49.0
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster
2025-08-15 15:31 ` [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster Zorro Lang
@ 2025-08-16 7:09 ` Chao Yu
0 siblings, 0 replies; 6+ messages in thread
From: Chao Yu @ 2025-08-16 7:09 UTC (permalink / raw)
To: Zorro Lang; +Cc: chao, Zorro Lang, fstests, jaegeuk, linux-f2fs-devel
On 2025/8/15 23:31, Zorro Lang wrote:
> On Fri, Aug 15, 2025 at 04:14:03PM +0800, Chao Yu wrote:
>> This is a regression testcase, it is added to check below case
>> and its variants:
>> - write 16k data into compressed file (data will be compressed)
>> - truncate file to 12k (truncate partial data in compressed cluster)
>> - truncate file to 20k
>> - verify data in range of [12k, 16k] to see whether data is all zero
>> or not
>>
>> Cc: Jaegeuk Kim <jaegeuk@kernel.org>
>> Signed-off-by: Chao Yu <chao@kernel.org>
>> ---
>> v3:
>> - introduce build_fio_config() for cleanup
>> - use run_check() to check return value of check_data_eof()
>> - add _cleanup
>> - use $XFS_IO_PROG instead of xfs_io
>> tests/f2fs/018 | 89 ++++++++++++++++++++++++++++++++++++++++++++++
>> tests/f2fs/018.out | 2 ++
>> 2 files changed, 91 insertions(+)
>> create mode 100755 tests/f2fs/018
>> create mode 100644 tests/f2fs/018.out
>>
>> diff --git a/tests/f2fs/018 b/tests/f2fs/018
>> new file mode 100755
>> index 00000000..8013042d
>> --- /dev/null
>> +++ b/tests/f2fs/018
>> @@ -0,0 +1,89 @@
>> +#! /bin/bash
>> +# SPDX-License-Identifier: GPL-2.0
>> +# Copyright (c) 2025 Chao Yu. All Rights Reserved.
>> +#
>> +# FS QA Test No. f2fs/018
>> +#
>> +# This is a regression test to check whether page eof will be
>> +# zero or not after we truncate partial data in compressed
>> +# cluster.
>> +#
>> +. ./common/preamble
>> +_begin_fstest auto quick rw compress
>> +
>> +_fixed_by_kernel_commit ba8dac350faf \
>> + "f2fs: fix to zero post-eof page"
>> +_fixed_by_kernel_commit xxxxxxxxxxxx \
>> + "f2fs: fix to zero data after EOF for compressed file correctly"
>> +
>> +_require_xfs_io_command "truncate"
>> +_require_scratch
>> +
>> +testfile=$SCRATCH_MNT/testfile
>> +fio_config=$tmp.fio
>> +
>> +build_fio_config()
>> +{
>> + local offset=$1
>> + local size=$2
>> +
>> + cat >$fio_config <<EOF
>> +[verify-data]
>> +filename=$testfile
>> +rw=read
>> +verify=pattern
>> +verify_pattern=0x00
>> +do_verify=1
>> +verify_only
>> +offset=$offset
>> +size=$size
>> +numjobs=1
>> +EOF
>> + cat $fio_config >> $seqres.full
>> +}
>> +
>> +build_fio_config 0 4k
>> +_require_fio $fio_config
>> +
>> +_cleanup()
>> +{
>> + rm -f $testfile
>> +}
>
> This _cleanup isn't necessary, the $testfile is on SCRATCH_DEV, we don't
> need to cleanup SCRATCH_DEV manually.
>
> Others look good to me, I can help to remove above _cleanup function when
> I merge this patchset, if other 2 patches are good to merge too :)
Fine to me. :)
>
> Reviewed-by: Zorro Lang <zlang@redhat.com>
Thanks a lot for all your review and suggestion.
Thanks,
>
> Thanks,
> Zorro
>
>> +
>> +_scratch_mkfs "-O extra_attr,compression" >> $seqres.full || _fail "mkfs failed"
>> +_scratch_mount "-o compress_extension=*" >> $seqres.full
>> +
>> +check_data_eof()
>> +{
>> + local eof_start=$1
>> + local eof_size=$2
>> + local filesize=$3
>> + local offset1=$4
>> + local offset2=$5
>> + local offset3=$6
>> +
>> + rm -f $testfile
>> +
>> + $XFS_IO_PROG -f -c "pwrite 0 $filesize" -c "fsync" $testfile >> $seqres.full
>> + $XFS_IO_PROG -c "truncate $offset1" $testfile
>> + $XFS_IO_PROG -c "truncate $offset2" $testfile
>> +
>> + if [ "$offset3" ]; then
>> + $XFS_IO_PROG -c "truncate $offset3" $testfile
>> + fi
>> +
>> + build_fio_config $eof_start $eof_size
>> + $FIO_PROG $fio_config >> $seqres.full 2>&1
>> +
>> + return $?
>> +}
>> +
>> +run_check check_data_eof 12k 4k 16k 12k 20k
>> +run_check check_data_eof 10k 6k 16k 10k 20k
>> +run_check check_data_eof 12k 4k 16k 8k 12k 20k
>> +run_check check_data_eof 10k 6k 16k 8k 10k 20k
>> +
>> +echo "Silence is golden"
>> +
>> +status=0
>> +exit
>> diff --git a/tests/f2fs/018.out b/tests/f2fs/018.out
>> new file mode 100644
>> index 00000000..8849e303
>> --- /dev/null
>> +++ b/tests/f2fs/018.out
>> @@ -0,0 +1,2 @@
>> +QA output created by 018
>> +Silence is golden
>> --
>> 2.49.0
>>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-08-16 7:09 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-08-15 8:14 [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster Chao Yu
2025-08-15 8:14 ` [PATCH v3 2/3] f2fs/019: do sanity check on mapping table Chao Yu
2025-08-15 8:14 ` [PATCH v3 3/3] f2fs/020: do sanity check on i_xattr_nid Chao Yu
2025-08-15 15:40 ` Zorro Lang
2025-08-15 15:31 ` [PATCH v3 1/3] f2fs/018: check data eof after partial truncation on compressed cluster Zorro Lang
2025-08-16 7:09 ` Chao Yu
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).