In particular, non-volatile cache setup and EXTENDED fio tests: these haven't been supported nor tested by the CI, thus there's no value in keeping these routines anymore. fio tests are limited to what was previously called as a "basic" suite and hooked to standard SPDK_TEST_FTL flow. Code which is not used by the remaining tests is removed as well. Signed-off-by: Michal Berger <michalx.berger@intel.com> Change-Id: I865da1ea4d8743322d4c303908c598efe6ecd40b Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/8294 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
83 lines
2.0 KiB
Bash
Executable File
83 lines
2.0 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
source $testdir/common.sh
|
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
|
|
|
mount_dir=$(mktemp -d)
|
|
|
|
device=$1
|
|
config=$SPDK_TEST_STORAGE/ftl.json
|
|
|
|
restore_kill() {
|
|
if mount | grep $mount_dir; then
|
|
umount $mount_dir
|
|
fi
|
|
rm -rf $mount_dir
|
|
rm -f "$SPDK_TEST_STORAGE/testfile.md5"
|
|
rm -f "$SPDK_TEST_STORAGE/testfile2.md5"
|
|
rm -f "$config"
|
|
|
|
killprocess $svcpid
|
|
rmmod nbd || true
|
|
}
|
|
|
|
trap "restore_kill; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
"$SPDK_BIN_DIR/spdk_tgt" --json <(gen_ftl_nvme_conf) &
|
|
svcpid=$!
|
|
# Wait until spdk_tgt starts
|
|
waitforlisten $svcpid
|
|
|
|
$rpc_py bdev_nvme_attach_controller -b nvme0 -a $device -t pcie
|
|
$rpc_py bdev_ocssd_create -c nvme0 -b nvme0n1 -n 1
|
|
ftl_construct_args="bdev_ftl_create -b ftl0 -d nvme0n1"
|
|
|
|
$rpc_py $ftl_construct_args
|
|
|
|
# Load the nbd driver
|
|
modprobe nbd
|
|
$rpc_py nbd_start_disk ftl0 /dev/nbd0
|
|
waitfornbd nbd0
|
|
|
|
$rpc_py save_config > "$config"
|
|
|
|
# Prepare the disk by creating ext4 fs and putting a file on it
|
|
make_filesystem ext4 /dev/nbd0
|
|
mount /dev/nbd0 $mount_dir
|
|
dd if=/dev/urandom of=$mount_dir/testfile bs=4K count=256K
|
|
sync
|
|
mount -o remount /dev/nbd0 $mount_dir
|
|
md5sum $mount_dir/testfile > "$SPDK_TEST_STORAGE/testfile.md5"
|
|
|
|
# Kill bdev service and start it again
|
|
umount $mount_dir
|
|
killprocess $svcpid
|
|
|
|
"$SPDK_BIN_DIR/spdk_tgt" --json <(gen_ftl_nvme_conf) -L ftl_init &
|
|
svcpid=$!
|
|
# Wait until spdk_tgt starts
|
|
waitforlisten $svcpid
|
|
|
|
$rpc_py load_config < "$config"
|
|
waitfornbd nbd0
|
|
|
|
mount /dev/nbd0 $mount_dir
|
|
|
|
# Write second file, to make sure writer thread has restored properly
|
|
dd if=/dev/urandom of=$mount_dir/testfile2 bs=4K count=256K
|
|
md5sum $mount_dir/testfile2 > "$SPDK_TEST_STORAGE/testfile2.md5"
|
|
|
|
# Make sure second file will be read from disk
|
|
echo 3 > /proc/sys/vm/drop_caches
|
|
|
|
# Check both files have proper data
|
|
md5sum -c "$SPDK_TEST_STORAGE/testfile.md5"
|
|
md5sum -c "$SPDK_TEST_STORAGE/testfile2.md5"
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
restore_kill
|