mirror of
https://github.com/linux-apfs/apfstests.git
synced 2026-05-01 15:01:44 -07:00
72a84addd2
1) If underlying filesystem is ext4, the lower overlay inodes do not have the MSB set (e.g. file ino 8590721028 = 0x2000C0004) because ext4 has a known inode number limit of 32bit (see ovl_can_decode_fh). 2) With nested xino feature, the nested overlay inodes have the MSB set (e.g. file ino 9223372045445496836 = 0x80000002000C0004). It is expected different inode numbers which casue the failure of overlay/071, so fix this failure by removing the unneeded comparision. Suggested-by: Amir Goldstein <amir73il@gmail.com> Signed-off-by: Xiao Yang <yangx.jy@cn.fujitsu.com> Reviewed-by: Amir Goldstein <amir73il@gmail.com> Signed-off-by: Eryu Guan <guaneryu@gmail.com>