mbox series

[PATCHSET,v12.0,00/30] xfsprogs: Parent Pointers

Message ID 168506077876.3749421.7883085669588003826.stgit@frogsfrogsfrogs (mailing list archive)
Headers show
Series xfsprogs: Parent Pointers | expand

Message

Darrick J. Wong May 26, 2023, 2:01 a.m. UTC
Hi all,

This is the latest parent pointer attributes for xfs.  The goal of this
patch set is to add a parent pointer attribute to each inode.  The
attribute name containing the parent inode, generation, and directory
offset, while the  attribute value contains the file name.  This feature
will enable future optimizations for online scrub, shrink, nfs handles,
verity, or any other feature that could make use of quickly deriving an
inodes path from the mount point.

At this point, Allison is moving on to other things, so I've merged her
patchset into djwong-dev for merging.

Updates since v11 [djwong]:

Rebase on 6.4-rc and make some tweaks and bugfixes to enable the repair
prototypes.  Merge with djwong-dev and make online repair actually work.

Updates since v10 [djwong]:

Merge in the ondisk format changes to get rid of the diroffset conflicts
with the parent pointer repair code, rebase the entire series with the
attr vlookup changes first, and merge all the other random fixes.

Updates since v9:

Reordered patches 2 and 3 to be 6 and 7

xfs: Add xfs_verify_pptr
   moved parent pointer validators to xfs_parent

xfs: Add parent pointer ioctl
   Extra validation checks for fs id
   added missing release for the inode
   use GFP_KERNEL flags for malloc/realloc
   reworked ioctl to use pptr listenty and flex array

NEW
   xfs: don't remove the attr fork when parent pointers are enabled

NEW
   directory lookups should return diroffsets too

NEW
   xfs: move/add parent pointer validators to xfs_parent

Updates since v8:

xfs: parent pointer attribute creation
   Fix xfs_parent_init to release log assist on alloc fail
   Add slab cache for xfs_parent_defer
   Fix xfs_create to release after unlock
   Add xfs_parent_start and xfs_parent_finish wrappers
   removed unused xfs_parent_name_irec and xfs_init_parent_name_irec

xfs: add parent attributes to link
   Start/finish wrapper updates
   Fix xfs_link to disallow reservationless quotas

xfs: add parent attributes to symlink
   Fix xfs_symlink to release after unlock
   Start/finish wrapper updates

xfs: remove parent pointers in unlink
   Start/finish wrapper updates
   Add missing parent free

xfs: Add parent pointers to rename
   Start/finish wrapper updates
   Fix rename to only grab logged xattr once
   Fix xfs_rename to disallow reservationless quotas
   Fix double unlock on dqattach fail
   Move parent frees to out_release_wip

xfs: Add parent pointers to xfs_cross_rename
   Hoist parent pointers into rename

Questions comments and feedback appreciated!

Thanks all!
Allison

If you're going to start using this mess, you probably ought to just
pull from my git trees, which are linked below.

This is an extraordinary way to destroy everything.  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

xfsprogs git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfsprogs-dev.git/log/?h=pptrs

fstests git tree:
https://git.kernel.org/cgit/linux/kernel/git/djwong/xfstests-dev.git/log/?h=pptrs
---
 db/attr.c                |   67 ++++++
 db/attrshort.c           |   51 ++++
 db/metadump.c            |  316 +++++++++++++++++++++++++++-
 db/namei.c               |  335 +++++++++++++++++++++++++++++
 include/handle.h         |    1 
 include/libxfs.h         |    1 
 include/xfs_inode.h      |    6 +
 io/parent.c              |  527 ++++++++++++++++------------------------------
 libfrog/Makefile         |    2 
 libfrog/fsgeom.c         |    4 
 libfrog/getparents.c     |  345 ++++++++++++++++++++++++++++++
 libfrog/getparents.h     |   36 +++
 libfrog/paths.c          |  167 +++++++++++++++
 libfrog/paths.h          |   25 ++
 libhandle/handle.c       |    7 -
 libxfs/Makefile          |    3 
 libxfs/init.c            |    7 +
 libxfs/libxfs_api_defs.h |   14 +
 libxfs/libxfs_priv.h     |    6 -
 libxfs/util.c            |   14 +
 libxfs/xfs_attr.c        |   21 +-
 libxfs/xfs_attr.h        |   14 +
 libxfs/xfs_attr_leaf.c   |    6 -
 libxfs/xfs_attr_sf.h     |    1 
 libxfs/xfs_da_format.h   |   34 +++
 libxfs/xfs_format.h      |    4 
 libxfs/xfs_fs.h          |    2 
 libxfs/xfs_fs_staging.h  |   66 ++++++
 libxfs/xfs_log_format.h  |    1 
 libxfs/xfs_log_rlimit.c  |   53 +++++
 libxfs/xfs_parent.c      |  325 ++++++++++++++++++++++++++++
 libxfs/xfs_parent.h      |  101 +++++++++
 libxfs/xfs_sb.c          |    4 
 libxfs/xfs_trans_resv.c  |  324 ++++++++++++++++++++++++----
 libxfs/xfs_trans_space.c |  121 +++++++++++
 libxfs/xfs_trans_space.h |   25 +-
 logprint/log_redo.c      |   81 +++++++
 man/man3/xfsctl.3        |   63 +++++
 man/man8/xfs_db.8        |    9 +
 man/man8/xfs_io.8        |   30 ++-
 man/man8/xfs_spaceman.8  |    7 +
 mkfs/proto.c             |   63 ++++-
 mkfs/xfs_mkfs.c          |   31 ++-
 repair/attr_repair.c     |   25 +-
 repair/phase6.c          |   14 +
 scrub/common.c           |   41 +++-
 spaceman/Makefile        |    4 
 spaceman/file.c          |    7 +
 spaceman/health.c        |   53 ++++-
 spaceman/space.h         |    3 
 50 files changed, 2968 insertions(+), 499 deletions(-)
 create mode 100644 libfrog/getparents.c
 create mode 100644 libfrog/getparents.h
 create mode 100644 libxfs/xfs_parent.c
 create mode 100644 libxfs/xfs_parent.h
 create mode 100644 libxfs/xfs_trans_space.c