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.5 KiB
Bash
59 lines
1.5 KiB
Bash
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2019 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
|
|
MALLOC_SIZE_MB=128
|
|
MALLOC_BS=512
|
|
AIO_SIZE_MB=400
|
|
AIO_BS=4096
|
|
LVS_DEFAULT_CLUSTER_SIZE_MB=4
|
|
LVS_DEFAULT_CLUSTER_SIZE=$((LVS_DEFAULT_CLUSTER_SIZE_MB * 1024 * 1024))
|
|
# reserve some MBs for lvolstore metadata
|
|
LVS_DEFAULT_CAPACITY_MB=$((MALLOC_SIZE_MB - LVS_DEFAULT_CLUSTER_SIZE_MB))
|
|
LVS_DEFAULT_CAPACITY=$((LVS_DEFAULT_CAPACITY_MB * 1024 * 1024))
|
|
|
|
function get_bdev_jq() {
|
|
rpc_cmd_simple_data_json bdev "$@"
|
|
}
|
|
|
|
function get_lvs_jq() {
|
|
rpc_cmd_simple_data_json lvs "$@"
|
|
}
|
|
|
|
function check_leftover_devices() {
|
|
leftover_bdevs=$(rpc_cmd bdev_get_bdevs)
|
|
[ "$(jq length <<< "$leftover_bdevs")" == "0" ]
|
|
leftover_lvs=$(rpc_cmd bdev_lvol_get_lvstores)
|
|
[ "$(jq length <<< "$leftover_lvs")" == "0" ]
|
|
}
|
|
|
|
function round_down() {
|
|
local CLUSTER_SIZE_MB=$LVS_DEFAULT_CLUSTER_SIZE_MB
|
|
if [ -n "$2" ]; then
|
|
CLUSTER_SIZE_MB=$2
|
|
fi
|
|
echo $(($1 / CLUSTER_SIZE_MB * CLUSTER_SIZE_MB))
|
|
}
|
|
|
|
function run_fio_test() {
|
|
local file=$1
|
|
local offset=$2
|
|
local size=$3
|
|
local rw=$4
|
|
local pattern=$5
|
|
local extra_params=$6
|
|
|
|
local pattern_template="" fio_template=""
|
|
if [[ -n "$pattern" ]]; then
|
|
pattern_template="--do_verify=1 --verify=pattern --verify_pattern=$pattern --verify_state_save=0"
|
|
fi
|
|
|
|
fio_template="fio --name=fio_test --filename=$file --offset=$offset --size=$size --rw=$rw --direct=1 $extra_params $pattern_template"
|
|
$fio_template
|
|
}
|
|
|
|
function calc() {
|
|
bc -l <<< "define ceil(x) { scale=0; return(x + (x % 1 > 0))/1 } $1"
|
|
}
|