This test was originally written to validate assumptions around the QEMU deallocate implementation. It's not really very useful anymore, so rather than continuing to maintain it (including adding support for interleaved and separate metadata), let's just remove it. Signed-off-by: Jim Harris <james.r.harris@intel.com> Change-Id: I4588cf7bc5f4b339674afc0e09f386784ab874e2 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/14096 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Changpeng Liu <changpeng.liu@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
95 lines
2.9 KiB
Bash
Executable File
95 lines
2.9 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
nvmeappdir=$(readlink -f $rootdir/test/nvme)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
source $rootdir/test/nvmf/common.sh
|
|
|
|
MALLOC_BDEV_SIZE=64
|
|
MALLOC_BLOCK_SIZE=512
|
|
NUM_DEVICES=2
|
|
|
|
rpc_py="$rootdir/scripts/rpc.py"
|
|
|
|
export TEST_TRANSPORT=VFIOUSER
|
|
|
|
function aer_vfio_user() {
|
|
|
|
local traddr=$1
|
|
local subnqn=$2
|
|
local malloc_num=Malloc$(($3 + NUM_DEVICES))
|
|
$rpc_py nvmf_get_subsystems
|
|
|
|
AER_TOUCH_FILE=/tmp/aer_touch_file
|
|
|
|
# Namespace Attribute Notice Tests
|
|
$rootdir/test/nvme/aer/aer -r "\
|
|
trtype:$TEST_TRANSPORT \
|
|
traddr:$traddr \
|
|
subnqn:$subnqn" -n $NUM_DEVICES -g -t $AER_TOUCH_FILE &
|
|
aerpid=$!
|
|
|
|
# Waiting for aer start to work
|
|
waitforfile $AER_TOUCH_FILE
|
|
rm -f $AER_TOUCH_FILE
|
|
# Add a new namespace
|
|
$rpc_py bdev_malloc_create $MALLOC_BDEV_SIZE $MALLOC_BLOCK_SIZE --name $malloc_num
|
|
$rpc_py nvmf_subsystem_add_ns $subnqn $malloc_num -n $NUM_DEVICES
|
|
$rpc_py nvmf_get_subsystems
|
|
|
|
wait $aerpid
|
|
}
|
|
|
|
rm -rf /var/run/vfio-user
|
|
|
|
# Start the target
|
|
"${NVMF_APP[@]}" -m '[0,1,2,3]' &
|
|
nvmfpid=$!
|
|
echo "Process pid: $nvmfpid"
|
|
|
|
trap 'killprocess $nvmfpid; exit 1' SIGINT SIGTERM EXIT
|
|
waitforlisten $nvmfpid
|
|
|
|
sleep 1
|
|
|
|
$rpc_py nvmf_create_transport -t $TEST_TRANSPORT
|
|
|
|
mkdir -p /var/run/vfio-user
|
|
|
|
for i in $(seq 1 $NUM_DEVICES); do
|
|
mkdir -p /var/run/vfio-user/domain/vfio-user$i/$i
|
|
|
|
$rpc_py bdev_malloc_create $MALLOC_BDEV_SIZE $MALLOC_BLOCK_SIZE -b Malloc$i
|
|
$rpc_py nvmf_create_subsystem nqn.2019-07.io.spdk:cnode$i -a -s SPDK$i
|
|
$rpc_py nvmf_subsystem_add_ns nqn.2019-07.io.spdk:cnode$i Malloc$i
|
|
$rpc_py nvmf_subsystem_add_listener nqn.2019-07.io.spdk:cnode$i -t $TEST_TRANSPORT -a "/var/run/vfio-user/domain/vfio-user$i/$i" -s 0
|
|
done
|
|
|
|
for i in $(seq 1 $NUM_DEVICES); do
|
|
test_traddr=/var/run/vfio-user/domain/vfio-user$i/$i
|
|
test_subnqn=nqn.2019-07.io.spdk:cnode$i
|
|
$SPDK_EXAMPLE_DIR/identify -r "trtype:$TEST_TRANSPORT traddr:$test_traddr subnqn:$test_subnqn" -g -L nvme -L nvme_vfio -L vfio_pci
|
|
sleep 1
|
|
$SPDK_EXAMPLE_DIR/perf -r "trtype:$TEST_TRANSPORT traddr:$test_traddr subnqn:$test_subnqn" -s 256 -g -q 128 -o 4096 -w read -t 5 -c 0x2
|
|
sleep 1
|
|
$SPDK_EXAMPLE_DIR/perf -r "trtype:$TEST_TRANSPORT traddr:$test_traddr subnqn:$test_subnqn" -s 256 -g -q 128 -o 4096 -w write -t 5 -c 0x2
|
|
sleep 1
|
|
$SPDK_EXAMPLE_DIR/reconnect -r "trtype:$TEST_TRANSPORT traddr:$test_traddr subnqn:$test_subnqn" -g -q 32 -o 4096 -w randrw -M 50 -t 5 -c 0xE
|
|
sleep 1
|
|
$SPDK_EXAMPLE_DIR/arbitration -t 3 -r "trtype:$TEST_TRANSPORT traddr:$test_traddr subnqn:$test_subnqn" -d 256 -g
|
|
sleep 1
|
|
$SPDK_EXAMPLE_DIR/hello_world -d 256 -g -r "trtype:$TEST_TRANSPORT traddr:$test_traddr subnqn:$test_subnqn"
|
|
sleep 1
|
|
$nvmeappdir/overhead/overhead -s 4096 -t 1 -H -g -d 256 -r "trtype:$TEST_TRANSPORT traddr:$test_traddr subnqn:$test_subnqn"
|
|
sleep 1
|
|
aer_vfio_user $test_traddr $test_subnqn $i
|
|
sleep 1
|
|
done
|
|
|
|
killprocess $nvmfpid
|
|
|
|
rm -rf /var/run/vfio-user
|
|
|
|
trap - SIGINT SIGTERM EXIT
|