2015-09-21 15:52:41 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2016-01-05 22:31:56 +00:00
|
|
|
set -e
|
|
|
|
|
2015-09-21 15:52:41 +00:00
|
|
|
testdir=$(readlink -f $(dirname $0))
|
2017-04-04 23:20:16 +00:00
|
|
|
rootdir=$(readlink -f $testdir/../../..)
|
2018-01-02 21:44:48 +00:00
|
|
|
source $rootdir/scripts/common.sh
|
2015-09-21 15:52:41 +00:00
|
|
|
source $rootdir/scripts/autotest_common.sh
|
|
|
|
|
2017-10-13 17:19:43 +00:00
|
|
|
function get_nvme_name_from_bdf {
|
|
|
|
lsblk -d --output NAME
|
2018-01-16 05:52:40 +00:00
|
|
|
nvme_devs=$(lsblk -d --output NAME | grep "^nvme") || true
|
|
|
|
if [ -z "$nvme_devs" ]; then
|
2017-10-13 17:19:43 +00:00
|
|
|
return
|
|
|
|
fi
|
|
|
|
for dev in $nvme_devs; do
|
2017-12-15 18:54:25 +00:00
|
|
|
link_name=$(readlink /sys/block/$dev/device/device) || true
|
|
|
|
if [ -z "$link_name" ]; then
|
|
|
|
link_name=$(readlink /sys/block/$dev/device)
|
|
|
|
fi
|
|
|
|
bdf=$(basename "$link_name")
|
2017-10-13 17:19:43 +00:00
|
|
|
if [ "$bdf" = "$1" ]; then
|
|
|
|
eval "$2=$dev"
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_enter nvme
|
|
|
|
|
2018-01-02 21:52:43 +00:00
|
|
|
if [ `uname` = Linux ]; then
|
|
|
|
# check that our setup.sh script does not bind NVMe devices to uio/vfio if they
|
|
|
|
# have an active mountpoint
|
|
|
|
$rootdir/scripts/setup.sh reset
|
|
|
|
# give kernel nvme driver some time to create the block devices before we start looking for them
|
|
|
|
sleep 1
|
|
|
|
blkname=''
|
|
|
|
# first, find an NVMe device that does not have an active mountpoint already;
|
|
|
|
# this covers rare case where someone is running this test script on a system
|
|
|
|
# that has a mounted NVMe filesystem
|
|
|
|
#
|
|
|
|
# note: more work probably needs to be done to properly handle devices with multiple
|
|
|
|
# namespaces
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_class_code 01 08 02); do
|
2018-01-02 21:52:43 +00:00
|
|
|
get_nvme_name_from_bdf "$bdf" blkname
|
|
|
|
if [ "$blkname" != "" ]; then
|
|
|
|
mountpoints=$(lsblk /dev/$blkname --output MOUNTPOINT -n | wc -w)
|
|
|
|
if [ "$mountpoints" = "0" ]; then
|
|
|
|
break
|
|
|
|
else
|
|
|
|
blkname=''
|
|
|
|
fi
|
2017-10-13 17:19:43 +00:00
|
|
|
fi
|
2018-01-02 21:52:43 +00:00
|
|
|
done
|
2017-10-13 17:19:43 +00:00
|
|
|
|
2018-01-02 21:52:43 +00:00
|
|
|
# if we found an NVMe block device without an active mountpoint, create and mount
|
|
|
|
# a filesystem on it for purposes of testing the setup.sh script
|
|
|
|
if [ "$blkname" != "" ]; then
|
|
|
|
parted -s /dev/$blkname mklabel gpt
|
|
|
|
# just create a 100MB partition - this tests our ability to detect mountpoints
|
|
|
|
# on partitions of the device, not just the device itself; it also is faster
|
|
|
|
# since we don't trim and initialize the whole namespace
|
|
|
|
parted -s /dev/$blkname mkpart primary 1 100
|
|
|
|
sleep 1
|
|
|
|
mkfs.ext4 -F /dev/${blkname}p1
|
|
|
|
mkdir -p /tmp/nvmetest
|
|
|
|
mount /dev/${blkname}p1 /tmp/nvmetest
|
|
|
|
$rootdir/scripts/setup.sh
|
|
|
|
driver=$(basename $(readlink /sys/bus/pci/devices/$bdf/driver))
|
|
|
|
# check that the nvme driver is still loaded against the device
|
|
|
|
if [ "$driver" != "nvme" ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
umount /tmp/nvmetest
|
|
|
|
rmdir /tmp/nvmetest
|
|
|
|
# write zeroes to the device to blow away the partition table and filesystem
|
|
|
|
dd if=/dev/zero of=/dev/$blkname oflag=direct bs=1M count=1
|
|
|
|
$rootdir/scripts/setup.sh
|
|
|
|
driver=$(basename $(readlink /sys/bus/pci/devices/$bdf/driver))
|
|
|
|
# check that the nvme driver is not loaded against the device
|
|
|
|
if [ "$driver" = "nvme" ]; then
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
$rootdir/scripts/setup.sh
|
2017-10-13 17:19:43 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2017-06-15 23:29:35 +00:00
|
|
|
if [ `uname` = Linux ]; then
|
|
|
|
start_stub "-s 2048 -i 0 -m 0xF"
|
2017-07-05 17:03:31 +00:00
|
|
|
trap "kill_stub; exit 1" SIGINT SIGTERM EXIT
|
2017-06-15 23:29:35 +00:00
|
|
|
fi
|
|
|
|
|
2016-03-23 20:34:31 +00:00
|
|
|
if [ $RUN_NIGHTLY -eq 1 ]; then
|
2017-11-30 22:38:34 +00:00
|
|
|
# TODO: temporarily disabled - temperature AER doesn't fire on emulated controllers
|
|
|
|
#timing_enter aer
|
|
|
|
#$testdir/aer/aer
|
|
|
|
#timing_exit aer
|
2017-02-15 20:09:10 +00:00
|
|
|
|
|
|
|
timing_enter reset
|
|
|
|
$testdir/reset/reset -q 64 -w write -s 4096 -t 2
|
|
|
|
timing_exit reset
|
2016-03-23 20:34:31 +00:00
|
|
|
fi
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_enter identify
|
2017-06-15 23:29:35 +00:00
|
|
|
$rootdir/examples/nvme/identify/identify -i 0
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_class_code 01 08 02); do
|
2017-06-15 23:29:35 +00:00
|
|
|
$rootdir/examples/nvme/identify/identify -r "trtype:PCIe traddr:${bdf}" -i 0
|
2017-01-13 06:20:35 +00:00
|
|
|
done
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_exit identify
|
2015-09-21 15:52:41 +00:00
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_enter perf
|
2017-06-15 23:29:35 +00:00
|
|
|
$rootdir/examples/nvme/perf/perf -q 128 -w read -s 12288 -t 1 -LL -i 0
|
2017-10-31 15:07:07 +00:00
|
|
|
if [ -b /dev/ram0 ]; then
|
|
|
|
# Test perf with AIO device
|
|
|
|
$rootdir/examples/nvme/perf/perf /dev/ram0 -q 128 -w read -s 12288 -t 1 -LL -i 0
|
|
|
|
fi
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_exit perf
|
|
|
|
|
2016-01-22 08:39:55 +00:00
|
|
|
timing_enter reserve
|
|
|
|
$rootdir/examples/nvme/reserve/reserve
|
|
|
|
timing_exit reserve
|
|
|
|
|
2016-07-19 16:33:46 +00:00
|
|
|
timing_enter hello_world
|
|
|
|
$rootdir/examples/nvme/hello_world/hello_world
|
|
|
|
timing_exit
|
|
|
|
|
2017-09-20 22:53:38 +00:00
|
|
|
timing_enter deallocated_value
|
|
|
|
$testdir/deallocated_value/deallocated_value
|
|
|
|
timing_exit deallocated_value
|
|
|
|
|
2017-06-15 23:29:35 +00:00
|
|
|
timing_enter sgl
|
|
|
|
$testdir/sgl/sgl
|
|
|
|
timing_exit sgl
|
|
|
|
|
|
|
|
timing_enter e2edp
|
|
|
|
$testdir/e2edp/nvme_dp
|
|
|
|
timing_exit e2edp
|
|
|
|
|
2016-08-01 20:18:22 +00:00
|
|
|
timing_enter overhead
|
2017-06-13 17:36:57 +00:00
|
|
|
$rootdir/test/lib/nvme/overhead/overhead -s 4096 -t 1 -H
|
2016-08-01 20:18:22 +00:00
|
|
|
timing_exit overhead
|
|
|
|
|
2017-06-15 23:29:35 +00:00
|
|
|
timing_enter arbitration
|
|
|
|
$rootdir/examples/nvme/arbitration/arbitration -t 3 -i 0
|
|
|
|
timing_exit arbitration
|
|
|
|
|
2017-07-05 17:49:50 +00:00
|
|
|
if [ `uname` = Linux ]; then
|
|
|
|
timing_enter multi_secondary
|
|
|
|
$rootdir/examples/nvme/perf/perf -i 0 -q 16 -w read -s 4096 -t 3 -c 0x1 &
|
|
|
|
pid0=$!
|
|
|
|
$rootdir/examples/nvme/perf/perf -i 0 -q 16 -w read -s 4096 -t 3 -c 0x2 &
|
|
|
|
pid1=$!
|
|
|
|
$rootdir/examples/nvme/perf/perf -i 0 -q 16 -w read -s 4096 -t 3 -c 0x4
|
|
|
|
wait $pid0
|
|
|
|
wait $pid1
|
|
|
|
timing_exit multi_secondary
|
|
|
|
fi
|
|
|
|
|
2017-06-15 23:29:35 +00:00
|
|
|
if [ `uname` = Linux ]; then
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
kill_stub
|
|
|
|
fi
|
2017-06-13 18:50:32 +00:00
|
|
|
PLUGIN_DIR=$rootdir/examples/nvme/fio_plugin
|
|
|
|
|
2016-04-13 00:58:29 +00:00
|
|
|
if [ -d /usr/src/fio ]; then
|
|
|
|
timing_enter fio_plugin
|
2018-01-02 21:44:48 +00:00
|
|
|
for bdf in $(iter_pci_class_code 01 08 02); do
|
2017-06-12 05:08:19 +00:00
|
|
|
# Only test when ASAN is not enabled. If ASAN is enabled, we cannot test.
|
|
|
|
if [ $SPDK_RUN_ASAN -eq 0 ]; then
|
|
|
|
LD_PRELOAD=$PLUGIN_DIR/fio_plugin /usr/src/fio/fio $PLUGIN_DIR/example_config.fio --filename="trtype=PCIe traddr=${bdf//:/.} ns=1"
|
|
|
|
fi
|
2016-04-13 00:58:29 +00:00
|
|
|
break
|
|
|
|
done
|
|
|
|
|
|
|
|
timing_exit fio_plugin
|
|
|
|
fi
|
|
|
|
|
2015-10-08 19:40:44 +00:00
|
|
|
timing_exit nvme
|