Linux/linux 4ce9d18. MAINTAINERS, Documentation/filesystems xfs-self-describing-metadata.txt

Merge tag 'xfs-5.3-merge-12' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux

Pull xfs updates from Darrick Wong:
 "In this release there are a significant amounts of consolidations and
  cleanups in the log code; restructuring of the log to issue struct
  bios directly; new bulkstat ioctls to return v5 fs inode information
  (and fix all the padding problems of the old ioctl); the beginnings of
  multithreaded inode walks (e.g. quotacheck); and a reduction in memory
  usage in the online scrub code leading to reduced runtimes.

   - Refactor inode geometry calculation into a single structure instead
     of open-coding pieces everywhere.

   - Add online repair to build options.

   - Remove unnecessary function call flags and functions.

   - Claim maintainership of various loose xfs documentation and header
     files.

   - Use struct bio directly for log buffer IOs instead of struct
     xfs_buf.

   - Reduce log item boilerplate code requirements.

   - Merge log item code spread across too many files.

   - Further distinguish between log item commits and cancellations.

   - Various small cleanups to the ag small allocator.

   - Support cgroup-aware writeback

   - libxfs refactoring for mkfs cleanup

   - Remove unneeded #includes

   - Fix a memory allocation miscalculation in the new log bio code

   - Fix bisection problems

   - Fix a crash in ioend processing caused by tripping over freeing of
     preallocated transactions

   - Split out a generic inode walk mechanism from the bulkstat code,
     hook up all the internal users to use the walking code, then clean
     up bulkstat to serve only the bulkstat ioctls.

   - Add a multithreaded iwalk implementation to speed up quotacheck on
     fast storage with many CPUs.

   - Remove unnecessary return values in logging teardown functions.

   - Supplement the bstat and inogrp structures with new bulkstat and
     inumbers structures that have all the fields we need for v5
     filesystem features and none of the padding problems of their
     predecessors.

   - Wire up new ioctls that use the new structures with a much simpler
     bulk_ireq structure at the head instead of the pointerhappy mess we
     had before.

   - Enable userspace to constrain bulkstat returns to a single AG or a
     single special inode so that we can phase out a lot of geometry
     guesswork in userspace.

   - Reduce memory consumption and zeroing overhead in extended
     attribute scrub code.

   - Fix some behavioral regressions in the new bulkstat backend code.

   - Fix some behavioral regressions in the new log bio code"

* tag 'xfs-5.3-merge-12' of git://git.kernel.org/pub/scm/fs/xfs/xfs-linux: (100 commits)
  xfs: chain bios the right way around in xfs_rw_bdev
  xfs: bump INUMBERS cursor correctly in xfs_inumbers_walk
  xfs: don't update lastino for FSBULKSTAT_SINGLE
  xfs: online scrub needn't bother zeroing its temporary buffer
  xfs: only allocate memory for scrubbing attributes when we need it
  xfs: refactor attr scrub memory allocation function
  xfs: refactor extended attribute buffer pointer functions
  xfs: attribute scrub should use seen_enough to pass error values
  xfs: allow single bulkstat of special inodes
  xfs: specify AG in bulk req
  xfs: wire up the v5 inumbers ioctl
  xfs: wire up new v5 bulkstat ioctls
  xfs: introduce v5 inode group structure
  xfs: introduce new v5 bulkstat structure
  xfs: rename bulkstat functions
  xfs: remove various bulk request typedef usage
  fs: xfs: xfs_log: Change return type from int to void
  xfs: poll waiting for quotacheck
  xfs: multithreaded iwalk implementation
  xfs: refactor INUMBERS to use iwalk functions
  ...
