mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
2461e8901c
Test case 631 fails for filesystems like exfat or vfat or any other which does not support extended attributes. The main reason for failure is not being able to mount overlayfs with filesystems that do not support extended attributes. mount -t overlay overlay -o "$l,$u,$w,$i" $mergedir Above command would return an error as - /var/mnt/scratch/merged0: wrong fs type, bad option, bad superblock on overlay, missing codepage or helper program, or other error. dmesg log reports the following - overlayfs: filesystem on '/var/mnt/scratch/upperdir1' not supported As per the overlayfs documentation - "A wide range of filesystems supported by Linux can be the lower filesystem, but not all filesystems that are mountable by Linux have the features needed for OverlayFS to work. The lower filesystem does not need to be writable. The lower filesystem can even be another overlayfs. The upper filesystem will normally be writable and if it is it must support the creation of trusted.* and/or user.* extended attributes, and must provide valid d_type in readdir responses, so NFS is not suitable. A read-only overlay of two read-only filesystems may use any filesystem type." As per the above statements from the overlayfs documentation, it is clear that filesystems that do not support extended attributes or d_type would not work with overlayfs. This is why we see the error in dmesg log for upperdir1 which had an exfat filesystem. This test case already checks for d_type but does not check for extended attributes, hence add a check for it which would avoid running this tests for filesystems that are not supported. Signed-off-by: Shreeya Patel <shreeya.patel@collabora.com> Reviewed-by: Darrick J. Wong <djwong@kernel.org> Signed-off-by: Eryu Guan <guaneryu@gmail.com>