All of lore.kernel.org
 help / color / mirror / Atom feed
From: allison.henderson@oracle.com
To: linux-xfs@vger.kernel.org
Subject: [PATCH v5 00/25] xfsprogs: parent pointers for v5
Date: Thu, 10 Nov 2022 14:05:02 -0700	[thread overview]
Message-ID: <20221110210527.56628-1-allison.henderson@oracle.com> (raw)

From: Allison Henderson <allison.henderson@oracle.com>

Hi all,

This is corresponding port of the v5 parent pointer patch set for xfsprogs.  The
goal of the set is to enable use of the parent pointer feature on the kernel    
side, and provide basic user space utilities.                                   
                                                                                
The first 20 patches synchronize libxfs with changes seen the kernel space      
series. I will pick up the reviews from the kernel side series and mirror them   
here.  The later patches add the needed changes for printing logged parents,    
adding parents in protofiles, ioctl plumbing and command line flags.            

I dont often send out the usr space side since much of it is the same as the    
kernel space series, and the user space mechanics wont have much use with out   
the kernel support anyway.  So it makes sense to encourage reviewers to focus   
their efforts on getting the kernel series out of the way first.  But I think   
doing an an occasional post is good just so that people can see the whole       
picture to have and idea of where it's going, and also just for archiving       
reasons.   

This set can be viewed on github here:
https://github.com/allisonhenderson/xfsprogs/tree/xfsprogs_new_pptrs_v5_r1                                                      
As always, comments and feedback are appreciated.  Thank you!                   

Allison

Allison Collins (3):
  xfsprogs: get directory offset when adding directory name
  xfsprogs: get directory offset when replacing a directory name
  xfsprogs: implement the upper half of parent pointers

Allison Henderson (22):
  xfsprogs: Fix default superblock attr bits
  xfsprogs: Add new name to attri/d
  xfsprogs: Increase XFS_DEFER_OPS_NR_INODES to 5
  xfsprogs: get directory offset when removing directory name
  xfsprogs: add parent pointer support to attribute code
  xfsprogs: define parent pointer xattr format
  xfsprogs: Add xfs_verify_pptr
  xfsprogs: Increase rename inode reservation
  xfsprogs: extend transaction reservations for parent attributes
  xfsprogs: add parent attributes to link
  xfsprogs: add parent attributes to symlink
  xfsprogs: parent pointer attribute creation
  xfsprogs: remove parent pointers in unlink
  xfsprogs: Add parent pointers to rename
  xfsprogs: Add the parent pointer support to the superblock version 5.
  xfsprogs: Add parent pointer ioctl
  xfsprogs: fix unit conversion error in xfs_log_calc_max_attrsetm_res
  xfsprogs: drop compatibility minimum log size computations for reflink
  xfsprogs: Add parent pointer flag to cmd
  xfsprogs: Print pptrs in ATTRI items
  xfsprogs: Add parent pointers during protofile creation
  xfsprogs: Add i, n and f flags to parent command

 include/handle.h         |   2 +
 include/parent.h         |  25 ++
 include/xfs_trans.h      |   7 +
 io/parent.c              | 505 ++++++++++++---------------------------
 libfrog/fsgeom.c         |   4 +
 libfrog/paths.c          | 136 +++++++++++
 libfrog/paths.h          |  21 +-
 libhandle/Makefile       |   2 +-
 libhandle/handle.c       |   7 +-
 libhandle/parent.c       | 361 ++++++++++++++++++++++++++++
 libxfs/Makefile          |   2 +
 libxfs/libxfs_priv.h     |   2 +
 libxfs/xfs_attr.c        |  71 +++++-
 libxfs/xfs_attr.h        |  13 +-
 libxfs/xfs_da_btree.h    |   3 +
 libxfs/xfs_da_format.h   |  38 ++-
 libxfs/xfs_defer.c       |  28 ++-
 libxfs/xfs_defer.h       |   8 +-
 libxfs/xfs_dir2.c        |  21 +-
 libxfs/xfs_dir2.h        |   7 +-
 libxfs/xfs_dir2_block.c  |   9 +-
 libxfs/xfs_dir2_leaf.c   |   8 +-
 libxfs/xfs_dir2_node.c   |   8 +-
 libxfs/xfs_dir2_sf.c     |   6 +
 libxfs/xfs_format.h      |   4 +-
 libxfs/xfs_fs.h          |  75 ++++++
 libxfs/xfs_log_format.h  |   7 +-
 libxfs/xfs_log_rlimit.c  |  53 ++++
 libxfs/xfs_parent.c      | 208 ++++++++++++++++
 libxfs/xfs_parent.h      |  46 ++++
 libxfs/xfs_sb.c          |   4 +
 libxfs/xfs_trans_resv.c  | 324 +++++++++++++++++++++----
 libxfs/xfs_trans_space.h |   6 -
 logprint/log_redo.c      | 210 ++++++++++++++--
 logprint/logprint.h      |   5 +-
 man/man3/xfsctl.3        |  55 +++++
 mkfs/proto.c             |  50 ++--
 mkfs/xfs_mkfs.c          |  31 ++-
 repair/attr_repair.c     |  19 +-
 repair/phase6.c          |  18 +-
 scrub/inodes.c           |  26 ++
 scrub/inodes.h           |   2 +
 42 files changed, 1931 insertions(+), 506 deletions(-)
 create mode 100644 libhandle/parent.c
 create mode 100644 libxfs/xfs_parent.c
 create mode 100644 libxfs/xfs_parent.h

