public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/34] xfsprogs: libxfs sync v6.18
@ 2025-12-05 15:01 Andrey Albershteyn
  2025-12-05 15:01 ` [PATCH v2 1/33] xfs: remove deprecated mount options Andrey Albershteyn
                   ` (33 more replies)
  0 siblings, 34 replies; 35+ messages in thread
From: Andrey Albershteyn @ 2025-12-05 15:01 UTC (permalink / raw)
  To: linux-xfs, aalbersh, cem, cmaiolino, djwong, dlemoal,
	hans.holmberg, hch, preichl

Hi all,

This is libxfs sync for v6.18. A lot of typedef cleanups mostly.

I replaced removed typedefs throughout xfsprogs and adjusted formating a
bit around these changes, and updated XFS_TEST_ERROR() macro in the
original commit to ignore expr argument. Nothing else changed.

v2:
- Moved all newly added "convert ... typedef to struct" before typedef
  removal commits
- Remove some retabs to not interfere with futher typedef cleanups

Andrey Albershteyn <aalbersh@kernel.org>:
  xfs: remove deprecated mount options
  xfs: remove deprecated sysctl knobs
  xfs: convert xfs_buf_log_format_t typedef to struct
  xfs: convert xlog_op_header_t typedef to struct
  xfs: convert xfs_trans_header_t typdef to struct
  xfs: convert xfs_log_iovec_t typedef to struct
  xfs: convert xfs_qoff_logformat_t typedef to struct
  xfs: convert xfs_dq_logformat_t typedef to struct
  xfs: convert xfs_efi_log_format typedef to struct
  xfs: convert xfs_efd_log_format_t typedef to struct
  xfs: convert xfs_efi_log_format_32_t typedef to struct
  xfs: convert xfs_extent_t typedef to struct
  xfs: convert xfs_efi_log_format_64_t typedef to struct
  xfs: remove the xlog_op_header_t typedef
  xfs: remove the xfs_trans_header_t typedef
  xfs: remove the xfs_extent_t typedef
  xfs: remove the xfs_extent32_t typedef
  xfs: remove the xfs_extent64_t typedef
  xfs: remove the xfs_efi_log_format_t typedef
  xfs: remove the xfs_efi_log_format_32_t typedef
  xfs: remove the xfs_efi_log_format_64_t typedef
  xfs: remove the xfs_efd_log_format_t typedef
  xfs: remove the unused xfs_efd_log_format_32_t typedef
  xfs: remove the unused xfs_efd_log_format_64_t typedef
  xfs: remove the unused xfs_buf_log_format_t typedef
  xfs: remove the unused xfs_dq_logformat_t typedef
  xfs: remove the unused xfs_qoff_logformat_t typedef
  xfs: remove the unused xfs_log_iovec_t typedef
  xfs: fix log CRC mismatches between i386 and other architectures
  xfs: move the XLOG_REG_ constants out of xfs_log_format.h
  xfs: remove the expr argument to XFS_TEST_ERROR
  xfs: improve default maximum number of open zones
  xfs: prevent gc from picking the same zone twice

Diffstat:
  include/xfs_trans.h       |   2 +-
  libxfs/defer_item.c       |   2 +-
  libxfs/libxfs_priv.h      |   2 +-
  libxfs/rdwr.c             |   4 ++--
  libxfs/util.c             |  10 +++++-----
  libxfs/xfs_ag_resv.c      |   7 +++----
  libxfs/xfs_alloc.c        |   5 ++---
  libxfs/xfs_attr_leaf.c    |  25 ++++++-------------------
  libxfs/xfs_bmap.c         |  31 +++++++++++--------------------
  libxfs/xfs_btree.c        |   2 +-
  libxfs/xfs_da_btree.c     |   2 +-
  libxfs/xfs_dir2.c         |   2 +-
  libxfs/xfs_exchmaps.c     |   4 ++--
  libxfs/xfs_ialloc.c       |   6 +++---
  libxfs/xfs_inode_buf.c    |   4 ++--
  libxfs/xfs_inode_fork.c   |   3 +--
  libxfs/xfs_inode_util.c   |  11 -----------
  libxfs/xfs_log_format.h   | 150 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--------------------------------------------------------------------------------
  libxfs/xfs_log_recover.h  |   2 +-
  libxfs/xfs_metafile.c     |   2 +-
  libxfs/xfs_ondisk.h       |   2 ++
  libxfs/xfs_refcount.c     |   7 +++----
  libxfs/xfs_rmap.c         |   2 +-
  libxfs/xfs_rtbitmap.c     |   2 +-
  libxfs/xfs_rtgroup.h      |   6 ++++++
  libxfs/xfs_sb.c           |   9 +++------
  libxfs/xfs_zones.h        |   7 +++++++
  libxlog/xfs_log_recover.c |  20 ++++++++++----------
  logprint/log_print_all.c  |  14 +++++++-------
  logprint/log_redo.c       |  89 +++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------
  logprint/logprint.h       |   2 +-
  31 files changed, 203 insertions(+), 233 deletions(-)

