Hi all, Now that large atomic writes has been queued up, here's a series of tests for this new feature. The first few patches make various adjustments to the existing single block atomic writes test, as well as setup for additional testing. The last patch adds several new tests for large atomic writes with actual and simulated hardware. This series is based on for-next at the time of sending. Comments and feedback appreciated! Darrick J. Wong (6): generic/765: fix a few issues generic/765: adjust various things generic/765: move common atomic write code to a library file common/atomicwrites: adjust a few more things common/atomicwrites: fix _require_scratch_write_atomic generic: various atomic write tests with scsi_debug common/atomicwrites | 127 +++++++++++++++++++++++++++++++++++++ common/rc | 49 +-------------- doc/group-names.txt | 1 + tests/generic/1222 | 86 +++++++++++++++++++++++++ tests/generic/1222.out | 10 +++ tests/generic/1223 | 66 +++++++++++++++++++ tests/generic/1223.out | 9 +++ tests/generic/1224 | 140 +++++++++++++++++++++++++++++++++++++++++ tests/generic/1224.out | 17 +++++ tests/generic/1225 | 51 +++++++++++++++ tests/generic/1225.out | 1 + tests/generic/765 | 84 +++++++++---------------- tests/xfs/1216 | 68 ++++++++++++++++++++ tests/xfs/1216.out | 9 +++ tests/xfs/1217 | 70 +++++++++++++++++++++ tests/xfs/1217.out | 3 + tests/xfs/1218 | 59 +++++++++++++++++ tests/xfs/1218.out | 15 +++++ 18 files changed, 763 insertions(+), 102 deletions(-) create mode 100644 common/atomicwrites create mode 100755 tests/generic/1222 create mode 100644 tests/generic/1222.out create mode 100755 tests/generic/1223 create mode 100644 tests/generic/1223.out create mode 100644 tests/generic/1224 create mode 100644 tests/generic/1224.out create mode 100644 tests/generic/1225 create mode 100644 tests/generic/1225.out create mode 100755 tests/xfs/1216 create mode 100644 tests/xfs/1216.out create mode 100755 tests/xfs/1217 create mode 100644 tests/xfs/1217.out create mode 100644 tests/xfs/1218 create mode 100644 tests/xfs/1218.out -- 2.34.1