linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/21] xfsprogs: parent pointers v1
@ 2018-05-08  4:40 Allison Henderson
  2018-05-08  4:40 ` [PATCH 01/21] xfsprogs: Move xfs_attr.h to libxfs Allison Henderson
                   ` (20 more replies)
  0 siblings, 21 replies; 45+ messages in thread
From: Allison Henderson @ 2018-05-08  4:40 UTC (permalink / raw)
  To: linux-xfs

This is the first revision of the 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 17 patches synchronize libxfs with changes seen the kernel space patch.
I will pick up the reviews from that series and mirror them here.  Next
three patches plumb in the command line flag and changes to the protofile.  Last
patch I picked up from an earlier series Darrick to print out walk through pptrs
and print them.

As always, comments and feedback are appreciated.  Thank you!


Allison Henderson (20):
  xfsprogs: Move xfs_attr.h to libxfs
  xfsprogs: Add trans toggle to attr routines
  xfsprogs: Add attibute set and helper functions
  xfsprogs: Add attibute remove and helper functions
  xfsprogs: Set up infastructure for deferred attribute operations
  xfsprogs: Add xfs_attr_set_deferred and xfs_attr_remove_deferred
  xfsprogs: Remove all strlen calls in all xfs_attr_* functions for attr
    names.
  xfsprogs: get directory offset when adding directory name
  xfsprogs: get directory offset when removing directory name
  xfsprogs: get directory offset when replacing a directory name
  xfsprogs: add parent pointer support to attribute code
  xfsprogs: define parent pointer xattr format
  xfsprogs: extent transaction reservations for parent attributes
  xfsprogs: parent pointer attribute creation
  xfsprogs: Add the parent pointer support to the superblock version 5.
  xfsprogs: Add parent pointer ioctl
  xfsprogs: Add delayed attributes error tag
  xfsprogs: Add parent pointer flag to cmd
  xfsprogs: Remove single byte array from struct parent
  xfsprogs: Add parent pointers during protofile creation

Darrick J. Wong (1):
  xfsprogs: implement the upper half of parent pointers

 include/handle.h        |   2 +
 include/parent.h        |  19 +-
 include/path.h          |  19 ++
 io/inject.c             |   1 +
 io/parent.c             | 468 ++++++++++++----------------------------------
 libfrog/paths.c         | 136 ++++++++++++++
 libhandle/Makefile      |   2 +-
 libhandle/handle.c      |   7 +-
 libhandle/parent.c      | 325 ++++++++++++++++++++++++++++++++
 libxfs/Makefile         |   3 +
 libxfs/xfs_attr.c       | 481 ++++++++++++++++++++++++++++++++----------------
 libxfs/xfs_attr.h       | 191 +++++++++++++++++++
 libxfs/xfs_attr_leaf.c  |  13 +-
 libxfs/xfs_attr_leaf.h  |   8 +-
 libxfs/xfs_bmap.c       |  49 +++--
 libxfs/xfs_bmap.h       |   1 +
 libxfs/xfs_da_btree.h   |   1 +
 libxfs/xfs_da_format.h  |  38 +++-
 libxfs/xfs_defer.h      |   1 +
 libxfs/xfs_dir2.c       |  41 +++--
 libxfs/xfs_dir2.h       |  10 +-
 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_errortag.h   |   5 +-
 libxfs/xfs_format.h     |  10 +-
 libxfs/xfs_fs.h         |  47 +++++
 libxfs/xfs_log_format.h |  44 ++++-
 libxfs/xfs_parent.c     | 178 ++++++++++++++++++
 libxfs/xfs_parent.h     |  38 ++++
 libxfs/xfs_sb.c         |   2 +
 libxfs/xfs_trans_resv.c | 111 ++++++++---
 libxfs/xfs_trans_resv.h |   1 +
 libxfs/xfs_types.h      |   1 +
 mkfs/proto.c            |  58 ++++--
 mkfs/xfs_mkfs.c         |  16 +-
 repair/attr_repair.c    |  16 +-
 repair/phase6.c         |  54 +++---
 scrub/inodes.c          |  26 +++
 scrub/inodes.h          |   2 +
 scrub/phase5.c          |   9 +-
 42 files changed, 1802 insertions(+), 663 deletions(-)
 create mode 100644 libhandle/parent.c
 create mode 100644 libxfs/xfs_attr.h
 create mode 100644 libxfs/xfs_parent.c
 create mode 100644 libxfs/xfs_parent.h

