* [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs()
@ 2025-10-09 8:50 Chao Yu
2025-10-09 8:50 ` [PATCH 2/3] common/rc: move _check_f2fs_filesystem() to common/f2fs Chao Yu
` (2 more replies)
0 siblings, 3 replies; 6+ messages in thread
From: Chao Yu @ 2025-10-09 8:50 UTC (permalink / raw)
To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel, Chao Yu
Let's source common/f2fs in _source_specific_fs() instead of in each
testcase.
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Chao Yu <chao@kernel.org>
---
common/config | 1 +
tests/f2fs/002 | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/common/config b/common/config
index 22b52432..1420e35d 100644
--- a/common/config
+++ b/common/config
@@ -509,6 +509,7 @@ _source_specific_fs()
;;
f2fs)
[ "$MKFS_F2FS_PROG" = "" ] && _fatal "mkfs.f2fs not found"
+ . ./common/f2fs
;;
nfs)
. ./common/nfs
diff --git a/tests/f2fs/002 b/tests/f2fs/002
index 74146217..d2f6e413 100755
--- a/tests/f2fs/002
+++ b/tests/f2fs/002
@@ -43,7 +43,6 @@
_begin_fstest auto quick rw encrypt compress fiemap
. ./common/filter
-. ./common/f2fs
. ./common/encrypt
# Prerequisites to create a file that is both encrypted and LZ4-compressed
--
2.40.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 2/3] common/rc: move _check_f2fs_filesystem() to common/f2fs
2025-10-09 8:50 [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs() Chao Yu
@ 2025-10-09 8:50 ` Chao Yu
2025-10-17 16:21 ` Zorro Lang
2025-10-09 8:50 ` [PATCH 3/3] common/f2fs: introduce _require_inject_f2fs_command() Chao Yu
2025-10-17 16:06 ` [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs() Zorro Lang
2 siblings, 1 reply; 6+ messages in thread
From: Chao Yu @ 2025-10-09 8:50 UTC (permalink / raw)
To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel, Chao Yu
_check_f2fs_filesystem() is f2fs specific, it's better to move it to
common/f2fs.
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Chao Yu <chao@kernel.org>
---
common/f2fs | 44 ++++++++++++++++++++++++++++++++++++++++++++
common/rc | 44 --------------------------------------------
2 files changed, 44 insertions(+), 44 deletions(-)
diff --git a/common/f2fs b/common/f2fs
index 1b39d8ce..4d0d688b 100644
--- a/common/f2fs
+++ b/common/f2fs
@@ -25,3 +25,47 @@ _require_scratch_f2fs_compression()
_scratch_unmount
fi
}
+
+_check_f2fs_filesystem()
+{
+ local device=$1
+
+ # If type is set, we're mounted
+ local type=`_fs_type $device`
+ local ok=1
+
+ if [ "$type" = "f2fs" ]
+ then
+ # mounted ...
+ local mountpoint=`_umount_or_remount_ro $device`
+ fi
+
+ $F2FS_FSCK_PROG --dry-run $device >$tmp.fsck.f2fs 2>&1
+ if [ $? -ne 0 ];then
+ _log_err "_check_f2fs_filesystem: filesystem on $device is inconsistent"
+ echo "*** fsck.f2fs output ***" >>$seqres.full
+ cat $tmp.fsck.f2fs >>$seqres.full
+ echo "*** end fsck.f2fs output" >>$seqres.full
+
+ ok=0
+ fi
+ rm -f $tmp.fsck.f2fs
+
+ if [ $ok -eq 0 ]
+ then
+ echo "*** mount output ***" >>$seqres.full
+ _mount >>$seqres.full
+ echo "*** end mount output" >>$seqres.full
+ elif [ "$type" = "f2fs" ]
+ then
+ # was mounted ...
+ _mount_or_remount_rw "$MOUNT_OPTIONS" $device $mountpoint
+ ok=$?
+ fi
+
+ if [ $ok -eq 0 ]; then
+ return 1
+ fi
+
+ return 0
+}
diff --git a/common/rc b/common/rc
index 1ec84263..4d121a1b 100644
--- a/common/rc
+++ b/common/rc
@@ -3566,50 +3566,6 @@ _check_generic_filesystem()
return 0
}
-_check_f2fs_filesystem()
-{
- local device=$1
-
- # If type is set, we're mounted
- local type=`_fs_type $device`
- local ok=1
-
- if [ "$type" = "f2fs" ]
- then
- # mounted ...
- local mountpoint=`_umount_or_remount_ro $device`
- fi
-
- $F2FS_FSCK_PROG --dry-run $device >$tmp.fsck.f2fs 2>&1
- if [ $? -ne 0 ];then
- _log_err "_check_f2fs_filesystem: filesystem on $device is inconsistent"
- echo "*** fsck.f2fs output ***" >>$seqres.full
- cat $tmp.fsck.f2fs >>$seqres.full
- echo "*** end fsck.f2fs output" >>$seqres.full
-
- ok=0
- fi
- rm -f $tmp.fsck.f2fs
-
- if [ $ok -eq 0 ]
- then
- echo "*** mount output ***" >>$seqres.full
- _mount >>$seqres.full
- echo "*** end mount output" >>$seqres.full
- elif [ "$type" = "f2fs" ]
- then
- # was mounted ...
- _mount_or_remount_rw "$MOUNT_OPTIONS" $device $mountpoint
- ok=$?
- fi
-
- if [ $ok -eq 0 ]; then
- return 1
- fi
-
- return 0
-}
-
# Filter the knowen errors the UDF Verifier reports.
_udf_test_known_error_filter()
{
--
2.40.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [PATCH 3/3] common/f2fs: introduce _require_inject_f2fs_command()
2025-10-09 8:50 [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs() Chao Yu
2025-10-09 8:50 ` [PATCH 2/3] common/rc: move _check_f2fs_filesystem() to common/f2fs Chao Yu
@ 2025-10-09 8:50 ` Chao Yu
2025-10-17 16:50 ` Zorro Lang
2025-10-17 16:06 ` [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs() Zorro Lang
2 siblings, 1 reply; 6+ messages in thread
From: Chao Yu @ 2025-10-09 8:50 UTC (permalink / raw)
To: Zorro Lang, fstests; +Cc: jaegeuk, linux-f2fs-devel, Chao Yu
Introduce _require_inject_f2fs_command() to check whether inject.f2fs
supports specific metaarea and member parameters.
Meanwhile, let's check inject.f2fs requirement inside
_require_inject_f2fs_command() for cleanup.
Cc: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Chao Yu <chao@kernel.org>
---
common/f2fs | 27 +++++++++++++++++++++++++++
tests/f2fs/009 | 2 +-
tests/f2fs/012 | 2 +-
tests/f2fs/019 | 2 +-
tests/f2fs/020 | 2 +-
tests/f2fs/022 | 2 +-
6 files changed, 32 insertions(+), 5 deletions(-)
diff --git a/common/f2fs b/common/f2fs
index 4d0d688b..82d3102e 100644
--- a/common/f2fs
+++ b/common/f2fs
@@ -69,3 +69,30 @@ _check_f2fs_filesystem()
return 0
}
+
+# check that inject.f2fs supports to inject specific field in specific meta area
+_require_inject_f2fs_command()
+{
+ _require_command "$F2FS_INJECT_PROG" inject.f2fs
+
+ if [ $# -ne 2 ]; then
+ echo "Usage: _require_inject_f2fs_command metaarea member" 1>&2
+ _exit 1
+ fi
+ metaarea=$1
+ member=$2
+
+ case $metaarea in
+ sb|cp|nat|sit)
+ val=0
+ ;;
+ ssa|node|dent)
+ ;;
+ *)
+ _notrun "unsupport metaarea: $metaarea"
+ ;;
+ esac
+
+ $F2FS_INJECT_PROG "--$metaarea" "$val" "-h" | grep "$member:" > /dev/null || \
+ _notrun "--$metaarea --mb $member support is missing"
+}
diff --git a/tests/f2fs/009 b/tests/f2fs/009
index 7333d484..4c179f2d 100755
--- a/tests/f2fs/009
+++ b/tests/f2fs/009
@@ -12,7 +12,7 @@
_begin_fstest auto quick
_require_scratch
-_require_command "$F2FS_INJECT_PROG" inject.f2fs
+_require_inject_f2fs_command node i_links
_require_command "$(type -P socket)" socket
_fixed_by_git_commit f2fs-tools 958cd6e \
diff --git a/tests/f2fs/012 b/tests/f2fs/012
index 7438d9ce..53d54bf6 100755
--- a/tests/f2fs/012
+++ b/tests/f2fs/012
@@ -20,7 +20,7 @@ _fixed_by_kernel_commit 91b587ba79e1 \
export LC_ALL=C.UTF-8
_require_scratch_nocheck
_require_command "$F2FS_IO_PROG" f2fs_io
-_require_command "$F2FS_INJECT_PROG" inject.f2fs
+_require_inject_f2fs_command dent d_hash
#check whether f2fs supports "lookup_mode=x" mount option
mntopt=""
diff --git a/tests/f2fs/019 b/tests/f2fs/019
index 2307bd96..a6e6e38c 100755
--- a/tests/f2fs/019
+++ b/tests/f2fs/019
@@ -18,7 +18,7 @@ _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
+_require_inject_f2fs_command node addr
# remove all mkfs options to avoid layout change of on-disk inode
export MKFS_OPTIONS=""
diff --git a/tests/f2fs/020 b/tests/f2fs/020
index 38bc6582..a6933134 100755
--- a/tests/f2fs/020
+++ b/tests/f2fs/020
@@ -20,7 +20,7 @@ _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_inject_f2fs_command node i_xattr_nid
_require_attrs user
# remove all mkfs options to avoid layout change of on-disk inode
diff --git a/tests/f2fs/022 b/tests/f2fs/022
index ed3b4f2b..48a8386b 100755
--- a/tests/f2fs/022
+++ b/tests/f2fs/022
@@ -19,7 +19,7 @@ _fixed_by_kernel_commit xxxxxxxxxxxx \
"f2fs: fix to do sanity check on node footer for non inode dnode"
_require_scratch_nocheck
-_require_command "$F2FS_INJECT_PROG" inject.f2fs
+_require_inject_f2fs_command node i_nid
# remove all mkfs options to avoid layout change of on-disk inode
export MKFS_OPTIONS=""
--
2.40.1
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs()
2025-10-09 8:50 [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs() Chao Yu
2025-10-09 8:50 ` [PATCH 2/3] common/rc: move _check_f2fs_filesystem() to common/f2fs Chao Yu
2025-10-09 8:50 ` [PATCH 3/3] common/f2fs: introduce _require_inject_f2fs_command() Chao Yu
@ 2025-10-17 16:06 ` Zorro Lang
2 siblings, 0 replies; 6+ messages in thread
From: Zorro Lang @ 2025-10-17 16:06 UTC (permalink / raw)
To: Chao Yu; +Cc: Zorro Lang, fstests, jaegeuk, linux-f2fs-devel
On Thu, Oct 09, 2025 at 04:50:41PM +0800, Chao Yu wrote:
> Let's source common/f2fs in _source_specific_fs() instead of in each
> testcase.
>
> Cc: Jaegeuk Kim <jaegeuk@kernel.org>
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
Make sense to me, thanks for fixing it.
Reviewed-by: Zorro Lang <zlang@redhat.com>
> common/config | 1 +
> tests/f2fs/002 | 1 -
> 2 files changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/common/config b/common/config
> index 22b52432..1420e35d 100644
> --- a/common/config
> +++ b/common/config
> @@ -509,6 +509,7 @@ _source_specific_fs()
> ;;
> f2fs)
> [ "$MKFS_F2FS_PROG" = "" ] && _fatal "mkfs.f2fs not found"
> + . ./common/f2fs
> ;;
> nfs)
> . ./common/nfs
> diff --git a/tests/f2fs/002 b/tests/f2fs/002
> index 74146217..d2f6e413 100755
> --- a/tests/f2fs/002
> +++ b/tests/f2fs/002
> @@ -43,7 +43,6 @@
> _begin_fstest auto quick rw encrypt compress fiemap
>
> . ./common/filter
> -. ./common/f2fs
> . ./common/encrypt
>
> # Prerequisites to create a file that is both encrypted and LZ4-compressed
> --
> 2.40.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 2/3] common/rc: move _check_f2fs_filesystem() to common/f2fs
2025-10-09 8:50 ` [PATCH 2/3] common/rc: move _check_f2fs_filesystem() to common/f2fs Chao Yu
@ 2025-10-17 16:21 ` Zorro Lang
0 siblings, 0 replies; 6+ messages in thread
From: Zorro Lang @ 2025-10-17 16:21 UTC (permalink / raw)
To: Chao Yu; +Cc: Zorro Lang, fstests, jaegeuk, linux-f2fs-devel
On Thu, Oct 09, 2025 at 04:50:42PM +0800, Chao Yu wrote:
> _check_f2fs_filesystem() is f2fs specific, it's better to move it to
> common/f2fs.
>
> Cc: Jaegeuk Kim <jaegeuk@kernel.org>
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
Looks good to me. With the patch 1/3, this change should work for f2fs too.
Reviewed-by: Zorro Lang <zlang@redhat.com>
> common/f2fs | 44 ++++++++++++++++++++++++++++++++++++++++++++
> common/rc | 44 --------------------------------------------
> 2 files changed, 44 insertions(+), 44 deletions(-)
>
> diff --git a/common/f2fs b/common/f2fs
> index 1b39d8ce..4d0d688b 100644
> --- a/common/f2fs
> +++ b/common/f2fs
> @@ -25,3 +25,47 @@ _require_scratch_f2fs_compression()
> _scratch_unmount
> fi
> }
> +
> +_check_f2fs_filesystem()
> +{
> + local device=$1
> +
> + # If type is set, we're mounted
> + local type=`_fs_type $device`
> + local ok=1
> +
> + if [ "$type" = "f2fs" ]
> + then
> + # mounted ...
> + local mountpoint=`_umount_or_remount_ro $device`
> + fi
> +
> + $F2FS_FSCK_PROG --dry-run $device >$tmp.fsck.f2fs 2>&1
> + if [ $? -ne 0 ];then
> + _log_err "_check_f2fs_filesystem: filesystem on $device is inconsistent"
> + echo "*** fsck.f2fs output ***" >>$seqres.full
> + cat $tmp.fsck.f2fs >>$seqres.full
> + echo "*** end fsck.f2fs output" >>$seqres.full
> +
> + ok=0
> + fi
> + rm -f $tmp.fsck.f2fs
> +
> + if [ $ok -eq 0 ]
> + then
> + echo "*** mount output ***" >>$seqres.full
> + _mount >>$seqres.full
> + echo "*** end mount output" >>$seqres.full
> + elif [ "$type" = "f2fs" ]
> + then
> + # was mounted ...
> + _mount_or_remount_rw "$MOUNT_OPTIONS" $device $mountpoint
> + ok=$?
> + fi
> +
> + if [ $ok -eq 0 ]; then
> + return 1
> + fi
> +
> + return 0
> +}
> diff --git a/common/rc b/common/rc
> index 1ec84263..4d121a1b 100644
> --- a/common/rc
> +++ b/common/rc
> @@ -3566,50 +3566,6 @@ _check_generic_filesystem()
> return 0
> }
>
> -_check_f2fs_filesystem()
> -{
> - local device=$1
> -
> - # If type is set, we're mounted
> - local type=`_fs_type $device`
> - local ok=1
> -
> - if [ "$type" = "f2fs" ]
> - then
> - # mounted ...
> - local mountpoint=`_umount_or_remount_ro $device`
> - fi
> -
> - $F2FS_FSCK_PROG --dry-run $device >$tmp.fsck.f2fs 2>&1
> - if [ $? -ne 0 ];then
> - _log_err "_check_f2fs_filesystem: filesystem on $device is inconsistent"
> - echo "*** fsck.f2fs output ***" >>$seqres.full
> - cat $tmp.fsck.f2fs >>$seqres.full
> - echo "*** end fsck.f2fs output" >>$seqres.full
> -
> - ok=0
> - fi
> - rm -f $tmp.fsck.f2fs
> -
> - if [ $ok -eq 0 ]
> - then
> - echo "*** mount output ***" >>$seqres.full
> - _mount >>$seqres.full
> - echo "*** end mount output" >>$seqres.full
> - elif [ "$type" = "f2fs" ]
> - then
> - # was mounted ...
> - _mount_or_remount_rw "$MOUNT_OPTIONS" $device $mountpoint
> - ok=$?
> - fi
> -
> - if [ $ok -eq 0 ]; then
> - return 1
> - fi
> -
> - return 0
> -}
> -
> # Filter the knowen errors the UDF Verifier reports.
> _udf_test_known_error_filter()
> {
> --
> 2.40.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 3/3] common/f2fs: introduce _require_inject_f2fs_command()
2025-10-09 8:50 ` [PATCH 3/3] common/f2fs: introduce _require_inject_f2fs_command() Chao Yu
@ 2025-10-17 16:50 ` Zorro Lang
0 siblings, 0 replies; 6+ messages in thread
From: Zorro Lang @ 2025-10-17 16:50 UTC (permalink / raw)
To: Chao Yu; +Cc: Zorro Lang, fstests, jaegeuk, linux-f2fs-devel
On Thu, Oct 09, 2025 at 04:50:43PM +0800, Chao Yu wrote:
> Introduce _require_inject_f2fs_command() to check whether inject.f2fs
> supports specific metaarea and member parameters.
>
> Meanwhile, let's check inject.f2fs requirement inside
> _require_inject_f2fs_command() for cleanup.
>
> Cc: Jaegeuk Kim <jaegeuk@kernel.org>
> Signed-off-by: Chao Yu <chao@kernel.org>
> ---
Thanks, this version is good to me,
Reviewed-by: Zorro Lang <zlang@redhat.com>
> common/f2fs | 27 +++++++++++++++++++++++++++
> tests/f2fs/009 | 2 +-
> tests/f2fs/012 | 2 +-
> tests/f2fs/019 | 2 +-
> tests/f2fs/020 | 2 +-
> tests/f2fs/022 | 2 +-
> 6 files changed, 32 insertions(+), 5 deletions(-)
>
> diff --git a/common/f2fs b/common/f2fs
> index 4d0d688b..82d3102e 100644
> --- a/common/f2fs
> +++ b/common/f2fs
> @@ -69,3 +69,30 @@ _check_f2fs_filesystem()
>
> return 0
> }
> +
> +# check that inject.f2fs supports to inject specific field in specific meta area
> +_require_inject_f2fs_command()
> +{
> + _require_command "$F2FS_INJECT_PROG" inject.f2fs
> +
> + if [ $# -ne 2 ]; then
> + echo "Usage: _require_inject_f2fs_command metaarea member" 1>&2
> + _exit 1
> + fi
> + metaarea=$1
> + member=$2
> +
> + case $metaarea in
> + sb|cp|nat|sit)
> + val=0
> + ;;
> + ssa|node|dent)
> + ;;
> + *)
> + _notrun "unsupport metaarea: $metaarea"
> + ;;
> + esac
> +
> + $F2FS_INJECT_PROG "--$metaarea" "$val" "-h" | grep "$member:" > /dev/null || \
> + _notrun "--$metaarea --mb $member support is missing"
> +}
> diff --git a/tests/f2fs/009 b/tests/f2fs/009
> index 7333d484..4c179f2d 100755
> --- a/tests/f2fs/009
> +++ b/tests/f2fs/009
> @@ -12,7 +12,7 @@
> _begin_fstest auto quick
>
> _require_scratch
> -_require_command "$F2FS_INJECT_PROG" inject.f2fs
> +_require_inject_f2fs_command node i_links
> _require_command "$(type -P socket)" socket
>
> _fixed_by_git_commit f2fs-tools 958cd6e \
> diff --git a/tests/f2fs/012 b/tests/f2fs/012
> index 7438d9ce..53d54bf6 100755
> --- a/tests/f2fs/012
> +++ b/tests/f2fs/012
> @@ -20,7 +20,7 @@ _fixed_by_kernel_commit 91b587ba79e1 \
> export LC_ALL=C.UTF-8
> _require_scratch_nocheck
> _require_command "$F2FS_IO_PROG" f2fs_io
> -_require_command "$F2FS_INJECT_PROG" inject.f2fs
> +_require_inject_f2fs_command dent d_hash
>
> #check whether f2fs supports "lookup_mode=x" mount option
> mntopt=""
> diff --git a/tests/f2fs/019 b/tests/f2fs/019
> index 2307bd96..a6e6e38c 100755
> --- a/tests/f2fs/019
> +++ b/tests/f2fs/019
> @@ -18,7 +18,7 @@ _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
> +_require_inject_f2fs_command node addr
>
> # remove all mkfs options to avoid layout change of on-disk inode
> export MKFS_OPTIONS=""
> diff --git a/tests/f2fs/020 b/tests/f2fs/020
> index 38bc6582..a6933134 100755
> --- a/tests/f2fs/020
> +++ b/tests/f2fs/020
> @@ -20,7 +20,7 @@ _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_inject_f2fs_command node i_xattr_nid
> _require_attrs user
>
> # remove all mkfs options to avoid layout change of on-disk inode
> diff --git a/tests/f2fs/022 b/tests/f2fs/022
> index ed3b4f2b..48a8386b 100755
> --- a/tests/f2fs/022
> +++ b/tests/f2fs/022
> @@ -19,7 +19,7 @@ _fixed_by_kernel_commit xxxxxxxxxxxx \
> "f2fs: fix to do sanity check on node footer for non inode dnode"
>
> _require_scratch_nocheck
> -_require_command "$F2FS_INJECT_PROG" inject.f2fs
> +_require_inject_f2fs_command node i_nid
>
> # remove all mkfs options to avoid layout change of on-disk inode
> export MKFS_OPTIONS=""
> --
> 2.40.1
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2025-10-17 16:50 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-09 8:50 [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs() Chao Yu
2025-10-09 8:50 ` [PATCH 2/3] common/rc: move _check_f2fs_filesystem() to common/f2fs Chao Yu
2025-10-17 16:21 ` Zorro Lang
2025-10-09 8:50 ` [PATCH 3/3] common/f2fs: introduce _require_inject_f2fs_command() Chao Yu
2025-10-17 16:50 ` Zorro Lang
2025-10-17 16:06 ` [PATCH 1/3] common/config: source common/f2fs in _source_specific_fs() Zorro Lang
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox