Introduce two RPC calls for starting flush and getting flush status of OCF cache bdev: - bdev_ocf_flush_start - bdev_ocf_flush_status Signed-off-by: Robert Baldyga <robert.baldyga@intel.com> Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com> Change-Id: I1d659da6fc51396e0d070af35372ee130c40ae8b Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/8961 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Community-CI: Mellanox Build Bot Reviewed-by: Jim Harris <james.r.harris@intel.com> Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
17 lines
727 B
Bash
Executable File
17 lines
727 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../..)
|
|
|
|
source $rootdir/test/common/autotest_common.sh
|
|
|
|
run_test "ocf_fio_modes" "$testdir/integrity/fio-modes.sh"
|
|
run_test "ocf_bdevperf_iotypes" "$testdir/integrity/bdevperf-iotypes.sh"
|
|
run_test "ocf_stats" "$testdir/integrity/stats.sh"
|
|
run_test "ocf_flush" "$testdir/integrity/flush.sh"
|
|
run_test "ocf_create_destruct" "$testdir/management/create-destruct.sh"
|
|
run_test "ocf_multicore" "$testdir/management/multicore.sh"
|
|
run_test "ocf_persistent_metadata" "$testdir/management/persistent-metadata.sh"
|
|
run_test "ocf_remove" "$testdir/management/remove.sh"
|
|
run_test "ocf_configuration_change" "$testdir/management/configuration-change.sh"
|