In particular, non-volatile cache setup and EXTENDED fio tests: these haven't been supported nor tested by the CI, thus there's no value in keeping these routines anymore. fio tests are limited to what was previously called as a "basic" suite and hooked to standard SPDK_TEST_FTL flow. Code which is not used by the remaining tests is removed as well. Signed-off-by: Michal Berger <michalx.berger@intel.com> Change-Id: I865da1ea4d8743322d4c303908c598efe6ecd40b Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/8294 Community-CI: Broadcom CI <spdk-ci.pdl@broadcom.com> Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com> Reviewed-by: Karol Latecki <karol.latecki@intel.com> Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
37 lines
775 B
Bash
37 lines
775 B
Bash
# Common utility functions to be sourced by the libftl test scripts
|
|
|
|
function get_chunk_size() {
|
|
$SPDK_EXAMPLE_DIR/identify -r "trtype:PCIe traddr:$1" \
|
|
| grep 'Logical blks per chunk' | sed 's/[^0-9]//g'
|
|
}
|
|
|
|
function get_num_group() {
|
|
$SPDK_EXAMPLE_DIR/identify -r "trtype:PCIe traddr:$1" \
|
|
| grep 'Groups' | sed 's/[^0-9]//g'
|
|
}
|
|
|
|
function get_num_pu() {
|
|
$SPDK_EXAMPLE_DIR/identify -r "trtype:PCIe traddr:$1" \
|
|
| grep 'PUs' | sed 's/[^0-9]//g'
|
|
}
|
|
|
|
function gen_ftl_nvme_conf() {
|
|
jq . <<- JSON
|
|
{
|
|
"subsystems": [
|
|
{
|
|
"subsystem": "bdev",
|
|
"config": [
|
|
{
|
|
"params": {
|
|
"nvme_adminq_poll_period_us": 100
|
|
},
|
|
"method": "bdev_nvme_set_options"
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
JSON
|
|
}
|