-- 
2.7.4


^ permalink raw reply	[flat|nested] 45+ messages in thread

end of thread, other threads:[~2018-05-09  1:47 UTC | newest]

Thread overview: 45+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-05-08  4:40 [PATCH 00/21] xfsprogs: parent pointers v1 Allison Henderson
2018-05-08  4:40 ` [PATCH 01/21] xfsprogs: Move xfs_attr.h to libxfs Allison Henderson
2018-05-08 17:18   ` Darrick J. Wong
2018-05-08  4:41 ` [PATCH 02/21] xfsprogs: Add trans toggle to attr routines Allison Henderson
2018-05-08  4:41 ` [PATCH 03/21] xfsprogs: Add attibute set and helper functions Allison Henderson
2018-05-08  4:41 ` [PATCH 04/21] xfsprogs: Add attibute remove " Allison Henderson
2018-05-08  4:41 ` [PATCH 05/21] xfsprogs: Set up infastructure for deferred attribute operations Allison Henderson
2018-05-08  4:41 ` [PATCH 06/21] xfsprogs: Add xfs_attr_set_deferred and xfs_attr_remove_deferred Allison Henderson
2018-05-08  4:41 ` [PATCH 07/21] xfsprogs: Remove all strlen calls in all xfs_attr_* functions for attr names Allison Henderson
2018-05-08  4:41 ` [PATCH 08/21] xfsprogs: get directory offset when adding directory name Allison Henderson
2018-05-08  4:41 ` [PATCH 09/21] xfsprogs: get directory offset when removing " Allison Henderson
2018-05-08  4:41 ` [PATCH 10/21] xfsprogs: get directory offset when replacing a " Allison Henderson
2018-05-08  4:41 ` [PATCH 11/21] xfsprogs: add parent pointer support to attribute code Allison Henderson
2018-05-08  4:41 ` [PATCH 12/21] xfsprogs: define parent pointer xattr format Allison Henderson
2018-05-08  4:41 ` [PATCH 13/21] xfsprogs: extent transaction reservations for parent attributes Allison Henderson
2018-05-08  4:41 ` [PATCH 14/21] xfsprogs: parent pointer attribute creation Allison Henderson
2018-05-08  4:41 ` [PATCH 15/21] xfsprogs: Add the parent pointer support to the superblock version 5 Allison Henderson
2018-05-08  4:41 ` [PATCH 16/21] xfsprogs: Add parent pointer ioctl Allison Henderson
2018-05-08  4:41 ` [PATCH 17/21] xfsprogs: Add delayed attributes error tag Allison Henderson
2018-05-08 17:21   ` Darrick J. Wong
2018-05-08 20:17     ` Eric Sandeen
2018-05-08  4:41 ` [PATCH 18/21] xfsprogs: Add parent pointer flag to cmd Allison Henderson
2018-05-08 17:25   ` Darrick J. Wong
2018-05-08 19:02     ` Allison Henderson
2018-05-08 22:44       ` Darrick J. Wong
2018-05-08  4:41 ` [PATCH 19/21] xfsprogs: Remove single byte array from struct parent Allison Henderson
2018-05-08 17:32   ` Darrick J. Wong
2018-05-08  4:41 ` [PATCH 20/21] xfsprogs: Add parent pointers during protofile creation Allison Henderson
2018-05-08 17:43   ` Darrick J. Wong
2018-05-08 19:28     ` Allison Henderson
2018-05-08 20:39     ` Eric Sandeen
2018-05-08 21:14       ` Allison Henderson
2018-05-08 21:17         ` Eric Sandeen
2018-05-08 21:57           ` Allison Henderson
2018-05-08 22:27             ` Eric Sandeen
2018-05-08  4:41 ` [PATCH 21/21] xfsprogs: implement the upper half of parent pointers Allison Henderson
2018-05-08 17:45   ` Darrick J. Wong
2018-05-09  1:39     ` Allison Henderson
2018-05-09  1:44       ` Darrick J. Wong
2018-05-09  1:47         ` Allison Henderson
2018-05-08 20:52   ` Eric Sandeen
2018-05-08 23:04     ` Darrick J. Wong
2018-05-08 23:13       ` Allison Henderson
2018-05-09  1:22         ` Darrick J. Wong
2018-05-09  1:32           ` Allison Henderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).