Skip to content

Commit fd8fbea

Browse files
committed
qa/workunits/nvmeof/fio_test.sh: add more debug commands
Add more commands to debug when fio fails: - nvme list-subsys /dev/nvme1n2 - nvme list from the initiator - nvme list | wc -l - nvme id-ns /dev/nvme1n2 Signed-off-by: Vallari Agrawal <[email protected]>
1 parent e2f3bed commit fd8fbea

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

qa/workunits/nvmeof/fio_test.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,11 +72,19 @@ status_log() {
7272
POOL="${RBD_POOL:-mypool}"
7373
GROUP="${NVMEOF_GROUP:-mygroup0}"
7474
ceph -s
75-
ceph host ls
75+
ceph orch host ls
7676
ceph orch ls
7777
ceph orch ps
7878
ceph health detail
7979
ceph nvme-gw show $POOL $GROUP
80+
sudo nvme list
81+
sudo nvme list | wc -l
82+
for device in $selected_drives; do
83+
echo "Processing device: $device"
84+
sudo nvme list-subsys /dev/$device
85+
sudo nvme id-ns /dev/$device
86+
done
87+
8088
}
8189

8290

0 commit comments

Comments
 (0)