-- 
- Andrey


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

end of thread, other threads:[~2025-12-08  6:49 UTC | newest]

Thread overview: 35+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-12-05 15:01 [PATCH v2 0/34] xfsprogs: libxfs sync v6.18 Andrey Albershteyn
2025-12-05 15:01 ` [PATCH v2 1/33] xfs: remove deprecated mount options Andrey Albershteyn
2025-12-05 15:01 ` [PATCH v2 2/33] xfs: remove deprecated sysctl knobs Andrey Albershteyn
2025-12-05 15:01 ` [PATCH v2 3/33] xfs: convert xfs_buf_log_format_t typedef to struct Andrey Albershteyn
2025-12-05 15:01 ` [PATCH v2 4/33] xfs: convert xlog_op_header_t " Andrey Albershteyn
2025-12-05 15:01 ` [PATCH v2 5/33] xfs: convert xfs_trans_header_t typdef " Andrey Albershteyn
2025-12-05 15:01 ` [PATCH v2 6/33] xfs: convert xfs_log_iovec_t typedef " Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 7/33] xfs: convert xfs_qoff_logformat_t " Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 8/33] xfs: convert xfs_dq_logformat_t " Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 9/33] xfs: convert xfs_efi_log_format " Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 10/33] xfs: convert xfs_efd_log_format_t " Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 11/33] xfs: convert xfs_efi_log_format_32_t " Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 12/33] xfs: convert xfs_extent_t " Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 13/33] xfs: convert xfs_efi_log_format_64_t " Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 14/33] xfs: remove the xlog_op_header_t typedef Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 15/33] xfs: remove the xfs_trans_header_t typedef Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 16/33] xfs: remove the xfs_extent_t typedef Andrey Albershteyn
2025-12-05 15:02 ` [PATCH v2 17/33] xfs: remove the xfs_extent32_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 18/33] xfs: remove the xfs_extent64_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 19/33] xfs: remove the xfs_efi_log_format_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 20/33] xfs: remove the xfs_efi_log_format_32_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 21/33] xfs: remove the xfs_efi_log_format_64_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 22/33] xfs: remove the xfs_efd_log_format_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 23/33] xfs: remove the unused xfs_efd_log_format_32_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 24/33] xfs: remove the unused xfs_efd_log_format_64_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 25/33] xfs: remove the unused xfs_buf_log_format_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 26/33] xfs: remove the unused xfs_dq_logformat_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 27/33] xfs: remove the unused xfs_qoff_logformat_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 28/33] xfs: remove the unused xfs_log_iovec_t typedef Andrey Albershteyn
2025-12-05 15:03 ` [PATCH v2 29/33] xfs: fix log CRC mismatches between i386 and other architectures Andrey Albershteyn
2025-12-05 15:04 ` [PATCH v2 30/33] xfs: move the XLOG_REG_ constants out of xfs_log_format.h Andrey Albershteyn
2025-12-05 15:04 ` [PATCH v2 31/33] xfs: remove the expr argument to XFS_TEST_ERROR Andrey Albershteyn
2025-12-05 15:04 ` [PATCH v2 32/33] xfs: improve default maximum number of open zones Andrey Albershteyn
2025-12-05 15:04 ` [PATCH v2 33/33] xfs: prevent gc from picking the same zone twice Andrey Albershteyn
2025-12-08  6:49 ` [PATCH v2 0/34] xfsprogs: libxfs sync v6.18 Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox