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>
40 lines
1.2 KiB
Bash
Executable File
40 lines
1.2 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2019 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
source $testdir/common.sh
|
|
|
|
tests=('-q 1 -w randwrite -t 4 -o 69632' '-q 128 -w randwrite -t 4 -o 4096' '-q 128 -w verify -t 4 -o 4096')
|
|
device=$1
|
|
cache_device=$2
|
|
use_append=$3
|
|
rpc_py=$rootdir/scripts/rpc.py
|
|
timeout=240
|
|
|
|
for ((i = 0; i < ${#tests[@]}; i++)); do
|
|
timing_enter "${tests[$i]}"
|
|
"$rootdir/build/examples/bdevperf" -z -T ftl0 ${tests[$i]} &
|
|
bdevperf_pid=$!
|
|
|
|
trap 'killprocess $bdevperf_pid; exit 1' SIGINT SIGTERM EXIT
|
|
waitforlisten $bdevperf_pid
|
|
split_bdev=$(create_base_bdev nvme0 $device $((1024 * 101)))
|
|
nv_cache=$(create_nv_cache_bdev nvc0 $cache_device $split_bdev)
|
|
|
|
l2p_dram_size_mb=$(($(get_bdev_size $split_bdev) * 20 / 100 / 1024))
|
|
$rpc_py -t $timeout bdev_ftl_create -b ftl0 -d $split_bdev $use_append -c $nv_cache --l2p_dram_limit $l2p_dram_size_mb
|
|
|
|
$rootdir/examples/bdev/bdevperf/bdevperf.py perform_tests
|
|
$rpc_py bdev_ftl_delete -b ftl0
|
|
|
|
killprocess $bdevperf_pid
|
|
trap - SIGINT SIGTERM EXIT
|
|
timing_exit "${tests[$i]}"
|
|
done
|
|
|
|
remove_shm
|