#!/usr/bin/env bash testdir=$(readlink -f $(dirname $0)) rootdir=$(readlink -f $testdir/../..) source $rootdir/test/common/autotest_common.sh source $rootdir/test/lvol/common.sh # create an lvol on lvs, then remove the lvs function test_hotremove_lvol_store() { # create lvs + lvol on top malloc_name=$(rpc_cmd bdev_malloc_create $MALLOC_SIZE_MB $MALLOC_BS) lvs_uuid=$(rpc_cmd bdev_lvol_create_lvstore "$malloc_name" lvs_test) lvol_uuid=$(rpc_cmd bdev_lvol_create -u "$lvs_uuid" lvol_test "$LVS_DEFAULT_CAPACITY_MB") # remove lvs (with one lvol open) rpc_cmd bdev_lvol_delete_lvstore -u "$lvs_uuid" rpc_cmd bdev_lvol_get_lvstores -u "$lvs_uuid" && false lvolstores=$(rpc_cmd bdev_lvol_get_lvstores) [ "$(jq length <<< "$lvolstores")" == "0" ] # make sure we can't destroy the lvs again rpc_cmd bdev_lvol_delete_lvstore -u "$lvs_uuid" && false # make sure the lvol is also gone rpc_cmd bdev_get_bdevs -b "$lvol_uuid" && false lvols=$(rpc_cmd bdev_get_bdevs | jq -r '[ .[] | select(.product_name == "Logical Volume") ]') [ "$(jq length <<< "$lvols")" == "0" ] # clean up rpc_cmd bdev_malloc_delete "$malloc_name" check_leftover_devices } # destroy lvs with 4 lvols on top function test_hotremove_lvol_store_multiple_lvols() { # create lvs malloc_name=$(rpc_cmd bdev_malloc_create $MALLOC_SIZE_MB $MALLOC_BS) lvs_uuid=$(rpc_cmd bdev_lvol_create_lvstore "$malloc_name" lvs_test) # calculate lvol size lvol_size_mb=$( round_down $(( (MALLOC_SIZE_MB- LVS_DEFAULT_CLUSTER_SIZE_MB) / 4 )) ) # create 4 lvols for i in $(seq 1 4); do rpc_cmd bdev_lvol_create -u "$lvs_uuid" "lvol_test${i}" "$lvol_size_mb" done lvols=$(rpc_cmd bdev_get_bdevs | jq -r '[ .[] | select(.product_name == "Logical Volume") ]') [ "$(jq length <<< "$lvols")" == "4" ] # remove lvs (with 4 lvols open) rpc_cmd bdev_lvol_delete_lvstore -u "$lvs_uuid" rpc_cmd bdev_lvol_get_lvstores -u "$lvs_uuid" && false # make sure all lvols are gone lvols=$(rpc_cmd bdev_get_bdevs | jq -r '[ .[] | select(.product_name == "Logical Volume") ]') [ "$(jq length <<< "$lvols")" == "0" ] # clean up rpc_cmd bdev_malloc_delete "$malloc_name" check_leftover_devices } # create an lvs on malloc, then remove just the malloc function test_hotremove_lvol_store_base() { # create lvs + lvol on top malloc_name=$(rpc_cmd bdev_malloc_create $MALLOC_SIZE_MB $MALLOC_BS) lvs_uuid=$(rpc_cmd bdev_lvol_create_lvstore "$malloc_name" lvs_test) # clean up rpc_cmd bdev_malloc_delete "$malloc_name" # make sure the lvs is gone rpc_cmd bdev_lvol_get_lvstores -u "$lvs_uuid" && false # make sure we can't delete the lvs again rpc_cmd bdev_lvol_delete_lvstore -u "$lvs_uuid" && false check_leftover_devices } # create an lvs on malloc, then an lvol, then remove just the malloc function test_hotremove_lvol_store_base_with_lvols() { # create lvs + lvol on top malloc_name=$(rpc_cmd bdev_malloc_create $MALLOC_SIZE_MB $MALLOC_BS) lvs_uuid=$(rpc_cmd bdev_lvol_create_lvstore "$malloc_name" lvs_test) lvol_uuid=$(rpc_cmd bdev_lvol_create -u "$lvs_uuid" lvol_test "$LVS_DEFAULT_CAPACITY_MB") rpc_cmd bdev_get_bdevs -b "$lvol_uuid" # clean up rpc_cmd bdev_malloc_delete "$malloc_name" # make sure the lvol is gone rpc_cmd bdev_get_bdevs -b "$lvol_uuid" && false # make sure the lvs is gone as well rpc_cmd bdev_lvol_get_lvstores -u "$lvs_uuid" && false # make sure we can't delete the lvs again rpc_cmd bdev_lvol_delete_lvstore -u "$lvs_uuid" && false check_leftover_devices } $rootdir/app/spdk_tgt/spdk_tgt & spdk_pid=$! trap 'killprocess "$spdk_pid"; exit 1' SIGINT SIGTERM EXIT waitforlisten $spdk_pid run_test "test_hotremove_lvol_store" test_hotremove_lvol_store run_test "test_hotremove_lvol_store_multiple_lvols" test_hotremove_lvol_store_multiple_lvols run_test "test_hotremove_lvol_store_base" test_hotremove_lvol_store_base run_test "test_hotremove_lvol_store_base_with_lvols" test_hotremove_lvol_store_base_with_lvols trap - SIGINT SIGTERM EXIT killprocess $spdk_pid