Hi all, Directory parent pointers are stored as namespaced extended attributes of a file. Because parent pointers can consume up to 267 bytes of space and xattr names are 255 bytes at most, we cannot use the usual attr name lookup functions to find a parent pointer. This is solvable by introducing a new lookup mode that checks both the name and the value of the xattr. Therefore, introduce this new lookup mode. Because all parent pointer updates are logged, we must extend the xattr logging code to capture the VLOOKUP variants, and restore them when recovering logged operations. These new log formats are protected by the sb_incompat PARENT flag, so they do not need a separate log_incompat feature flag. If you're going to start using this code, I strongly recommend pulling from my git trees, which are linked below. This has been running on the djcloud for months with no problems. Enjoy! Comments and questions are, as always, welcome. --D kernel git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfs-linux.git/log/?h=pptrs-attr-nvlookups xfsprogs git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfsprogs-dev.git/log/?h=pptrs-attr-nvlookups xfsdocs git tree: https://git.kernel.org/cgit/linux/kernel/git/djwong/xfs-documentation.git/log/?h=pptrs-attr-nvlookups --- fs/xfs/libxfs/xfs_attr.c | 52 ++++-- fs/xfs/libxfs/xfs_attr.h | 32 +++- fs/xfs/libxfs/xfs_attr_leaf.c | 45 ++++- fs/xfs/libxfs/xfs_da_btree.h | 10 + fs/xfs/libxfs/xfs_format.h | 6 + fs/xfs/libxfs/xfs_log_format.h | 29 +++ fs/xfs/xfs_attr_item.c | 349 ++++++++++++++++++++++++++++++++++------ fs/xfs/xfs_attr_item.h | 2 fs/xfs/xfs_xattr.c | 15 ++ 9 files changed, 460 insertions(+), 80 deletions(-)