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>
57 lines
2.2 KiB
Bash
Executable File
57 lines
2.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# All rights reserved.
|
|
#
|
|
|
|
## Test goal: Confirm that rpc setting of bdev_nvme_set_options timeout values is working
|
|
## Test steps:
|
|
# 1. Run the target with default settings, and use "rpc.py save_config" to check them.
|
|
# Defaults are: action_on_timeout=none, timeout_us=0, and timeout_admin_us=0
|
|
# 2. Use "rpc.py bdev_nvme_set_options" to set the timeout values. Capture the
|
|
# modified settings using save_config.
|
|
# 3. Compare the default settings to the modified settings to make sure they got changed.
|
|
|
|
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
|
|
|
|
tmpfile_default_settings=/tmp/settings_default_$$
|
|
tmpfile_modified_settings=/tmp/settings_modified_$$
|
|
|
|
$SPDK_BIN_DIR/spdk_tgt -m 0x3 &
|
|
spdk_tgt_pid=$!
|
|
trap 'kill -9 ${spdk_tgt_pid}; rm -f ${tmpfile_default_settings} ${tmpfile_modified_settings} ; exit 1' SIGINT SIGTERM EXIT
|
|
waitforlisten $spdk_tgt_pid
|
|
|
|
echo Checking default timeout settings:
|
|
$rpc_py save_config > $tmpfile_default_settings
|
|
|
|
echo Making settings changes with rpc:
|
|
# Set action_on_timeout, timeout_us, and timeout_admin_us to non-default values
|
|
$rpc_py bdev_nvme_set_options --timeout-us=12000000 --timeout-admin-us=24000000 --action-on-timeout=abort
|
|
|
|
echo Check default vs. modified settings:
|
|
$rpc_py save_config > $tmpfile_modified_settings
|
|
settings_to_check="action_on_timeout timeout_us timeout_admin_us"
|
|
for setting in $settings_to_check; do
|
|
setting_before=$(grep ${setting} ${tmpfile_default_settings} | awk '{print $2}' | sed 's/[^a-zA-Z0-9]//g')
|
|
setting_modified=$(grep ${setting} ${tmpfile_modified_settings} | awk '{print $2}' | sed 's/[^a-zA-Z0-9]//g')
|
|
if [ "$setting_before" == "$setting_modified" ]; then
|
|
echo SETTING $setting NOT MODIFIED BY RPC.
|
|
echo Default value = $setting_before, value after setting = $setting_modified. FAIL TEST.
|
|
exit 1
|
|
else
|
|
echo Setting $setting is changed as expected.
|
|
fi
|
|
done
|
|
|
|
# CLEANUP: kill target process and clean up temp files
|
|
trap - SIGINT SIGTERM EXIT
|
|
rm -f ${tmpfile_default_settings} ${tmpfile_modified_settings}
|
|
killprocess $spdk_tgt_pid
|
|
|
|
echo RPC TIMEOUT SETTING TEST PASSED.
|