All of lore.kernel.org
 help / color / mirror / Atom feed
From: Allison Henderson <allison.henderson@oracle.com>
To: linux-xfs@vger.kernel.org
Subject: [PATCH v13 00/14] xfsprogs: Delayed Attributes
Date: Thu, 22 Oct 2020 23:32:52 -0700	[thread overview]
Message-ID: <20201023063306.7441-1-allison.henderson@oracle.com> (raw)

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(-)

-- 
2.7.4


             reply	other threads:[~2020-10-23  6:33 UTC|newest]

Thread overview: 19+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-10-23  6:32 Allison Henderson [this message]
2020-10-23  6:32 ` [PATCH v13 01/14] xfs: store inode btree block counts in AGI header Allison Henderson
2020-10-23  6:32 ` [PATCH v13 02/14] xfs: enable new inode btree counters feature Allison Henderson
2020-10-23  6:32 ` [PATCH v13 03/14] xfsprogs: Add helper xfs_attr_node_remove_step Allison Henderson
2020-10-23  6:32 ` [PATCH v13 04/14] xfsprogs: Add delay ready attr remove routines Allison Henderson
2020-10-23  6:32 ` [PATCH v13 05/14] xfsprogs: Add delay ready attr set routines Allison Henderson
2020-10-23  6:32 ` [PATCH v13 06/14] xfsprogs: Rename __xfs_attr_rmtval_remove Allison Henderson
2020-10-23  6:32 ` [PATCH v13 07/14] xfsprogs: Set up infastructure for deferred attribute operations Allison Henderson
2020-10-23  6:33 ` [PATCH v13 08/14] xfsprogs: Add xfs_attr_set_deferred and xfs_attr_remove_deferred Allison Henderson
2020-10-23  6:33 ` [PATCH v13 09/14] xfsprogs: Add feature bit XFS_SB_FEAT_INCOMPAT_LOG_DELATTR Allison Henderson
2020-10-23  6:33 ` [PATCH v13 10/14] xfsprogs: Enable delayed attributes Allison Henderson
2020-10-23  6:33 ` [PATCH v13 11/14] xfsprogs: Remove unused xfs_attr_*_args Allison Henderson
2020-10-23  6:33 ` [PATCH v13 12/14] xfs_io: Add delayed attributes error tag Allison Henderson
2020-10-23  6:33 ` [PATCH v13 13/14] [RFC] xfsprogs: Add log item printing for ATTRI and ATTRD Allison Henderson
2020-11-10 23:52   ` Darrick J. Wong
2020-11-13  3:57     ` Allison Henderson
2020-10-23  6:33 ` [PATCH v13 14/14] xfsprogs: Add delayed attribute flag to cmd Allison Henderson
2020-11-10 23:48   ` Darrick J. Wong
2020-11-13  3:52     ` 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=20201023063306.7441-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.