Change-Id: I93e7b9d355870b0528a0ac3382fba1a10a558d45 Signed-off-by: Michal Berger <michalx.berger@intel.com> Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/1718 Community-CI: Mellanox Build Bot Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@mellanox.com> Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
39 lines
996 B
Bash
Executable File
39 lines
996 B
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
|
|
|
|
device=$1
|
|
|
|
json_kill() {
|
|
killprocess $svcpid
|
|
}
|
|
|
|
trap "json_kill; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
"$rootdir/app/spdk_tgt/spdk_tgt" --json <(gen_ftl_nvme_conf) &
|
|
svcpid=$!
|
|
waitforlisten $svcpid
|
|
|
|
# Create new bdev from json configuration
|
|
$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
|
|
|
|
waitforbdev ftl0
|
|
uuid=$($rpc_py bdev_get_bdevs | jq -r ".[] | select(.name==\"ftl0\").uuid")
|
|
|
|
$rpc_py bdev_ftl_delete -b ftl0
|
|
|
|
# Restore bdev from json configuration
|
|
$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
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
json_kill
|