Skip to content

Commit

Permalink
nvme/039: check for logical block size of test device
Browse files Browse the repository at this point in the history
This test has hard-coded 512 byte values for the dd commands, which
will fail on 4096-byte block devices.  Create an LB_SZ global
variable that is populated with the result of the command
"blockdev --getss <dev>", and use that result for the block size
of the write commands.

Also use this variable for the "--data-len" command of the "nvme
admin-passthru" and "nvme io-passthru" tests.  (On a test with a
4096-byte namespace, leaving these with the hardcoded values still
passed, but update them for the sake of consistency.)

Signed-off-by: Bryan Gurney <[email protected]>
Reviewed-by: Alan Adamson <[email protected]>
Tested-by: Alan Adamson <[email protected]>
Reviewed-by: Chaitanya Kulkarni <[email protected]>
Signed-off-by: Shin'ichiro Kawasaki <[email protected]>
  • Loading branch information
bgurney-rh authored and kawasaki committed Nov 27, 2024
1 parent 83781f2 commit e8f3e50
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions tests/nvme/039
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ inject_unrec_read_on_read()
# Inject a 'Unrecovered Read Error' (0x281) status error on a READ
_nvme_enable_err_inject "$1" 0 100 1 0x281 1

dd if=/dev/"$1" of=/dev/null bs=512 count=1 iflag=direct \
dd if=/dev/"$1" of=/dev/null bs="${LB_SZ}" count=1 iflag=direct \
2> /dev/null 1>&2

_nvme_disable_err_inject "$1"
Expand All @@ -57,7 +57,7 @@ inject_invalid_status_on_read()
# Inject an invalid status (0x375) on a READ
_nvme_enable_err_inject "$1" 0 100 1 0x375 1

dd if=/dev/"$1" of=/dev/null bs=512 count=1 iflag=direct \
dd if=/dev/"$1" of=/dev/null bs="${LB_SZ}" count=1 iflag=direct \
2> /dev/null 1>&2

_nvme_disable_err_inject "$1"
Expand All @@ -77,7 +77,7 @@ inject_write_fault_on_write()
# Inject a 'Write Fault' 0x280 status error on a WRITE
_nvme_enable_err_inject "$1" 0 100 1 0x280 1

dd if=/dev/zero of=/dev/"$1" bs=512 count=1 oflag=direct \
dd if=/dev/zero of=/dev/"$1" bs="${LB_SZ}" count=1 oflag=direct \
2> /dev/null 1>&2

_nvme_disable_err_inject "$1"
Expand Down Expand Up @@ -119,7 +119,7 @@ inject_invalid_admin_cmd()
# Inject a 'Invalid Command Opcode' (0x1) on an invalid command (0x96)
_nvme_enable_err_inject "$1" 0 100 1 0x1 1

nvme admin-passthru /dev/"$1" --opcode=0x96 --data-len=4096 \
nvme admin-passthru /dev/"$1" --opcode=0x96 --data-len="${LB_SZ}" \
--cdw10=1 -r 2> /dev/null 1>&2

_nvme_disable_err_inject "$1"
Expand All @@ -145,7 +145,7 @@ inject_invalid_io_cmd_passthru()
_nvme_enable_err_inject "$ns_dev" 0 100 1 0x1 1

nvme io-passthru /dev/"$1" --opcode=0x02 --namespace-id="$ns" \
--data-len=512 --read --cdw10=0 --cdw11=0 --cdw12="$2" 2> /dev/null 1>&2
--data-len="${LB_SZ}" --read --cdw10=0 --cdw11=0 --cdw12="$2" 2> /dev/null 1>&2

_nvme_disable_err_inject "$1"
if ${nvme_verbose_errors}; then
Expand Down Expand Up @@ -174,6 +174,8 @@ test_device() {
ns_dev=${TEST_DEV##*/}
ctrl_dev=${ns_dev%n*}

LB_SZ=$(blockdev --getss "${TEST_DEV}")

_nvme_err_inject_setup "${ns_dev}" "${ctrl_dev}"

# wait DEFAULT_RATELIMIT_INTERVAL=5 seconds to ensure errors are printed
Expand Down

0 comments on commit e8f3e50

Please sign in to comment.