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>
62 lines
1.2 KiB
Bash
Executable File
62 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2020 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/scripts/common.sh
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
rpc_py=$rootdir/scripts/rpc.py
|
|
|
|
bdf=$(get_first_nvme_bdf)
|
|
ctrlr_base="/dev/spdk/nvme"
|
|
|
|
$SPDK_BIN_DIR/spdk_tgt -m 0x3 &
|
|
spdk_tgt_pid=$!
|
|
trap 'kill -9 ${spdk_tgt_pid}; exit 1' SIGINT SIGTERM EXIT
|
|
|
|
waitforlisten $spdk_tgt_pid
|
|
|
|
$rpc_py bdev_nvme_attach_controller -b Nvme0 -t PCIe -a ${bdf}
|
|
$rpc_py bdev_nvme_cuse_register -n Nvme0
|
|
|
|
sleep 5
|
|
|
|
if [ ! -c "${ctrlr_base}0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
$rpc_py bdev_get_bdevs
|
|
$rpc_py bdev_nvme_get_controllers
|
|
|
|
$rpc_py bdev_nvme_cuse_unregister -n Nvme0
|
|
sleep 1
|
|
if [ -c "${ctrlr_base}0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Verify removing non-existent cuse device
|
|
$rpc_py bdev_nvme_cuse_unregister -n Nvme0 && false
|
|
|
|
$rpc_py bdev_nvme_cuse_register -n Nvme0
|
|
sleep 1
|
|
|
|
if [ ! -c "${ctrlr_base}0" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
# Verify adding same nvme controller twice fails
|
|
$rpc_py bdev_nvme_cuse_register -n Nvme0 && false
|
|
sleep 1
|
|
|
|
if [ -c "${ctrlr_base}1" ]; then
|
|
exit 1
|
|
fi
|
|
|
|
$rpc_py bdev_nvme_detach_controller Nvme0
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
killprocess $spdk_tgt_pid
|