mbox series

[v13,00/14] xfsprogs: Delayed Attributes

Message ID 20201023063306.7441-1-allison.henderson@oracle.com (mailing list archive)
Headers show
Series xfsprogs: Delayed Attributes | expand

Message

Allison Henderson Oct. 23, 2020, 6:32 a.m. UTC
Hi all,

This set applies the corresponding changes for delayed attributes to
xfsprogs. I will pick up the reviews from the kernel side series and mirror
them here.  This set also includes some patches from the kernel side that have
not yet been ported. This set also includes patches needed for the user space
cli and log printing routines

This series can also be viewed on github here:
https://github.com/allisonhenderson/xfs_work/tree/delay_ready_attrs_xfsprogs_v13

And also the extended delayed attribute and parent pointer series:
https://github.com/allisonhenderson/xfs_work/tree/delay_ready_attrs_xfsprogs_v13_extended

Thanks all!
Allison

Allison Collins (7):
  xfsprogs: Add helper xfs_attr_node_remove_step
  xfsprogs: Rename __xfs_attr_rmtval_remove
  xfsprogs: Set up infastructure for deferred attribute operations
  xfsprogs: Add xfs_attr_set_deferred and xfs_attr_remove_deferred
  xfsprogs: Enable delayed attributes
  xfs_io: Add delayed attributes error tag
  xfsprogs: Add delayed attribute flag to cmd

Allison Henderson (5):
  xfsprogs: Add delay ready attr remove routines
  xfsprogs: Add delay ready attr set routines
  xfsprogs: Add feature bit XFS_SB_FEAT_INCOMPAT_LOG_DELATTR
  xfsprogs: Remove unused xfs_attr_*_args
  [RFC] xfsprogs: Add log item printing for ATTRI and ATTRD

Darrick J. Wong (2):
  xfs: store inode btree block counts in AGI header
  xfs: enable new inode btree counters feature

 include/libxfs.h          |   1 +
 io/inject.c               |   1 +
 libxfs/defer_item.c       | 132 +++++++++++
 libxfs/libxfs_priv.h      |   1 +
 libxfs/xfs_ag.c           |   5 +
 libxfs/xfs_attr.c         | 547 +++++++++++++++++++++++++++++++---------------
 libxfs/xfs_attr.h         | 219 ++++++++++++++++++-
 libxfs/xfs_attr_leaf.c    |   2 +-
 libxfs/xfs_attr_remote.c  | 114 ++++++----
 libxfs/xfs_attr_remote.h  |   7 +-
 libxfs/xfs_defer.c        |   1 +
 libxfs/xfs_defer.h        |   2 +
 libxfs/xfs_errortag.h     |   4 +-
 libxfs/xfs_format.h       |  32 ++-
 libxfs/xfs_fs.h           |   1 +
 libxfs/xfs_ialloc.c       |   1 +
 libxfs/xfs_ialloc_btree.c |  21 ++
 libxfs/xfs_log_format.h   |  43 +++-
 libxfs/xfs_sb.c           |   2 +
 libxfs/xfs_types.h        |   1 +
 logprint/log_misc.c       |  31 ++-
 logprint/log_print_all.c  |  12 +
 logprint/log_redo.c       | 197 +++++++++++++++++
 logprint/logprint.h       |  10 +
 mkfs/xfs_mkfs.c           |  24 +-
 25 files changed, 1179 insertions(+), 232 deletions(-)