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 <vallari.agrawal@ibm.com>
POOL="${RBD_POOL:-mypool}"
GROUP="${NVMEOF_GROUP:-mygroup0}"
ceph -s
- ceph host ls
+ ceph orch host ls
ceph orch ls
ceph orch ps
ceph health detail
ceph nvme-gw show $POOL $GROUP
+ sudo nvme list
+ sudo nvme list | wc -l
+ for device in $selected_drives; do
+ echo "Processing device: $device"
+ sudo nvme list-subsys /dev/$device
+ sudo nvme id-ns /dev/$device
+ done
+
}