All of lore.kernel.org
 help / color / mirror / Atom feed
* [ANNOUNCE] xfsprogs for-next updated to c1c71781
@ 2022-07-12 18:34 Eric Sandeen
  2022-07-12 23:21 ` Darrick J. Wong
  0 siblings, 1 reply; 3+ messages in thread
From: Eric Sandeen @ 2022-07-12 18:34 UTC (permalink / raw)
  To: xfs


[-- Attachment #1.1: Type: text/plain, Size: 3048 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.

I jumped the gun on 5.19.0-rc0, and a couple more libxfs patches got
added to the kkernel, so I added a new "release" and tag of
5.19.0-rc.0.1 after the last libxfs patches were merged.

After that I picked up most of Darrick's patches that had been reviewed,
as well as Zhang Boyang's mkfs man page update.

Patches often get missed, so please check if your outstanding
patches were in this update. If they have not been in this update,
please resubmit them to linux-xfs@vger.kernel.org so they can be
picked up in the next update.

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

c1c71781 mkfs: update manpage of bigtime and inobtcount

New Commits:

Darrick J. Wong (16):
      [41cbb27c] xfs: fix TOCTOU race involving the new logged xattrs control knob
      [53cbe278] xfs: fix variable state usage
      [5e572d1a] xfs: empty xattr leaf header blocks are not corruption
      [c21a5691] xfs: don't hold xattr leaf buffers across transaction rolls
      [95e3fc7f] misc: fix unsigned integer comparison complaints
      [053fcbc7] xfs_logprint: fix formatting specifiers
      [d6bfc06d] libxfs: remove xfs_globals.larp
      [fa0f9232] xfs_repair: always rewrite secondary supers when needsrepair is set
      [84c5f08f] xfs_repair: don't flag log_incompat inconsistencies as corruptions
      [766bfbd7] xfs_db: identify the minlogsize transaction reservation
      [baf8a5df] xfs_copy: don't use cached buffer reads until after libxfs_mount
      [b83b2ec0] xfs_repair: clear DIFLAG2_NREXT64 when filesystem doesn't support nrext64
      [0ec4cd64] xfs_repair: detect and fix padding fields that changed with nrext64
      [b6fd1034] mkfs: preserve DIFLAG2_NREXT64 when setting other inode attributes
      [42efbb99] mkfs: document the large extent count switch in the --help screen
      [ad8a3d7c] mkfs: always use new_diflags2 to initialize new inodes

Eric Sandeen (1):
      [e298041e] xfsprogs: Release v5.19.0-rc0.1

Zhang Boyang (1):
      [c1c71781] mkfs: update manpage of bigtime and inobtcount


Code Diffstat:

 copy/xfs_copy.c          |  2 +-
 db/check.c               | 10 +++++++---
 db/logformat.c           |  4 +++-
 db/metadump.c            | 11 +++++++----
 include/xfs_mount.h      |  7 -------
 libxfs/util.c            | 15 ++++++---------
 libxfs/xfs_attr.c        | 47 ++++++++++++++---------------------------------
 libxfs/xfs_attr.h        | 17 +----------------
 libxfs/xfs_attr_leaf.c   | 37 ++++++++++++++++++++-----------------
 libxfs/xfs_attr_leaf.h   |  3 +--
 libxfs/xfs_da_btree.h    |  4 +++-
 logprint/log_print_all.c |  2 +-
 man/man8/mkfs.xfs.8.in   |  4 ++--
 mkfs/xfs_mkfs.c          |  2 +-
 repair/agheader.c        | 23 ++++++++++++++++++++---
 repair/dinode.c          | 47 +++++++++++++++++++++++++++++++++++++++++++----
 16 files changed, 130 insertions(+), 105 deletions(-)

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

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

* Re: [ANNOUNCE] xfsprogs for-next updated to c1c71781
  2022-07-12 18:34 [ANNOUNCE] xfsprogs for-next updated to c1c71781 Eric Sandeen
@ 2022-07-12 23:21 ` Darrick J. Wong
  2022-07-13 21:44   ` Darrick J. Wong
  0 siblings, 1 reply; 3+ messages in thread
From: Darrick J. Wong @ 2022-07-12 23:21 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: xfs

On Tue, Jul 12, 2022 at 01:34:47PM -0500, Eric Sandeen wrote:
> 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.
> 
> I jumped the gun on 5.19.0-rc0, and a couple more libxfs patches got
> added to the kkernel, so I added a new "release" and tag of
> 5.19.0-rc.0.1 after the last libxfs patches were merged.

Are you planning to pick up the following patchsets for 5.19?

xfs_repair: check rt bitmap and summary [reviewed]
https://lore.kernel.org/linux-xfs/165644940561.1091513.10430076522811115702.stgit@magnolia/

mkfs: stop allowing tiny filesystems
https://lore.kernel.org/linux-xfs/165644942559.1091646.1065506297333895934.stgit@magnolia/

I'll resend the nrext64 upgrade and the random fixes rollups shortly,
since they've changed since 28 June.

--D

> After that I picked up most of Darrick's patches that had been reviewed,
> as well as Zhang Boyang's mkfs man page update.
> 
> Patches often get missed, so please check if your outstanding
> patches were in this update. If they have not been in this update,
> please resubmit them to linux-xfs@vger.kernel.org so they can be
> picked up in the next update.
> 
> The new head of the for-next branch is commit:
> 
> c1c71781 mkfs: update manpage of bigtime and inobtcount
> 
> New Commits:
> 
> Darrick J. Wong (16):
>       [41cbb27c] xfs: fix TOCTOU race involving the new logged xattrs control knob
>       [53cbe278] xfs: fix variable state usage
>       [5e572d1a] xfs: empty xattr leaf header blocks are not corruption
>       [c21a5691] xfs: don't hold xattr leaf buffers across transaction rolls
>       [95e3fc7f] misc: fix unsigned integer comparison complaints
>       [053fcbc7] xfs_logprint: fix formatting specifiers
>       [d6bfc06d] libxfs: remove xfs_globals.larp
>       [fa0f9232] xfs_repair: always rewrite secondary supers when needsrepair is set
>       [84c5f08f] xfs_repair: don't flag log_incompat inconsistencies as corruptions
>       [766bfbd7] xfs_db: identify the minlogsize transaction reservation
>       [baf8a5df] xfs_copy: don't use cached buffer reads until after libxfs_mount
>       [b83b2ec0] xfs_repair: clear DIFLAG2_NREXT64 when filesystem doesn't support nrext64
>       [0ec4cd64] xfs_repair: detect and fix padding fields that changed with nrext64
>       [b6fd1034] mkfs: preserve DIFLAG2_NREXT64 when setting other inode attributes
>       [42efbb99] mkfs: document the large extent count switch in the --help screen
>       [ad8a3d7c] mkfs: always use new_diflags2 to initialize new inodes
> 
> Eric Sandeen (1):
>       [e298041e] xfsprogs: Release v5.19.0-rc0.1
> 
> Zhang Boyang (1):
>       [c1c71781] mkfs: update manpage of bigtime and inobtcount
> 
> 
> Code Diffstat:
> 
>  copy/xfs_copy.c          |  2 +-
>  db/check.c               | 10 +++++++---
>  db/logformat.c           |  4 +++-
>  db/metadump.c            | 11 +++++++----
>  include/xfs_mount.h      |  7 -------
>  libxfs/util.c            | 15 ++++++---------
>  libxfs/xfs_attr.c        | 47 ++++++++++++++---------------------------------
>  libxfs/xfs_attr.h        | 17 +----------------
>  libxfs/xfs_attr_leaf.c   | 37 ++++++++++++++++++++-----------------
>  libxfs/xfs_attr_leaf.h   |  3 +--
>  libxfs/xfs_da_btree.h    |  4 +++-
>  logprint/log_print_all.c |  2 +-
>  man/man8/mkfs.xfs.8.in   |  4 ++--
>  mkfs/xfs_mkfs.c          |  2 +-
>  repair/agheader.c        | 23 ++++++++++++++++++++---
>  repair/dinode.c          | 47 +++++++++++++++++++++++++++++++++++++++++++----
>  16 files changed, 130 insertions(+), 105 deletions(-)




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

* Re: [ANNOUNCE] xfsprogs for-next updated to c1c71781
  2022-07-12 23:21 ` Darrick J. Wong
