Implement the resize function for RAID0. raid0_resize() calculate the new raid_bdev's block count and if it is different from the old block count, call spdk_bdev_notify_blockcnt_change() with the new block count. A raid0 bdev always opens all base bdevs. Hence, if the size of base bdevs are reduced, resize fails now. This limitation will be removed later. Add a simple functional test for this feature. The test is to create a raid0 bdev with two null bdevs, resize one null bdev, check if the raid0 bdev is not resize, resize another null bdev, check if the raid0 bdev is resized. test/iscsi_tgt/resize/resize.sh was used a reference to write the test. Using jq rather than grep&sed is better and hence replace grep&sed by jq of test/iscsi_tgt/resize/resize.sh together in this patch. Signed-off-by: Shuhei Matsumoto <smatsumoto@nvidia.com> Change-Id: I07136648c4189b970843fc6da51ff40355423144 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/16261 Tested-by: SPDK CI Jenkins <sys_sgci@intel.com> Reviewed-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com> Reviewed-by: Aleksey Marchuk <alexeymar@nvidia.com> Reviewed-by: Xiaodong Liu <xiaodong.liu@intel.com> Reviewed-by: Jim Harris <james.r.harris@intel.com>
76 lines
2.4 KiB
Bash
Executable File
76 lines
2.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright (C) 2022 Intel Corporation
|
|
# All rights reserved.
|
|
#
|
|
|
|
testdir=$(readlink -f $(dirname $0))
|
|
rootdir=$(readlink -f $testdir/../../..)
|
|
source $rootdir/test/common/autotest_common.sh
|
|
source $rootdir/test/iscsi_tgt/common.sh
|
|
|
|
iscsitestinit
|
|
|
|
BDEV_SIZE=64
|
|
BDEV_NEW_SIZE=128
|
|
BLOCK_SIZE=512
|
|
RESIZE_SOCK="/var/tmp/spdk-resize.sock"
|
|
|
|
timing_enter start_iscsi_tgt
|
|
|
|
# Remove the sock file first
|
|
rm -f $RESIZE_SOCK
|
|
|
|
"${ISCSI_APP[@]}" -m 0x2 -p 1 -s 512 --wait-for-rpc &
|
|
pid=$!
|
|
echo "iSCSI target launched. pid: $pid"
|
|
trap 'killprocess $pid; iscsitestfini; exit 1' SIGINT SIGTERM EXIT
|
|
waitforlisten $pid
|
|
$rpc_py framework_start_init
|
|
echo "iscsi_tgt is listening. Running tests..."
|
|
|
|
timing_exit start_iscsi_tgt
|
|
|
|
$rpc_py iscsi_create_portal_group $PORTAL_TAG $TARGET_IP:$ISCSI_PORT
|
|
$rpc_py iscsi_create_initiator_group $INITIATOR_TAG $INITIATOR_NAME $NETMASK
|
|
$rpc_py bdev_null_create Null0 $BDEV_SIZE $BLOCK_SIZE
|
|
# "Null0:0" ==> use Null0 blockdev for LUN0
|
|
# "1:2" ==> map PortalGroup1 to InitiatorGroup2
|
|
# "64" ==> iSCSI queue depth 64
|
|
# "-d" ==> disable CHAP authentication
|
|
$rpc_py iscsi_create_target_node disk1 disk1_alias 'Null0:0' $PORTAL_TAG:$INITIATOR_TAG 256 -d
|
|
sleep 1
|
|
trap 'killprocess $pid; iscsitestfini; exit 1' SIGINT SIGTERM EXIT
|
|
|
|
# Start bdevperf with another sock file and iSCSI initiator
|
|
"$rootdir/build/examples/bdevperf" -r $RESIZE_SOCK --json <(initiator_json_config) -q 16 -o 4096 -w read -t 5 -R -s 128 -z &
|
|
bdevperf_pid=$!
|
|
waitforlisten $bdevperf_pid $RESIZE_SOCK
|
|
# Resize the Bdev from iSCSI target
|
|
$rpc_py bdev_null_resize Null0 $BDEV_NEW_SIZE
|
|
# Obtain the Bdev from bdevperf with iSCSI initiator
|
|
num_block=$($rpc_py -s $RESIZE_SOCK bdev_get_bdevs | jq '.[].num_blocks')
|
|
# Size is not changed as no IO sent yet and resize notification is deferred.
|
|
total_size=$((num_block * BLOCK_SIZE / 1048576))
|
|
if [ $total_size != $BDEV_SIZE ]; then
|
|
echo "resize failed"
|
|
exit 1
|
|
fi
|
|
sleep 2
|
|
# Start the bdevperf IO
|
|
$rootdir/examples/bdev/bdevperf/bdevperf.py -s $RESIZE_SOCK perform_tests
|
|
# Obtain the Bdev from bdevperf with iSCSI initiator
|
|
num_block=$($rpc_py -s $RESIZE_SOCK bdev_get_bdevs | jq '.[].num_blocks')
|
|
# Get the new bdev size in MiB.
|
|
total_size=$((num_block * BLOCK_SIZE / 1048576))
|
|
if [ $total_size != $BDEV_NEW_SIZE ]; then
|
|
echo "resize failed"
|
|
exit 1
|
|
fi
|
|
|
|
trap - SIGINT SIGTERM EXIT
|
|
killprocess $bdevperf_pid
|
|
killprocess $pid
|
|
|
|
iscsitestfini
|