* [f2fs-dev] [PATCH 1/2] f2fs: add commit id to _fixed_by_kernel_commit for f2fs/02[1-2]
@ 2025-10-20 2:31 Chao Yu via Linux-f2fs-devel
2025-10-20 2:31 ` [f2fs-dev] [PATCH 2/2] f2fs/022: fix to run testcase correctly Chao Yu via Linux-f2fs-devel
2025-11-01 11:40 ` [f2fs-dev] [PATCH 1/2] f2fs: add commit id to _fixed_by_kernel_commit for f2fs/02[1-2] Zorro Lang via Linux-f2fs-devel
0 siblings, 2 replies; 5+ messages in thread
From: Chao Yu via Linux-f2fs-devel @ 2025-10-20 2:31 UTC (permalink / raw)
To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel
The bugs related to f2fs/02[1-2] regression testcases have been fixed
by below commits:
- 930a9a6ee8e7 ("f2fs: fix to avoid NULL pointer dereference in
f2fs_check_quota_consistency()")
- c18ecd99e0c7 ("f2fs: fix to do sanity check on node footer for non
inode dnode")
Let's add commit id to _fixed_by_kernel_commit in f2fs/02[1-2].
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Chao Yu <chao@kernel.org>
---
tests/f2fs/021 | 2 +-
tests/f2fs/022 | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/tests/f2fs/021 b/tests/f2fs/021
index 96fc97c4..0cacb138 100755
--- a/tests/f2fs/021
+++ b/tests/f2fs/021
@@ -10,7 +10,7 @@
. ./common/preamble
_begin_fstest auto quick mount quota remount
-_fixed_by_kernel_commit xxxxxxxxxxxx \
+_fixed_by_kernel_commit 930a9a6ee8e7 \
"f2fs: fix to avoid NULL pointer dereference in f2fs_check_quota_consistency()"
_require_scratch
diff --git a/tests/f2fs/022 b/tests/f2fs/022
index 48a8386b..f6d77c96 100755
--- a/tests/f2fs/022
+++ b/tests/f2fs/022
@@ -15,7 +15,7 @@ _begin_fstest auto quick rw
. ./common/attr
-_fixed_by_kernel_commit xxxxxxxxxxxx \
+_fixed_by_kernel_commit c18ecd99e0c7 \
"f2fs: fix to do sanity check on node footer for non inode dnode"
_require_scratch_nocheck
--
2.49.0
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 5+ messages in thread* [f2fs-dev] [PATCH 2/2] f2fs/022: fix to run testcase correctly 2025-10-20 2:31 [f2fs-dev] [PATCH 1/2] f2fs: add commit id to _fixed_by_kernel_commit for f2fs/02[1-2] Chao Yu via Linux-f2fs-devel @ 2025-10-20 2:31 ` Chao Yu via Linux-f2fs-devel 2025-11-01 11:44 ` Zorro Lang via Linux-f2fs-devel 2025-11-01 11:40 ` [f2fs-dev] [PATCH 1/2] f2fs: add commit id to _fixed_by_kernel_commit for f2fs/02[1-2] Zorro Lang via Linux-f2fs-devel 1 sibling, 1 reply; 5+ messages in thread From: Chao Yu via Linux-f2fs-devel @ 2025-10-20 2:31 UTC (permalink / raw) To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel f2fs/022 will report failure as below: f2fs/022 - output mismatch (see /share/git/fstests/results//f2fs/022.out.bad) --- tests/f2fs/022.out 2025-10-20 10:18:47.075968669 +0800 +++ /share/git/fstests/results//f2fs/022.out.bad 2025-10-20 10:25:20.000000000 +0800 @@ -1,2 +1,5 @@ QA output created by 022 +wrote 8388608/8388608 bytes at offset 0 +8 MiB, 2048 ops; 0.0018 sec (4.300 GiB/sec and 1127132.6362 ops/sec) +fallocate: Operation not supported Silence is golden ... (Run 'diff -u /share/git/fstests/tests/f2fs/022.out /share/git/fstests/results//f2fs/022.out.bad' to see the entire diff) HINT: You _MAY_ be missing kernel fix: xxxxxxxxxxxx f2fs: fix to do sanity check on node footer for non inode dnode Fix this testcase as below: - fix a typo "$SCARTCH_MNT" - fix to update output to "fallocate: Structure needs cleaning" - relocate output of "$XFS_IO_PROG $foo_path -c "pwrite 0 8M"" to $seqres.full Cc: Jaegeuk Kim <jaegeuk@kernel.org> Signed-off-by: Chao Yu <chao@kernel.org> --- tests/f2fs/022 | 8 +++----- tests/f2fs/022.out | 2 +- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/tests/f2fs/022 b/tests/f2fs/022 index f6d77c96..728ef4e8 100755 --- a/tests/f2fs/022 +++ b/tests/f2fs/022 @@ -24,15 +24,15 @@ _require_inject_f2fs_command node i_nid # remove all mkfs options to avoid layout change of on-disk inode export MKFS_OPTIONS="" -foo_path=$SCARTCH_MNT/foo -bar_path=$SCARTCH_MNT/bar +foo_path=$SCRATCH_MNT/foo +bar_path=$SCRATCH_MNT/bar _scratch_mkfs >> $seqres.full _scratch_mount touch $foo_path touch $bar_path -$XFS_IO_PROG $foo_path -c "pwrite 0 8M" +$XFS_IO_PROG $foo_path -c "pwrite 0 8M" >> $seqres.full sync foo_ino=`stat -c '%i' $foo_path` bar_ino=`stat -c '%i' $bar_path` @@ -48,7 +48,5 @@ _scratch_mount $XFS_IO_PROG $foo_path -c "fpunch 6984k 4k" _scratch_unmount -echo "Silence is golden" - status=0 exit diff --git a/tests/f2fs/022.out b/tests/f2fs/022.out index 394c6a7c..5307e3d7 100644 --- a/tests/f2fs/022.out +++ b/tests/f2fs/022.out @@ -1,2 +1,2 @@ QA output created by 022 -Silence is golden +fallocate: Structure needs cleaning -- 2.49.0 _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel ^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [f2fs-dev] [PATCH 2/2] f2fs/022: fix to run testcase correctly 2025-10-20 2:31 ` [f2fs-dev] [PATCH 2/2] f2fs/022: fix to run testcase correctly Chao Yu via Linux-f2fs-devel @ 2025-11-01 11:44 ` Zorro Lang via Linux-f2fs-devel 2025-11-03 1:53 ` Chao Yu via Linux-f2fs-devel 0 siblings, 1 reply; 5+ messages in thread From: Zorro Lang via Linux-f2fs-devel @ 2025-11-01 11:44 UTC (permalink / raw) To: Chao Yu; +Cc: jaegeuk, Zorro Lang, fstests, linux-f2fs-devel On Mon, Oct 20, 2025 at 10:31:08AM +0800, Chao Yu wrote: > f2fs/022 will report failure as below: > > f2fs/022 - output mismatch (see /share/git/fstests/results//f2fs/022.out.bad) > --- tests/f2fs/022.out 2025-10-20 10:18:47.075968669 +0800 > +++ /share/git/fstests/results//f2fs/022.out.bad 2025-10-20 10:25:20.000000000 +0800 > @@ -1,2 +1,5 @@ > QA output created by 022 > +wrote 8388608/8388608 bytes at offset 0 > +8 MiB, 2048 ops; 0.0018 sec (4.300 GiB/sec and 1127132.6362 ops/sec) > +fallocate: Operation not supported > Silence is golden > ... > (Run 'diff -u /share/git/fstests/tests/f2fs/022.out /share/git/fstests/results//f2fs/022.out.bad' to see the entire diff) > > HINT: You _MAY_ be missing kernel fix: > xxxxxxxxxxxx f2fs: fix to do sanity check on node footer for non inode dnode > > Fix this testcase as below: > > - fix a typo "$SCARTCH_MNT" > - fix to update output to "fallocate: Structure needs cleaning" > - relocate output of "$XFS_IO_PROG $foo_path -c "pwrite 0 8M"" to > $seqres.full > > Cc: Jaegeuk Kim <jaegeuk@kernel.org> > Signed-off-by: Chao Yu <chao@kernel.org> > --- > tests/f2fs/022 | 8 +++----- > tests/f2fs/022.out | 2 +- > 2 files changed, 4 insertions(+), 6 deletions(-) > > diff --git a/tests/f2fs/022 b/tests/f2fs/022 > index f6d77c96..728ef4e8 100755 > --- a/tests/f2fs/022 > +++ b/tests/f2fs/022 > @@ -24,15 +24,15 @@ _require_inject_f2fs_command node i_nid > # remove all mkfs options to avoid layout change of on-disk inode > export MKFS_OPTIONS="" > > -foo_path=$SCARTCH_MNT/foo > -bar_path=$SCARTCH_MNT/bar > +foo_path=$SCRATCH_MNT/foo > +bar_path=$SCRATCH_MNT/bar Hahaha, I took long time to find out what these 2 lines try to change:) Thanks for fixing this. Reviewed-by: Zorro Lang <zlang@redhat.com> > > _scratch_mkfs >> $seqres.full > _scratch_mount > > touch $foo_path > touch $bar_path > -$XFS_IO_PROG $foo_path -c "pwrite 0 8M" > +$XFS_IO_PROG $foo_path -c "pwrite 0 8M" >> $seqres.full > sync > foo_ino=`stat -c '%i' $foo_path` > bar_ino=`stat -c '%i' $bar_path` > @@ -48,7 +48,5 @@ _scratch_mount > $XFS_IO_PROG $foo_path -c "fpunch 6984k 4k" > _scratch_unmount > > -echo "Silence is golden" > - > status=0 > exit > diff --git a/tests/f2fs/022.out b/tests/f2fs/022.out > index 394c6a7c..5307e3d7 100644 > --- a/tests/f2fs/022.out > +++ b/tests/f2fs/022.out > @@ -1,2 +1,2 @@ > QA output created by 022 > -Silence is golden > +fallocate: Structure needs cleaning > -- > 2.49.0 > _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [f2fs-dev] [PATCH 2/2] f2fs/022: fix to run testcase correctly 2025-11-01 11:44 ` Zorro Lang via Linux-f2fs-devel @ 2025-11-03 1:53 ` Chao Yu via Linux-f2fs-devel 0 siblings, 0 replies; 5+ messages in thread From: Chao Yu via Linux-f2fs-devel @ 2025-11-03 1:53 UTC (permalink / raw) To: Zorro Lang; +Cc: jaegeuk, Zorro Lang, fstests, linux-f2fs-devel On 11/1/25 19:44, Zorro Lang wrote: > On Mon, Oct 20, 2025 at 10:31:08AM +0800, Chao Yu wrote: >> f2fs/022 will report failure as below: >> >> f2fs/022 - output mismatch (see /share/git/fstests/results//f2fs/022.out.bad) >> --- tests/f2fs/022.out 2025-10-20 10:18:47.075968669 +0800 >> +++ /share/git/fstests/results//f2fs/022.out.bad 2025-10-20 10:25:20.000000000 +0800 >> @@ -1,2 +1,5 @@ >> QA output created by 022 >> +wrote 8388608/8388608 bytes at offset 0 >> +8 MiB, 2048 ops; 0.0018 sec (4.300 GiB/sec and 1127132.6362 ops/sec) >> +fallocate: Operation not supported >> Silence is golden >> ... >> (Run 'diff -u /share/git/fstests/tests/f2fs/022.out /share/git/fstests/results//f2fs/022.out.bad' to see the entire diff) >> >> HINT: You _MAY_ be missing kernel fix: >> xxxxxxxxxxxx f2fs: fix to do sanity check on node footer for non inode dnode >> >> Fix this testcase as below: >> >> - fix a typo "$SCARTCH_MNT" >> - fix to update output to "fallocate: Structure needs cleaning" >> - relocate output of "$XFS_IO_PROG $foo_path -c "pwrite 0 8M"" to >> $seqres.full >> >> Cc: Jaegeuk Kim <jaegeuk@kernel.org> >> Signed-off-by: Chao Yu <chao@kernel.org> >> --- >> tests/f2fs/022 | 8 +++----- >> tests/f2fs/022.out | 2 +- >> 2 files changed, 4 insertions(+), 6 deletions(-) >> >> diff --git a/tests/f2fs/022 b/tests/f2fs/022 >> index f6d77c96..728ef4e8 100755 >> --- a/tests/f2fs/022 >> +++ b/tests/f2fs/022 >> @@ -24,15 +24,15 @@ _require_inject_f2fs_command node i_nid >> # remove all mkfs options to avoid layout change of on-disk inode >> export MKFS_OPTIONS="" >> >> -foo_path=$SCARTCH_MNT/foo >> -bar_path=$SCARTCH_MNT/bar >> +foo_path=$SCRATCH_MNT/foo >> +bar_path=$SCRATCH_MNT/bar > > Hahaha, I took long time to find out what these 2 lines try to change:) Thanks > for fixing this. Haha, Seems I rebased v2 to a problematic codebase when I sync-up code from different git repo. It took me some time to find the root cause of 022 failure. :/ Anyway, thanks for the review. :) Thanks, > > Reviewed-by: Zorro Lang <zlang@redhat.com> > >> >> _scratch_mkfs >> $seqres.full >> _scratch_mount >> >> touch $foo_path >> touch $bar_path >> -$XFS_IO_PROG $foo_path -c "pwrite 0 8M" >> +$XFS_IO_PROG $foo_path -c "pwrite 0 8M" >> $seqres.full >> sync >> foo_ino=`stat -c '%i' $foo_path` >> bar_ino=`stat -c '%i' $bar_path` >> @@ -48,7 +48,5 @@ _scratch_mount >> $XFS_IO_PROG $foo_path -c "fpunch 6984k 4k" >> _scratch_unmount >> >> -echo "Silence is golden" >> - >> status=0 >> exit >> diff --git a/tests/f2fs/022.out b/tests/f2fs/022.out >> index 394c6a7c..5307e3d7 100644 >> --- a/tests/f2fs/022.out >> +++ b/tests/f2fs/022.out >> @@ -1,2 +1,2 @@ >> QA output created by 022 >> -Silence is golden >> +fallocate: Structure needs cleaning >> -- >> 2.49.0 >> > _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [f2fs-dev] [PATCH 1/2] f2fs: add commit id to _fixed_by_kernel_commit for f2fs/02[1-2] 2025-10-20 2:31 [f2fs-dev] [PATCH 1/2] f2fs: add commit id to _fixed_by_kernel_commit for f2fs/02[1-2] Chao Yu via Linux-f2fs-devel 2025-10-20 2:31 ` [f2fs-dev] [PATCH 2/2] f2fs/022: fix to run testcase correctly Chao Yu via Linux-f2fs-devel @ 2025-11-01 11:40 ` Zorro Lang via Linux-f2fs-devel 1 sibling, 0 replies; 5+ messages in thread From: Zorro Lang via Linux-f2fs-devel @ 2025-11-01 11:40 UTC (permalink / raw) To: Chao Yu; +Cc: jaegeuk, Zorro Lang, fstests, linux-f2fs-devel On Mon, Oct 20, 2025 at 10:31:07AM +0800, Chao Yu wrote: > The bugs related to f2fs/02[1-2] regression testcases have been fixed > by below commits: > > - 930a9a6ee8e7 ("f2fs: fix to avoid NULL pointer dereference in > f2fs_check_quota_consistency()") > > - c18ecd99e0c7 ("f2fs: fix to do sanity check on node footer for non > inode dnode") > > Let's add commit id to _fixed_by_kernel_commit in f2fs/02[1-2]. > > Cc: Jaegeuk Kim <jaegeuk@kernel.org> > Signed-off-by: Chao Yu <chao@kernel.org> > --- Good to me, Reviewed-by: Zorro Lang <zlang@redhat.com> > tests/f2fs/021 | 2 +- > tests/f2fs/022 | 2 +- > 2 files changed, 2 insertions(+), 2 deletions(-) > > diff --git a/tests/f2fs/021 b/tests/f2fs/021 > index 96fc97c4..0cacb138 100755 > --- a/tests/f2fs/021 > +++ b/tests/f2fs/021 > @@ -10,7 +10,7 @@ > . ./common/preamble > _begin_fstest auto quick mount quota remount > > -_fixed_by_kernel_commit xxxxxxxxxxxx \ > +_fixed_by_kernel_commit 930a9a6ee8e7 \ > "f2fs: fix to avoid NULL pointer dereference in f2fs_check_quota_consistency()" > > _require_scratch > diff --git a/tests/f2fs/022 b/tests/f2fs/022 > index 48a8386b..f6d77c96 100755 > --- a/tests/f2fs/022 > +++ b/tests/f2fs/022 > @@ -15,7 +15,7 @@ _begin_fstest auto quick rw > > . ./common/attr > > -_fixed_by_kernel_commit xxxxxxxxxxxx \ > +_fixed_by_kernel_commit c18ecd99e0c7 \ > "f2fs: fix to do sanity check on node footer for non inode dnode" > > _require_scratch_nocheck > -- > 2.49.0 > _______________________________________________ Linux-f2fs-devel mailing list Linux-f2fs-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2025-11-03 1:53 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2025-10-20 2:31 [f2fs-dev] [PATCH 1/2] f2fs: add commit id to _fixed_by_kernel_commit for f2fs/02[1-2] Chao Yu via Linux-f2fs-devel 2025-10-20 2:31 ` [f2fs-dev] [PATCH 2/2] f2fs/022: fix to run testcase correctly Chao Yu via Linux-f2fs-devel 2025-11-01 11:44 ` Zorro Lang via Linux-f2fs-devel 2025-11-03 1:53 ` Chao Yu via Linux-f2fs-devel 2025-11-01 11:40 ` [f2fs-dev] [PATCH 1/2] f2fs: add commit id to _fixed_by_kernel_commit for f2fs/02[1-2] Zorro Lang via Linux-f2fs-devel
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).