-- 
2.25.1


             reply	other threads:[~2022-11-10 21:06 UTC|newest]

Thread overview: 26+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-11-10 21:05 allison.henderson [this message]
2022-11-10 21:05 ` [PATCH v5 01/25] xfsprogs: Fix default superblock attr bits allison.henderson
2022-11-10 21:05 ` [PATCH v5 02/25] xfsprogs: Add new name to attri/d allison.henderson
2022-11-10 21:05 ` [PATCH v5 03/25] xfsprogs: Increase XFS_DEFER_OPS_NR_INODES to 5 allison.henderson
2022-11-10 21:05 ` [PATCH v5 04/25] xfsprogs: get directory offset when adding directory name allison.henderson
2022-11-10 21:05 ` [PATCH v5 05/25] xfsprogs: get directory offset when removing " allison.henderson
2022-11-10 21:05 ` [PATCH v5 06/25] xfsprogs: get directory offset when replacing a " allison.henderson
2022-11-10 21:05 ` [PATCH v5 07/25] xfsprogs: add parent pointer support to attribute code allison.henderson
2022-11-10 21:05 ` [PATCH v5 08/25] xfsprogs: define parent pointer xattr format allison.henderson
2022-11-10 21:05 ` [PATCH v5 09/25] xfsprogs: Add xfs_verify_pptr allison.henderson
2022-11-10 21:05 ` [PATCH v5 10/25] xfsprogs: Increase rename inode reservation allison.henderson
2022-11-10 21:05 ` [PATCH v5 11/25] xfsprogs: extend transaction reservations for parent attributes allison.henderson
2022-11-10 21:05 ` [PATCH v5 12/25] xfsprogs: add parent attributes to link allison.henderson
2022-11-10 21:05 ` [PATCH v5 13/25] xfsprogs: add parent attributes to symlink allison.henderson
2022-11-10 21:05 ` [PATCH v5 14/25] xfsprogs: parent pointer attribute creation allison.henderson
2022-11-10 21:05 ` [PATCH v5 15/25] xfsprogs: remove parent pointers in unlink allison.henderson
2022-11-10 21:05 ` [PATCH v5 16/25] xfsprogs: Add parent pointers to rename allison.henderson
2022-11-10 21:05 ` [PATCH v5 17/25] xfsprogs: Add the parent pointer support to the superblock version 5 allison.henderson
2022-11-10 21:05 ` [PATCH v5 18/25] xfsprogs: Add parent pointer ioctl allison.henderson
2022-11-10 21:05 ` [PATCH v5 19/25] xfsprogs: fix unit conversion error in xfs_log_calc_max_attrsetm_res allison.henderson
2022-11-10 21:05 ` [PATCH v5 20/25] xfsprogs: drop compatibility minimum log size computations for reflink allison.henderson
2022-11-10 21:05 ` [PATCH v5 21/25] xfsprogs: Add parent pointer flag to cmd allison.henderson
2022-11-10 21:05 ` [PATCH v5 22/25] xfsprogs: Print pptrs in ATTRI items allison.henderson
2022-11-10 21:05 ` [PATCH v5 23/25] xfsprogs: implement the upper half of parent pointers allison.henderson
2022-11-10 21:05 ` [PATCH v5 24/25] xfsprogs: Add parent pointers during protofile creation allison.henderson
2022-11-10 21:05 ` [PATCH v5 25/25] xfsprogs: Add i, n and f flags to parent command allison.henderson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20221110210527.56628-1-allison.henderson@oracle.com \
    --to=allison.henderson@oracle.com \
    --cc=linux-xfs@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.