FTL library is consuming whole OCSSD device so punit parameter is not needed for bdev ftl configuration. Change-Id: I56f62ea6d09b3157b70c02ccfffcd3cb07ba4597 Signed-off-by: Wojciech Malikowski <wojciech.malikowski@intel.com> Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/467950 Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com> Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Broadcom SPDK FC-NVMe CI <spdk-ci.pdl@broadcom.com>
40 lines
928 B
Bash
Executable File
40 lines
928 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
|
|
|
|
|
device=$1
|
|
FTL_BDEV_CONF=$testdir/config/ftl.json
|
|
|
|
json_kill() {
|
|
killprocess $svcpid
|
|
}
|
|
|
|
trap "json_kill; exit 1" SIGINT SIGTERM EXIT
|
|
|
|
$rootdir/app/spdk_tgt/spdk_tgt & svcpid=$!
|
|
waitforlisten $svcpid
|
|
|
|
# Create new bdev from json configuration
|
|
$rootdir/scripts/gen_ftl.sh -j -a $device -n nvme0 | $rpc_py load_subsystem_config
|
|
|
|
uuid=$($rpc_py bdev_get_bdevs | jq -r '.[0].uuid')
|
|
|
|
$rpc_py bdev_ftl_delete -b nvme0
|
|
|
|
# Restore bdev from json configuration
|
|
$rootdir/scripts/gen_ftl.sh -j -a $device -n nvme0 -u $uuid | $rpc_py load_subsystem_config
|
|
$rpc_py bdev_ftl_delete -b nvme0
|
|
# Create new bdev from RPC
|
|
$rpc_py bdev_ftl_create -b nvme1 -a $device
|
|
$rpc_py bdev_ftl_delete -b nvme1
|
|
|
|
# TODO: add negative test cases
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
json_kill
|