From deb694403f1651d6cff25b4135b6ba45e1dfb756 Mon Sep 17 00:00:00 2001 From: Seth Howell Date: Mon, 4 Dec 2017 14:08:40 -0700 Subject: [PATCH] test/iscsi_tgt: increase memory for nvmf_tgt app The iscsi fio_remote_nvme test was failing because the large malloc bdev was consuming too many contiguous hugepages and the call to construct_nvmf_subsystem was failing on some machines. This change increases the memory allocated for the nvmf_tgt app which solves that problem. Change-Id: Ibc882d83c5b983baee9b004bfc0970562f7f2e1f Signed-off-by: Seth Howell Reviewed-on: https://review.gerrithub.io/390320 Tested-by: SPDK Automated Test System Reviewed-by: Daniel Verkamp Reviewed-by: Jim Harris --- test/iscsi_tgt/nvme_remote/fio_remote_nvme.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/iscsi_tgt/nvme_remote/fio_remote_nvme.sh b/test/iscsi_tgt/nvme_remote/fio_remote_nvme.sh index 83a6523de..8b0b1eb69 100755 --- a/test/iscsi_tgt/nvme_remote/fio_remote_nvme.sh +++ b/test/iscsi_tgt/nvme_remote/fio_remote_nvme.sh @@ -24,7 +24,7 @@ NVMF_PORT=4420 timing_enter nvme_remote # Start the NVMf target -$rootdir/app/nvmf_tgt/nvmf_tgt -c $rootdir/test/nvmf/nvmf.conf -m 0x2 -p 1 -s 384 & +$rootdir/app/nvmf_tgt/nvmf_tgt -c $rootdir/test/nvmf/nvmf.conf -m 0x2 -p 1 -s 512 & nvmfpid=$! echo "NVMf target launched. pid: $nvmfpid" trap "killprocess $nvmfpid; exit 1" SIGINT SIGTERM EXIT