DeltaFile
+255-500fs/xfs/xfs_itable.c
+720-0fs/xfs/xfs_iwalk.c
+266-376fs/xfs/xfs_log.c
+190-277fs/xfs/xfs_log_recover.c
+266-158fs/xfs/xfs_extfree_item.c
+241-155fs/xfs/xfs_rmap_item.c
+219-154fs/xfs/xfs_refcount_item.c
+211-155fs/xfs/xfs_bmap_item.c
+261-33fs/xfs/xfs_ioctl.c
+0-286fs/xfs/xfs_trans_extfree.c
+0-257fs/xfs/xfs_trans_rmap.c
+163-82fs/xfs/libxfs/xfs_ialloc.c
+0-240fs/xfs/xfs_trans_refcount.c
+0-232fs/xfs/xfs_trans_bmap.c
+109-118fs/xfs/libxfs/xfs_alloc.c
+24-147fs/xfs/xfs_buf.c
+81-82fs/xfs/xfs_ioctl32.c
+136-0fs/xfs/xfs_pwork.c
+114-10fs/xfs/libxfs/xfs_fs.h
+91-31fs/xfs/scrub/attr.c
+65-56fs/xfs/xfs_aops.c
+6-112fs/xfs/xfs_dquot_item.c
+39-67fs/xfs/xfs_itable.h
+88-16fs/xfs/libxfs/xfs_ag.c
+6-96fs/xfs/xfs_mount.c
+4-71fs/xfs/xfs_icreate_item.c
+71-0fs/xfs/scrub/attr.h
+18-52fs/xfs/xfs_trans.h
+21-47fs/xfs/xfs_qm.c
+61-0fs/xfs/xfs_bio_io.c
+60-1fs/xfs/xfs_trace.h
+61-0fs/xfs/xfs_pwork.h
+42-14fs/xfs/libxfs/xfs_ialloc_btree.c
+31-22fs/xfs/xfs_trans_ail.c
+7-46fs/xfs/xfs_buf.h
+35-16fs/xfs/xfs_log_cil.c
+48-1fs/xfs/libxfs/xfs_shared.h
+19-30fs/xfs/libxfs/xfs_btree.c
+46-0fs/xfs/xfs_iwalk.h
+25-18fs/xfs/xfs_trans.c
+40-2fs/xfs/xfs_sysfs.c
+18-24fs/xfs/xfs_inode.c
+18-22fs/xfs/xfs_buf_item.c
+10-29fs/xfs/libxfs/xfs_sb.c
+18-18fs/xfs/xfs_log_priv.h
+6-26fs/xfs/xfs_super.c
+11-17fs/xfs/scrub/ialloc.c
+15-8fs/xfs/xfs_file.c
+4-18fs/xfs/xfs_mount.h
+0-20fs/xfs/scrub/scrub.c
+7-12fs/xfs/libxfs/xfs_bmap.c
+1-17fs/xfs/libxfs/xfs_ialloc.h
+4-13fs/xfs/xfs_log.h
+8-9fs/xfs/libxfs/xfs_trans_resv.c
+7-9fs/xfs/xfs_inode_item.c
+6-9fs/xfs/libxfs/xfs_attr_leaf.c
+2-13fs/xfs/xfs_reflink.c
+5-9fs/xfs/libxfs/xfs_btree.h
+7-7fs/xfs/xfs_ioctl32.h
+5-9fs/xfs/libxfs/xfs_dir2_data.c
+3-11fs/xfs/libxfs/xfs_attr_remote.c
+14-0fs/xfs/xfs_super.h
+3-11fs/xfs/scrub/repair.c
+2-11fs/xfs/libxfs/xfs_types.c
+1-12fs/xfs/scrub/quota.c
+0-12fs/xfs/scrub/fscounters.c
+3-9fs/xfs/libxfs/xfs_da_btree.c
+4-7fs/xfs/libxfs/xfs_dir2_block.c
+4-7fs/xfs/xfs_trans_buf.c
+0-11fs/xfs/xfs_trans_dquot.c
+4-7fs/xfs/libxfs/xfs_dir2_leaf.c
+2-9fs/xfs/scrub/agheader.c
+3-8fs/xfs/xfs_bmap_util.c
+0-10fs/xfs/scrub/inode.c
+4-6fs/xfs/libxfs/xfs_dir2_node.c
+4-6fs/xfs/libxfs/xfs_dquot_buf.c
+3-7fs/xfs/libxfs/xfs_symlink_remote.c
+0-10fs/xfs/scrub/dir.c
+0-10fs/xfs/scrub/refcount.c
+0-10fs/xfs/xfs_iops.c
+1-8fs/xfs/xfs_pnfs.c
+0-9fs/xfs/scrub/rmap.c
+0-9fs/xfs/xfs_symlink.c
+4-5fs/xfs/Makefile
+2-7fs/xfs/libxfs/xfs_inode_buf.c
+0-8fs/xfs/scrub/bmap.c
+0-8fs/xfs/xfs_trace.c
+0-8fs/xfs/scrub/parent.c
+0-8fs/xfs/scrub/health.c
+0-8fs/xfs/scrub/dabtree.c
+0-8fs/xfs/libxfs/xfs_ag_resv.c
+0-8fs/xfs/scrub/common.c
+8-0fs/xfs/xfs_ioctl.h
+0-8fs/xfs/libxfs/xfs_rtbitmap.c
+0-8fs/xfs/scrub/symlink.c
+2-6fs/xfs/xfs_fsops.c
+4-4Documentation/filesystems/xfs-self-describing-metadata.txt
+7-1fs/xfs/libxfs/xfs_attr.h
+8-0fs/xfs/kmem.h
+0-7fs/xfs/scrub/alloc.c
+4-3fs/xfs/libxfs/xfs_trans_space.h
+1-6fs/xfs/xfs_attr_list.c
+0-7fs/xfs/scrub/rtbitmap.c
+0-7fs/xfs/scrub/btree.c
+1-6fs/xfs/xfs_attr_inactive.c
+0-7fs/xfs/libxfs/xfs_rmap.c
+6-0MAINTAINERS
+0-6fs/xfs/scrub/trace.c
+3-3fs/xfs/xfs_buf_item.h
+1-5fs/xfs/xfs_dquot.c
+2-4fs/xfs/xfs_extfree_item.h
+1-5fs/xfs/xfs_health.c
+1-5fs/xfs/libxfs/xfs_rmap_btree.c
+1-5fs/xfs/libxfs/xfs_iext_tree.c
+1-5fs/xfs/libxfs/xfs_dir2.c
+0-6fs/xfs/xfs_rtalloc.c
+1-4fs/xfs/xfs_xattr.c
+1-4fs/xfs/xfs_filestream.c
+3-2fs/xfs/xfs_linux.h
+0-5fs/xfs/xfs_qm_syscalls.c
+1-4fs/xfs/libxfs/xfs_dir2_sf.c
+5-0fs/xfs/xfs_ondisk.h
+1-4fs/xfs/libxfs/xfs_bmap_btree.c
+1-4fs/xfs/xfs_dir2_readdir.c
+0-5fs/xfs/libxfs/xfs_attr.c
+0-5fs/xfs/kmem.c
+1-4fs/xfs/xfs_iomap.c
+0-5fs/xfs/scrub/agheader_repair.c
+0-5fs/xfs/scrub/bitmap.c
+3-1fs/xfs/xfs_globals.c
+1-3fs/xfs/libxfs/xfs_inode_fork.c
+1-3fs/xfs/libxfs/xfs_refcount_btree.c
+1-3fs/xfs/xfs_acl.c
+1-3fs/xfs/xfs_discard.c
+2-2fs/xfs/xfs_dquot_item.h
+1-3fs/xfs/xfs_export.c
+0-4fs/xfs/xfs_fsmap.c
+1-3fs/xfs/xfs_icache.c
+1-3fs/xfs/xfs_trans_priv.h
+0-3fs/xfs/libxfs/xfs_da_format.c
+0-3fs/xfs/xfs_trans_inode.c
+1-2fs/xfs/xfs_quotaops.c
+0-3fs/xfs/xfs_sysctl.c
+3-0fs/xfs/libxfs/xfs_ialloc_btree.h
+3-0fs/xfs/xfs_sysctl.h
+2-1fs/xfs/xfs_error.c
+1-2fs/xfs/libxfs/xfs_alloc_btree.c
+1-1fs/xfs/libxfs/xfs_format.h
+0-2fs/xfs/libxfs/xfs_defer.c
+0-2fs/xfs/xfs_rmap_item.h
+1-1fs/xfs/xfs_qm_bhv.c
+1-1fs/xfs/xfs_message.c
+1-1fs/xfs/xfs_inode_item.h
+0-2fs/xfs/xfs_bmap_item.h
+0-2fs/xfs/libxfs/xfs_refcount.c
+0-2fs/xfs/libxfs/xfs_log_rlimit.c
+1-1fs/xfs/libxfs/xfs_health.h
+0-2fs/xfs/xfs_refcount_item.h
+0-1fs/xfs/xfs_dquot.h
+0-1fs/xfs/xfs_stats.c
+0-1fs/xfs/libxfs/xfs_bit.c
+0-1fs/xfs/xfs_aops.h
+4,445-4,745162 files

UnifiedSplitRaw