From: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
To: linux-block@vger.kernel.org
Cc: Alan Adamson <alan.adamson@oracle.com>,
John Garry <john.g.garry@oracle.com>,
Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
Subject: [PATCH blktests v4] md/002: add atomic write tests for md/stacked devices
Date: Fri, 11 Jul 2025 18:57:34 +0900 [thread overview]
Message-ID: <20250711095734.159020-1-shinichiro.kawasaki@wdc.com> (raw)
From: Alan Adamson <alan.adamson@oracle.com>
Add a new test (md/002) to verify atomic write support for MD devices
(RAID 0, 1, and 10) stacked on top of SCSI devices using scsi_debug with
atomic write emulation enabled.
This test validates that atomic write sysfs attributes are correctly
propagated through MD layers, and that pwritev2() with RWF_ATOMIC
behaves as expected on these devices.
Specifically, the test checks:
- That atomic write attributes in /sys/block/.../queue are consistent
between MD and underlying SCSI devices
- That atomic write limits are respected in user-space via xfs_io
- That statx reports accurate atomic_write_unit_{min,max} values
- That invalid writes (too small or too large) fail as expected
- That chunk size affects max atomic write limits (for RAID 0/10)
Signed-off-by: Alan Adamson <alan.adamson@oracle.com>
Reviewed-by: John Garry <john.g.garry@oracle.com>
Signed-off-by: Shin'ichiro Kawasaki <shinichiro.kawasaki@wdc.com>
---
This is the repost of the patch authored by Alan [1].
[1] https://lore.kernel.org/linux-block/20250605225725.3352708-1-alan.adamson@oracle.com/
Changes from v1:
* Replaced spaces for indent with tabs
* Removed unnecessary group_requires() call
Changes from v2:
* Added test for md_sysfs_atomic_unit_max_bytes divisible into md_chunk_size
* Added a Reviewed-by tag
Changes from v3:
* Fixed md_chunk_size unit by introducing md_chunk_size_bytes
tests/md/002 | 247 +++++++++++++++++++++++++++++++++++++++++++++++
tests/md/002.out | 43 +++++++++
2 files changed, 290 insertions(+)
create mode 100755 tests/md/002
create mode 100644 tests/md/002.out
diff --git a/tests/md/002 b/tests/md/002
new file mode 100755
index 0000000..c9d15ce
--- /dev/null
+++ b/tests/md/002
@@ -0,0 +1,247 @@
+#!/bin/bash
+# SPDX-License-Identifier: GPL-3.0+
+# Copyright (C) 2025 Oracle and/or its affiliates
+#
+# Test SCSI Atomic Writes with MD devices
+
+. tests/scsi/rc
+. common/scsi_debug
+. common/xfs
+
+DESCRIPTION="test md atomic writes"
+QUICK=1
+
+requires() {
+ _have_kver 6 14 0
+ _have_program mdadm
+ _have_driver scsi_debug
+ _have_xfs_io_atomic_write
+}
+
+test() {
+ local scsi_debug_atomic_wr_max_length
+ local scsi_debug_atomic_wr_gran
+ local scsi_sysfs_atomic_max_bytes
+ local scsi_sysfs_atomic_unit_max_bytes
+ local scsi_sysfs_atomic_unit_min_bytes
+ local md_atomic_max_bytes
+ local md_atomic_min_bytes
+ local md_sysfs_max_hw_sectors_kb
+ local md_max_hw_bytes
+ local md_chunk_size
+ local md_chunk_size_bytes
+ local md_sysfs_logical_block_size
+ local md_sysfs_atomic_max_bytes
+ local md_sysfs_atomic_unit_max_bytes
+ local md_sysfs_atomic_unit_min_bytes
+ local bytes_to_write
+ local bytes_written
+ local test_desc
+ local scsi_0
+ local scsi_1
+ local scsi_2
+ local scsi_3
+ local scsi_dev_sysfs
+ local md_dev
+ local md_dev_sysfs
+ local scsi_debug_params=(
+ delay=0
+ atomic_wr=1
+ num_tgts=1
+ add_host=4
+ per_host_store=true
+ )
+
+ echo "Running ${TEST_NAME}"
+
+ if ! _configure_scsi_debug "${scsi_debug_params[@]}"; then
+ return 1
+ fi
+
+ scsi_0="${SCSI_DEBUG_DEVICES[0]}"
+ scsi_1="${SCSI_DEBUG_DEVICES[1]}"
+ scsi_2="${SCSI_DEBUG_DEVICES[2]}"
+ scsi_3="${SCSI_DEBUG_DEVICES[3]}"
+
+ scsi_dev_sysfs="/sys/block/${scsi_0}"
+ scsi_sysfs_atomic_max_bytes=$(< "${scsi_dev_sysfs}"/queue/atomic_write_max_bytes)
+ scsi_sysfs_atomic_unit_max_bytes=$(< "${scsi_dev_sysfs}"/queue/atomic_write_unit_max_bytes)
+ scsi_sysfs_atomic_unit_min_bytes=$(< "${scsi_dev_sysfs}"/queue/atomic_write_unit_min_bytes)
+ scsi_debug_atomic_wr_max_length=$(< /sys/module/scsi_debug/parameters/atomic_wr_max_length)
+ scsi_debug_atomic_wr_gran=$(< /sys/module/scsi_debug/parameters/atomic_wr_gran)
+
+ for raid_level in 0 1 10; do
+ if [ "$raid_level" = 10 ]
+ then
+ echo y | mdadm --create /dev/md/blktests_md --level=$raid_level \
+ --raid-devices=4 --force /dev/"${scsi_0}" /dev/"${scsi_1}" \
+ /dev/"${scsi_2}" /dev/"${scsi_3}" 2> /dev/null 1>&2
+ else
+ echo y | mdadm --create /dev/md/blktests_md --level=$raid_level \
+ --raid-devices=2 --force \
+ /dev/"${scsi_0}" /dev/"${scsi_1}" 2> /dev/null 1>&2
+ fi
+
+ md_dev=$(readlink /dev/md/blktests_md | sed 's|\.\./||')
+ md_dev_sysfs="/sys/devices/virtual/block/${md_dev}"
+
+ md_sysfs_logical_block_size=$(< "${md_dev_sysfs}"/queue/logical_block_size)
+ md_sysfs_max_hw_sectors_kb=$(< "${md_dev_sysfs}"/queue/max_hw_sectors_kb)
+ md_max_hw_bytes=$(( "$md_sysfs_max_hw_sectors_kb" * 1024 ))
+ md_sysfs_atomic_max_bytes=$(< "${md_dev_sysfs}"/queue/atomic_write_max_bytes)
+ md_sysfs_atomic_unit_max_bytes=$(< "${md_dev_sysfs}"/queue/atomic_write_unit_max_bytes)
+ md_sysfs_atomic_unit_min_bytes=$(< "${md_dev_sysfs}"/queue/atomic_write_unit_min_bytes)
+ md_atomic_max_bytes=$(( "$scsi_debug_atomic_wr_max_length" * "$md_sysfs_logical_block_size" ))
+ md_atomic_min_bytes=$(( "$scsi_debug_atomic_wr_gran" * "$md_sysfs_logical_block_size" ))
+
+ test_desc="TEST 1 RAID $raid_level - Verify md sysfs atomic attributes matches scsi"
+ if [ "$md_sysfs_atomic_unit_max_bytes" = "$scsi_sysfs_atomic_unit_max_bytes" ] &&
+ [ "$md_sysfs_atomic_unit_min_bytes" = "$scsi_sysfs_atomic_unit_min_bytes" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $md_sysfs_atomic_unit_max_bytes - $scsi_sysfs_atomic_unit_max_bytes -" \
+ "$md_sysfs_atomic_unit_min_bytes - $scsi_sysfs_atomic_unit_min_bytes "
+ fi
+
+ test_desc="TEST 2 RAID $raid_level - Verify sysfs atomic attributes"
+ if [ "$md_max_hw_bytes" -ge "$md_sysfs_atomic_max_bytes" ] &&
+ [ "$md_sysfs_atomic_max_bytes" -ge "$md_sysfs_atomic_unit_max_bytes" ] &&
+ [ "$md_sysfs_atomic_unit_max_bytes" -ge "$md_sysfs_atomic_unit_min_bytes" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $md_max_hw_bytes - $md_sysfs_max_hw_sectors_kb -" \
+ "$md_sysfs_atomic_max_bytes - $md_sysfs_atomic_unit_max_bytes -" \
+ "$md_sysfs_atomic_unit_min_bytes"
+ fi
+
+ test_desc="TEST 3 RAID $raid_level - Verify md sysfs_atomic_max_bytes is less than or equal "
+ test_desc+="scsi sysfs_atomic_max_bytes"
+ if [ "$md_sysfs_atomic_max_bytes" -le "$scsi_sysfs_atomic_max_bytes" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $md_sysfs_atomic_max_bytes - $scsi_sysfs_atomic_max_bytes"
+ fi
+
+ test_desc="TEST 4 RAID $raid_level - check sysfs atomic_write_unit_max_bytes <= scsi_debug atomic_wr_max_length"
+ if (("$md_sysfs_atomic_unit_max_bytes" <= "$md_atomic_max_bytes"))
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $md_sysfs_atomic_unit_max_bytes - $md_atomic_max_bytes"
+ fi
+
+ test_desc="TEST 5 RAID $raid_level - check sysfs atomic_write_unit_min_bytes = scsi_debug atomic_wr_gran"
+ if [ "$md_sysfs_atomic_unit_min_bytes" = "$md_atomic_min_bytes" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $md_sysfs_atomic_unit_min_bytes - $md_atomic_min_bytes"
+ fi
+
+ test_desc="TEST 6 RAID $raid_level - check statx stx_atomic_write_unit_min"
+ statx_atomic_min=$(run_xfs_io_xstat /dev/"$md_dev" "stat.atomic_write_unit_min")
+ if [ "$statx_atomic_min" = "$md_atomic_min_bytes" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $statx_atomic_min - $md_atomic_min_bytes"
+ fi
+
+ test_desc="TEST 7 RAID $raid_level - check statx stx_atomic_write_unit_max"
+ statx_atomic_max=$(run_xfs_io_xstat /dev/"$md_dev" "stat.atomic_write_unit_max")
+ if [ "$statx_atomic_max" = "$md_sysfs_atomic_unit_max_bytes" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $statx_atomic_max - $md_sysfs_atomic_unit_max_bytes"
+ fi
+
+ test_desc="TEST 8 RAID $raid_level - perform a pwritev2 with size of sysfs_atomic_unit_max_bytes with "
+ test_desc+="RWF_ATOMIC flag - pwritev2 should be succesful"
+ bytes_written=$(run_xfs_io_pwritev2_atomic /dev/"$md_dev" "$md_sysfs_atomic_unit_max_bytes")
+ if [ "$bytes_written" = "$md_sysfs_atomic_unit_max_bytes" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $bytes_written - $md_sysfs_atomic_unit_max_bytes"
+ fi
+
+ test_desc="TEST 9 RAID $raid_level - perform a pwritev2 with size of sysfs_atomic_unit_max_bytes + 512 "
+ test_desc+="bytes with RWF_ATOMIC flag - pwritev2 should not be succesful"
+ bytes_to_write=$(( "${md_sysfs_atomic_unit_max_bytes}" + 512 ))
+ bytes_written=$(run_xfs_io_pwritev2_atomic /dev/"$md_dev" "$bytes_to_write")
+ if [ "$bytes_written" = "" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $bytes_written - $bytes_to_write"
+ fi
+
+ test_desc="TEST 10 RAID $raid_level - perform a pwritev2 with size of sysfs_atomic_unit_min_bytes "
+ test_desc+="with RWF_ATOMIC flag - pwritev2 should be succesful"
+ bytes_written=$(run_xfs_io_pwritev2_atomic /dev/"$md_dev" "$md_sysfs_atomic_unit_min_bytes")
+ if [ "$bytes_written" = "$md_sysfs_atomic_unit_min_bytes" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $bytes_written - $md_atomic_min_bytes"
+ fi
+
+ bytes_to_write=$(( "${md_sysfs_atomic_unit_min_bytes}" - "${md_sysfs_logical_block_size}" ))
+ test_desc="TEST 11 RAID $raid_level - perform a pwritev2 with a size of sysfs_atomic_unit_min_bytes - 512 "
+ test_desc+="bytes with RWF_ATOMIC flag - pwritev2 should fail"
+ if [ "$bytes_to_write" = 0 ]
+ then
+ echo "$test_desc - pass"
+ else
+ bytes_written=$(run_xfs_io_pwritev2_atomic /dev/"$md_dev" "$bytes_to_write")
+ if [ "$bytes_written" = "" ]
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $bytes_written - $bytes_to_write"
+ fi
+ fi
+
+ mdadm --stop /dev/md/blktests_md 2> /dev/null 1>&2
+
+ if [ "$raid_level" = 0 ] || [ "$raid_level" = 10 ]
+ then
+ md_chunk_size=$(( "$scsi_sysfs_atomic_unit_max_bytes" / 2048))
+
+ if [ "$raid_level" = 0 ]
+ then
+ echo y | mdadm --create /dev/md/blktests_md --level=$raid_level \
+ --raid-devices=2 --chunk="${md_chunk_size}"K --force \
+ /dev/"${scsi_0}" /dev/"${scsi_1}" 2> /dev/null 1>&2
+ else
+ echo y | mdadm --create /dev/md/blktests_md --level=$raid_level \
+ --raid-devices=4 --chunk="${md_chunk_size}"K --force \
+ /dev/"${scsi_0}" /dev/"${scsi_1}" \
+ /dev/"${scsi_2}" /dev/"${scsi_3}" 2> /dev/null 1>&2
+ fi
+
+ md_dev=$(readlink /dev/md/blktests_md | sed 's|\.\./||')
+ md_dev_sysfs="/sys/devices/virtual/block/${md_dev}"
+ md_sysfs_atomic_unit_max_bytes=$(< "${md_dev_sysfs}"/queue/atomic_write_unit_max_bytes)
+ md_chunk_size_bytes=$(( "$md_chunk_size" * 1024))
+ test_desc="TEST 12 RAID $raid_level - Verify chunk size "
+ if [ "$md_chunk_size_bytes" -le "$md_sysfs_atomic_unit_max_bytes" ] && \
+ (( md_sysfs_atomic_unit_max_bytes % md_chunk_size_bytes == 0 ))
+ then
+ echo "$test_desc - pass"
+ else
+ echo "$test_desc - fail $md_chunk_size_bytes - $md_sysfs_atomic_unit_max_bytes"
+ fi
+
+ mdadm --quiet --stop /dev/md/blktests_md
+ fi
+ done
+
+ _exit_scsi_debug
+
+ echo "Test complete"
+}
diff --git a/tests/md/002.out b/tests/md/002.out
new file mode 100644
index 0000000..6b0a431
--- /dev/null
+++ b/tests/md/002.out
@@ -0,0 +1,43 @@
+Running md/002
+TEST 1 RAID 0 - Verify md sysfs atomic attributes matches scsi - pass
+TEST 2 RAID 0 - Verify sysfs atomic attributes - pass
+TEST 3 RAID 0 - Verify md sysfs_atomic_max_bytes is less than or equal scsi sysfs_atomic_max_bytes - pass
+TEST 4 RAID 0 - check sysfs atomic_write_unit_max_bytes <= scsi_debug atomic_wr_max_length - pass
+TEST 5 RAID 0 - check sysfs atomic_write_unit_min_bytes = scsi_debug atomic_wr_gran - pass
+TEST 6 RAID 0 - check statx stx_atomic_write_unit_min - pass
+TEST 7 RAID 0 - check statx stx_atomic_write_unit_max - pass
+TEST 8 RAID 0 - perform a pwritev2 with size of sysfs_atomic_unit_max_bytes with RWF_ATOMIC flag - pwritev2 should be succesful - pass
+pwrite: Invalid argument
+TEST 9 RAID 0 - perform a pwritev2 with size of sysfs_atomic_unit_max_bytes + 512 bytes with RWF_ATOMIC flag - pwritev2 should not be succesful - pass
+TEST 10 RAID 0 - perform a pwritev2 with size of sysfs_atomic_unit_min_bytes with RWF_ATOMIC flag - pwritev2 should be succesful - pass
+pwrite: Invalid argument
+TEST 11 RAID 0 - perform a pwritev2 with a size of sysfs_atomic_unit_min_bytes - 512 bytes with RWF_ATOMIC flag - pwritev2 should fail - pass
+TEST 12 RAID 0 - Verify chunk size - pass
+TEST 1 RAID 1 - Verify md sysfs atomic attributes matches scsi - pass
+TEST 2 RAID 1 - Verify sysfs atomic attributes - pass
+TEST 3 RAID 1 - Verify md sysfs_atomic_max_bytes is less than or equal scsi sysfs_atomic_max_bytes - pass
+TEST 4 RAID 1 - check sysfs atomic_write_unit_max_bytes <= scsi_debug atomic_wr_max_length - pass
+TEST 5 RAID 1 - check sysfs atomic_write_unit_min_bytes = scsi_debug atomic_wr_gran - pass
+TEST 6 RAID 1 - check statx stx_atomic_write_unit_min - pass
+TEST 7 RAID 1 - check statx stx_atomic_write_unit_max - pass
+TEST 8 RAID 1 - perform a pwritev2 with size of sysfs_atomic_unit_max_bytes with RWF_ATOMIC flag - pwritev2 should be succesful - pass
+pwrite: Invalid argument
+TEST 9 RAID 1 - perform a pwritev2 with size of sysfs_atomic_unit_max_bytes + 512 bytes with RWF_ATOMIC flag - pwritev2 should not be succesful - pass
+TEST 10 RAID 1 - perform a pwritev2 with size of sysfs_atomic_unit_min_bytes with RWF_ATOMIC flag - pwritev2 should be succesful - pass
+pwrite: Invalid argument
+TEST 11 RAID 1 - perform a pwritev2 with a size of sysfs_atomic_unit_min_bytes - 512 bytes with RWF_ATOMIC flag - pwritev2 should fail - pass
+TEST 1 RAID 10 - Verify md sysfs atomic attributes matches scsi - pass
+TEST 2 RAID 10 - Verify sysfs atomic attributes - pass
+TEST 3 RAID 10 - Verify md sysfs_atomic_max_bytes is less than or equal scsi sysfs_atomic_max_bytes - pass
+TEST 4 RAID 10 - check sysfs atomic_write_unit_max_bytes <= scsi_debug atomic_wr_max_length - pass
+TEST 5 RAID 10 - check sysfs atomic_write_unit_min_bytes = scsi_debug atomic_wr_gran - pass
+TEST 6 RAID 10 - check statx stx_atomic_write_unit_min - pass
+TEST 7 RAID 10 - check statx stx_atomic_write_unit_max - pass
+TEST 8 RAID 10 - perform a pwritev2 with size of sysfs_atomic_unit_max_bytes with RWF_ATOMIC flag - pwritev2 should be succesful - pass
+pwrite: Invalid argument
+TEST 9 RAID 10 - perform a pwritev2 with size of sysfs_atomic_unit_max_bytes + 512 bytes with RWF_ATOMIC flag - pwritev2 should not be succesful - pass
+TEST 10 RAID 10 - perform a pwritev2 with size of sysfs_atomic_unit_min_bytes with RWF_ATOMIC flag - pwritev2 should be succesful - pass
+pwrite: Invalid argument
+TEST 11 RAID 10 - perform a pwritev2 with a size of sysfs_atomic_unit_min_bytes - 512 bytes with RWF_ATOMIC flag - pwritev2 should fail - pass
+TEST 12 RAID 10 - Verify chunk size - pass
+Test complete
--
2.50.0
next reply other threads:[~2025-07-11 9:57 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-11 9:57 Shin'ichiro Kawasaki [this message]
2025-07-11 17:19 ` [PATCH blktests v4] md/002: add atomic write tests for md/stacked devices alan.adamson
2025-07-17 7:26 ` Shinichiro Kawasaki
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20250711095734.159020-1-shinichiro.kawasaki@wdc.com \
--to=shinichiro.kawasaki@wdc.com \
--cc=alan.adamson@oracle.com \
--cc=john.g.garry@oracle.com \
--cc=linux-block@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).