From facf3325d90dd6b650983b2cae2369c837d92bf8 Mon Sep 17 00:00:00 2001 From: Viacheslav Dubeyko Date: Tue, 6 Jan 2026 15:35:56 -0800 Subject: [PATCH] xfstests: hfs/hfsplus don't support metadata journaling HFS file system doesn't support metadata journaling. This patch marks HFS file system as not supporting metadata journaling in _has_metadata_journaling() of common/rc. Technically speaking, HFS+ is journaling file system. However, current Linux kernel implementation doesn't support even journal replay. This patch marks HFS+ file system as not supporting metadata journaling in _has_metadata_journaling() of common/rc. If journaling support functionality in HFS+ will be implemented, then HFS+ could be deleted from _has_metadata_journaling() in the future. Signed-off-by: Viacheslav Dubeyko Reviewed-by: Zorro Lang Signed-off-by: Zorro Lang --- common/rc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/rc b/common/rc index 8618f77a..92cb6982 100644 --- a/common/rc +++ b/common/rc @@ -4280,7 +4280,7 @@ _has_metadata_journaling() fi case "$FSTYP" in - ext2|vfat|msdos|udf|exfat|tmpfs) + ext2|vfat|msdos|udf|exfat|tmpfs|hfs|hfsplus) echo "$FSTYP does not support metadata journaling" return 1 ;; -- 2.47.3