From: Viacheslav Dubeyko Date: Tue, 6 Jan 2026 23:35:56 +0000 (-0800) Subject: xfstests: hfs/hfsplus don't support metadata journaling X-Git-Tag: v2026.01.27~8 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=facf3325d90dd6b650983b2cae2369c837d92bf8;p=xfstests-dev.git 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 --- 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 ;;