linux-xfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [ANNOUNCE] xfsprogs for-next updated to 7c3f161
@ 2019-08-16 17:37 Eric Sandeen
  0 siblings, 0 replies; only message in thread
From: Eric Sandeen @ 2019-08-16 17:37 UTC (permalink / raw)
  To: linux-xfs


[-- Attachment #1.1: Type: text/plain, Size: 5429 bytes --]

Hi folks,

The for-next branch of the xfsprogs repository at:

	git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git

has just been updated and tagged with v5.3.0-rc0

I'm aware that there are unmerged patches on the list, so no need
to resend anything at this time.

The new head of the for-next branch is commit:

7c3f161 xfsprogs: Release v5.3.0-rc0

New Commits:

Brian Foster (4):
      [6802ae4] xfs: clean up small allocation helper
      [2328093] xfs: move small allocation helper
      [05479bb] xfs: skip small alloc cntbt logic on NULL cursor
      [9f09e97] xfs: always update params on small allocation

Christoph Hellwig (2):
      [f312f63] xfs: add struct xfs_mount pointer to struct xfs_buf
      [6aeb1c0] xfs: remove XFS_TRANS_NOFS

Darrick J. Wong (19):
      [251ee0f] xfs: separate inode geometry
      [5ee6a39] xfs: refactor inode geometry setup routines
      [5fc96f4] xfs: fix inode_cluster_size rounding mayhem
      [adee858] xfs: finish converting to inodes_per_cluster
      [64fb6e0] xfs: move xfs_ino_geometry to xfs_shared.h
      [5575259] xfs: refactor free space btree record initialization
      [d85f37f] xfs: account for log space when formatting new AGs
      [a52f3fd] xfs: create iterator error codes
      [c9d1c30] xfs: create simplified inode walk function
      [32dd7d9] xfs: remove various bulk request typedef usage
      [2224df6] xfs: introduce new v5 bulkstat structure
      [2cd4504] xfs: introduce v5 inode group structure
      [860c3ae] xfs: wire up new v5 bulkstat ioctls
      [c6c1a0d] xfs: wire up the v5 inumbers ioctl
      [55bcd62] xfs: specify AG in bulk req
      [6d73993] xfs: allow single bulkstat of special inodes
      [07380ef] xfs: attribute scrub should use seen_enough to pass error values
      [a8742dd] xfs: remove more ondisk directory corruption asserts
      [85afaac] xfs: don't crash on null attr fork xfs_bmapi_read

Eric Sandeen (4):
      [3d35020] xfs: remove unused flags arg from getsb interfaces
      [9238783] xfs: remove unused flag arguments
      [4798848] xfs: remove unused header files
      [7c3f161] xfsprogs: Release v5.3.0-rc0


Code Diffstat:

 VERSION                     |   4 +-
 configure.ac                |   2 +-
 db/check.c                  |  50 ++++-----
 db/frag.c                   |   9 +-
 db/inode.c                  |   9 +-
 db/metadump.c               |  25 +++--
 debian/changelog            |   6 ++
 doc/CHANGES                 |   3 +
 fsr/xfs_fsr.c               |  36 +++----
 include/jdm.h               |   8 +-
 include/xfs_mount.h         |  22 +---
 include/xfs_trans.h         |   2 +-
 io/imap.c                   |   4 +-
 io/parent.c                 |  18 ++--
 libhandle/jdm.c             |  16 +--
 libxfs/init.c               |  57 ++---------
 libxfs/libxfs_io.h          |   3 +-
 libxfs/libxfs_priv.h        |   2 +-
 libxfs/rdwr.c               |   9 +-
 libxfs/trans.c              |  10 +-
 libxfs/xfs_ag.c             | 101 +++++++++++++++---
 libxfs/xfs_ag_resv.c        |  11 --
 libxfs/xfs_alloc.c          | 228 ++++++++++++++++++++---------------------
 libxfs/xfs_alloc_btree.c    |   5 +-
 libxfs/xfs_attr.c           |   2 -
 libxfs/xfs_attr.h           |   8 +-
 libxfs/xfs_attr_leaf.c      |  15 ++-
 libxfs/xfs_attr_remote.c    |  11 +-
 libxfs/xfs_bit.c            |   1 -
 libxfs/xfs_bmap.c           |  46 +++++----
 libxfs/xfs_bmap_btree.c     |   4 +-
 libxfs/xfs_btree.c          |  50 ++++-----
 libxfs/xfs_btree.h          |  14 +--
 libxfs/xfs_da_btree.c       |  29 +++---
 libxfs/xfs_da_format.c      |   3 -
 libxfs/xfs_defer.c          |   6 --
 libxfs/xfs_dir2.c           |   6 +-
 libxfs/xfs_dir2_block.c     |  10 +-
 libxfs/xfs_dir2_data.c      |  14 +--
 libxfs/xfs_dir2_leaf.c      |  10 +-
 libxfs/xfs_dir2_node.c      |  13 ++-
 libxfs/xfs_dir2_sf.c        |   3 +-
 libxfs/xfs_dquot_buf.c      |  13 +--
 libxfs/xfs_format.h         |   2 +-
 libxfs/xfs_fs.h             | 124 ++++++++++++++++++++--
 libxfs/xfs_health.h         |   2 +-
 libxfs/xfs_ialloc.c         | 245 +++++++++++++++++++++++++++++---------------
 libxfs/xfs_ialloc.h         |  18 +---
 libxfs/xfs_ialloc_btree.c   |  56 +++++++---
 libxfs/xfs_ialloc_btree.h   |   3 +
 libxfs/xfs_iext_tree.c      |   4 -
 libxfs/xfs_inode_buf.c      |  10 +-
 libxfs/xfs_inode_fork.c     |   3 +-
 libxfs/xfs_log_rlimit.c     |   2 -
 libxfs/xfs_refcount.c       |   3 -
 libxfs/xfs_refcount_btree.c |   5 +-
 libxfs/xfs_rmap.c           |   7 --
 libxfs/xfs_rmap_btree.c     |   6 +-
 libxfs/xfs_rtbitmap.c       |   4 -
 libxfs/xfs_sb.c             |  39 ++-----
 libxfs/xfs_shared.h         |  49 ++++++++-
 libxfs/xfs_symlink_remote.c |   9 +-
 libxfs/xfs_trans_inode.c    |   3 -
 libxfs/xfs_trans_resv.c     |  18 ++--
 libxfs/xfs_trans_space.h    |   7 +-
 libxfs/xfs_types.c          |  13 +--
 mkfs/proto.c                |   2 +-
 mkfs/xfs_mkfs.c             |  16 +--
 quota/quot.c                |   8 +-
 repair/dino_chunks.c        |  46 +++++----
 repair/dinode.c             |   5 +-
 repair/phase2.c             |   2 +-
 repair/phase5.c             |  28 ++---
 repair/prefetch.c           |  14 +--
 repair/scan.c               |  19 ++--
 repair/xfs_repair.c         |  14 +--
 76 files changed, 920 insertions(+), 764 deletions(-)


[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 873 bytes --]

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2019-08-16 17:37 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-08-16 17:37 [ANNOUNCE] xfsprogs for-next updated to 7c3f161 Eric Sandeen

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