2019-02-19 10:06:12 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
|
|
rootdir=$(readlink -f $testdir/../..)
|
2019-06-10 07:16:46 +00:00
|
|
|
source $rootdir/test/common/autotest_common.sh
|
2019-10-25 07:31:14 +00:00
|
|
|
source $testdir/common.sh
|
2019-06-10 07:16:46 +00:00
|
|
|
|
2019-02-19 10:06:12 +00:00
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
|
|
|
|
|
|
|
device=$1
|
|
|
|
|
|
|
|
json_kill() {
|
|
|
|
killprocess $svcpid
|
|
|
|
}
|
|
|
|
|
|
|
|
trap "json_kill; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
|
2020-05-11 21:15:03 +00:00
|
|
|
"$SPDK_BIN_DIR/spdk_tgt" --json <(gen_ftl_nvme_conf) &
|
2020-05-07 11:27:06 +00:00
|
|
|
svcpid=$!
|
2019-02-19 10:06:12 +00:00
|
|
|
waitforlisten $svcpid
|
|
|
|
|
|
|
|
# Create new bdev from json configuration
|
2019-10-15 12:14:49 +00:00
|
|
|
$rootdir/scripts/gen_ftl.sh -n ftl0 -d nvme0n1 | $rpc_py load_subsystem_config
|
|
|
|
$rpc_py bdev_nvme_attach_controller -b nvme0 -a $device -t pcie
|
|
|
|
$rpc_py bdev_ocssd_create -c nvme0 -b nvme0n1 -n 1
|
2019-02-19 10:06:12 +00:00
|
|
|
|
2019-10-15 12:14:49 +00:00
|
|
|
waitforbdev ftl0
|
|
|
|
uuid=$($rpc_py bdev_get_bdevs | jq -r ".[] | select(.name==\"ftl0\").uuid")
|
2019-02-19 10:06:12 +00:00
|
|
|
|
2019-10-25 07:31:14 +00:00
|
|
|
$rpc_py bdev_ftl_delete -b ftl0
|
2019-02-19 10:06:12 +00:00
|
|
|
|
|
|
|
# Restore bdev from json configuration
|
2019-10-25 07:31:14 +00:00
|
|
|
$rootdir/scripts/gen_ftl.sh -n ftl0 -d nvme0n1 -u $uuid | $rpc_py load_subsystem_config
|
|
|
|
$rpc_py bdev_ftl_delete -b ftl0
|
|
|
|
$rpc_py bdev_nvme_detach_controller nvme0
|
2019-02-19 10:06:12 +00:00
|
|
|
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
|
|
json_kill
|