From 9a0f019cda2ba9ffaf70f77e347261e73eb8c66d Mon Sep 17 00:00:00 2001 From: Ziye Yang Date: Wed, 26 Dec 2018 21:05:40 +0800 Subject: [PATCH] iscsi/test: remove the unnecessary -s option in ip_migration.sh We already have the memory set for the stub process. If we set this value, and the memory size set by the stub is changed. We will cause the issue. So removing this option will be save. Change-Id: I1968f5253796e766a8f1bb95f18554b0003a2969 Signed-off-by: Ziye Yang Reviewed-on: https://review.gerrithub.io/c/438231 Reviewed-by: Changpeng Liu Reviewed-by: Karol Latecki Reviewed-by: Ben Walker Reviewed-by: Darek Stojaczyk Tested-by: SPDK CI Jenkins Chandler-Test-Pool: SPDK Automated Test System --- test/iscsi_tgt/ip_migration/ip_migration.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/iscsi_tgt/ip_migration/ip_migration.sh b/test/iscsi_tgt/ip_migration/ip_migration.sh index 25332ff8d..878961366 100755 --- a/test/iscsi_tgt/ip_migration/ip_migration.sh +++ b/test/iscsi_tgt/ip_migration/ip_migration.sh @@ -43,7 +43,7 @@ for ((i = 0; i < 2; i++)); do rpc_addr="/var/tmp/spdk${i}.sock" # TODO: run the different iSCSI instances on non-overlapping CPU masks - $ISCSI_APP -r $rpc_addr -s 1000 -i $i -m $ISCSI_TEST_CORE_MASK --wait-for-rpc & + $ISCSI_APP -r $rpc_addr -i $i -m $ISCSI_TEST_CORE_MASK --wait-for-rpc & pid=$! echo "Process pid: $pid"