per Intel policy to include file commit date using git cmd below. The policy does not apply to non-Intel (C) notices. git log --follow -C90% --format=%ad --date default <file> | tail -1 and then pull just the year from the result. Intel copyrights were not added to files where Intel either had no contribution ot the contribution lacked substance (ie license header updates, formatting changes, etc) For intel copyrights added, --follow and -C95% were used. Signed-off-by: paul luse <paul.e.luse@intel.com> Change-Id: I2ef86976095b88a9bf5b1003e59f3943cd6bbe4c Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/15209 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Ben Walker <benjamin.walker@intel.com> Reviewed-by: Krzysztof Karas <krzysztof.karas@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
59 lines
1.7 KiB
Bash
Executable File
59 lines
1.7 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2021 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
source $rootdir/test/vfio_user/common.sh
|
|
source $rootdir/test/vfio_user/nvme/common.sh
|
|
source $rootdir/test/vfio_user/autotest.config
|
|
|
|
bdfs=($(get_nvme_bdfs))
|
|
rpc_py="$rootdir/scripts/rpc.py -s $(get_vhost_dir 0)/rpc.sock"
|
|
|
|
trap 'clean_vfio_user "${FUNCNAME}" "${LINENO}"' ERR EXIT
|
|
|
|
vhosttestinit
|
|
|
|
vfio_user_run 0
|
|
|
|
vm_muser_dir="$VM_DIR/1/muser"
|
|
rm -rf $vm_muser_dir
|
|
mkdir -p $vm_muser_dir/domain/muser1/1
|
|
|
|
$rpc_py bdev_nvme_attach_controller -b Nvme0 -t pcie -a ${bdfs[0]}
|
|
$rpc_py nvmf_create_subsystem nqn.2019-07.io.spdk:cnode1 -s SPDK001 -a
|
|
$rpc_py nvmf_subsystem_add_ns nqn.2019-07.io.spdk:cnode1 Nvme0n1
|
|
$rpc_py nvmf_subsystem_add_listener nqn.2019-07.io.spdk:cnode1 -t VFIOUSER -a $vm_muser_dir/domain/muser1/1 -s 0
|
|
|
|
vm_setup --disk-type=vfio_user --force=1 --os=$VM_IMAGE --disks="1"
|
|
vm_run 1
|
|
vm_wait_for_boot 60 1
|
|
|
|
vm_exec 1 "lsblk"
|
|
# execute "poweroff" for vm 1
|
|
vm_shutdown_all
|
|
|
|
# re-launch the vm to see if memory region register / unregister will failed
|
|
vm_setup --disk-type=vfio_user --force=1 --os=$VM_IMAGE --disks="1"
|
|
vm_run 1
|
|
vm_wait_for_boot 60 1
|
|
|
|
vm_exec 1 "lsblk"
|
|
|
|
# To check target whether core dump when remove subsystem listener while VM is connected, issue #2246
|
|
$rpc_py nvmf_subsystem_remove_listener nqn.2019-07.io.spdk:cnode1 -t vfiouser -a $vm_muser_dir/domain/muser1/1 -s 0
|
|
|
|
vm_shutdown_all
|
|
|
|
$rpc_py bdev_nvme_detach_controller Nvme0
|
|
$rpc_py nvmf_delete_subsystem nqn.2019-07.io.spdk:cnode1
|
|
|
|
vhost_kill 0
|
|
|
|
trap - ERR EXIT
|
|
|
|
vhosttestfini
|