@ 2022-07-13 21:44   ` Darrick J. Wong
  0 siblings, 0 replies; 3+ messages in thread
From: Darrick J. Wong @ 2022-07-13 21:44 UTC (permalink / raw)
  To: Eric Sandeen; +Cc: xfs

On Tue, Jul 12, 2022 at 04:21:33PM -0700, Darrick J. Wong wrote:
> On Tue, Jul 12, 2022 at 01:34:47PM -0500, Eric Sandeen wrote:
> > 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.
> > 
> > I jumped the gun on 5.19.0-rc0, and a couple more libxfs patches got
> > added to the kkernel, so I added a new "release" and tag of
> > 5.19.0-rc.0.1 after the last libxfs patches were merged.
> 
> Are you planning to pick up the following patchsets for 5.19?
> 
> xfs_repair: check rt bitmap and summary [reviewed]
> https://lore.kernel.org/linux-xfs/165644940561.1091513.10430076522811115702.stgit@magnolia/
> 
> mkfs: stop allowing tiny filesystems
> https://lore.kernel.org/linux-xfs/165644942559.1091646.1065506297333895934.stgit@magnolia/
> 
> I'll resend the nrext64 upgrade and the random fixes rollups shortly,
> since they've changed since 28 June.

...and I guess also:
https://lore.kernel.org/linux-xfs/20220628144542.33704-1-hexiaole1994@126.com/

--D

> --D
> 
> > After that I picked up most of Darrick's patches that had been reviewed,
> > as well as Zhang Boyang's mkfs man page update.
> > 
> > Patches often get missed, so please check if your outstanding
> > patches were in this update. If they have not been in this update,
> > please resubmit them to linux-xfs@vger.kernel.org so they can be
> > picked up in the next update.
> > 
> > The new head of the for-next branch is commit:
> > 
> > c1c71781 mkfs: update manpage of bigtime and inobtcount
> > 
> > New Commits:
> > 
> > Darrick J. Wong (16):
> >       [41cbb27c] xfs: fix TOCTOU race involving the new logged xattrs control knob
> >       [53cbe278] xfs: fix variable state usage
> >       [5e572d1a] xfs: empty xattr leaf header blocks are not corruption
> >       [c21a5691] xfs: don't hold xattr leaf buffers across transaction rolls
> >       [95e3fc7f] misc: fix unsigned integer comparison complaints
> >       [053fcbc7] xfs_logprint: fix formatting specifiers
> >       [d6bfc06d] libxfs: remove xfs_globals.larp
> >       [fa0f9232] xfs_repair: always rewrite secondary supers when needsrepair is set
> >       [84c5f08f] xfs_repair: don't flag log_incompat inconsistencies as corruptions
> >       [766bfbd7] xfs_db: identify the minlogsize transaction reservation
> >       [baf8a5df] xfs_copy: don't use cached buffer reads until after libxfs_mount
> >       [b83b2ec0] xfs_repair: clear DIFLAG2_NREXT64 when filesystem doesn't support nrext64
> >       [0ec4cd64] xfs_repair: detect and fix padding fields that changed with nrext64
> >       [b6fd1034] mkfs: preserve DIFLAG2_NREXT64 when setting other inode attributes
> >       [42efbb99] mkfs: document the large extent count switch in the --help screen
> >       [ad8a3d7c] mkfs: always use new_diflags2 to initialize new inodes
> > 
> > Eric Sandeen (1):
> >       [e298041e] xfsprogs: Release v5.19.0-rc0.1
> > 
> > Zhang Boyang (1):
> >       [c1c71781] mkfs: update manpage of bigtime and inobtcount
> > 
> > 
> > Code Diffstat:
> > 
> >  copy/xfs_copy.c          |  2 +-
> >  db/check.c               | 10 +++++++---
> >  db/logformat.c           |  4 +++-
> >  db/metadump.c            | 11 +++++++----
> >  include/xfs_mount.h      |  7 -------
> >  libxfs/util.c            | 15 ++++++---------
> >  libxfs/xfs_attr.c        | 47 ++++++++++++++---------------------------------
> >  libxfs/xfs_attr.h        | 17 +----------------
> >  libxfs/xfs_attr_leaf.c   | 37 ++++++++++++++++++++-----------------
> >  libxfs/xfs_attr_leaf.h   |  3 +--
> >  libxfs/xfs_da_btree.h    |  4 +++-
> >  logprint/log_print_all.c |  2 +-
> >  man/man8/mkfs.xfs.8.in   |  4 ++--
> >  mkfs/xfs_mkfs.c          |  2 +-
> >  repair/agheader.c        | 23 ++++++++++++++++++++---
> >  repair/dinode.c          | 47 +++++++++++++++++++++++++++++++++++++++++++----
> >  16 files changed, 130 insertions(+), 105 deletions(-)
> 
> 
> 

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

end of thread, other threads:[~2022-07-13 21:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-12 18:34 [ANNOUNCE] xfsprogs for-next updated to c1c71781 Eric Sandeen
2022-07-12 23:21 ` Darrick J. Wong
2022-07-13 21:44   ` Darrick J. Wong

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.