Hi folks, The xfsprogs for-next branch in repository at: git://git.kernel.org/pub/scm/fs/xfs/xfsprogs-dev.git has just been updated. Patches often get missed, so if your outstanding patches are properly reviewed on the list and not included in this update, please let me know. The for-next branch has also been updated to match the state of master. The new head of the for-next branch is commit: 854665693e6770c0730c1354871f08d01be6a333 New commits: Darrick J. Wong (11): [1705e1fabf77] xfs: add helpers to compute transaction reservation for finishing intent items [4c6a63fdb9d4] libxfs: add helpers to compute log item overhead [1ba98d1f4fd9] xfs: allow sysadmins to specify a maximum atomic write limit at mount time [fe8cfecb916f] libfrog: move statx.h from io/ to libfrog/ [b5b477a38244] xfs_db: create an untorn_max subcommand [55b28badd9c1] xfs_io: dump new atomic_write_unit_max_opt statx field [875e57e81ce4] mkfs: don't complain about overly large auto-detected log stripe units [5015906cf669] mkfs: autodetect log stripe unit for external log devices [b245cf325293] mkfs: try to align AG size based on atomic write capabilities [3423827c2ed3] mkfs: allow users to configure the desired maximum atomic write size [854665693e67] xfs_scrub: remove EXPERIMENTAL warnings John Garry (3): [5049ea2e832a] xfs: allow block allocator to take an alignment hint [8ccf3002f5f7] xfs: commit CoW-based atomic writes atomically [9ae045b77d88] xfs: add xfs_calc_atomic_write_unit_max() Code Diffstat: db/logformat.c | 129 ++++++++++++++++++ include/bitops.h | 12 ++ include/libxfs.h | 1 + include/platform_defs.h | 14 ++ include/xfs_trace.h | 3 + io/stat.c | 21 +-- libfrog/Makefile | 1 + {io => libfrog}/statx.h | 23 +++- libxfs/defer_item.c | 51 +++++++ libxfs/defer_item.h | 14 ++ libxfs/libxfs_api_defs.h | 5 + libxfs/topology.c | 36 +++++ libxfs/topology.h | 6 +- libxfs/xfs_bmap.c | 5 + libxfs/xfs_bmap.h | 6 +- libxfs/xfs_log_rlimit.c | 4 + libxfs/xfs_trans_resv.c | 339 ++++++++++++++++++++++++++++++++++++++++++----- libxfs/xfs_trans_resv.h | 25 ++++ m4/package_libcdev.m4 | 2 +- man/man8/mkfs.xfs.8.in | 7 + man/man8/xfs_db.8 | 10 ++ man/man8/xfs_scrub.8 | 6 - mkfs/xfs_mkfs.c | 251 +++++++++++++++++++++++++++++++++-- scrub/xfs_scrub.c | 3 - 24 files changed, 903 insertions(+), 71 deletions(-) rename {io => libfrog}/statx.h (94%) -- - Andrey