From ea17d2ebb90c6e4b2d31aa3e8d8df4d92c4da3e0 Mon Sep 17 00:00:00 2001 From: Seth Howell Date: Mon, 14 Jan 2019 16:00:36 -0700 Subject: [PATCH] test/nvmf: start the perf tests w/ dynamic memory This can be done now that our DPDK submodule has been updated. Change-Id: I3e17e5b28e04673f7644bfb47bf62b0a03ade9fe Signed-off-by: Seth Howell Reviewed-on: https://review.gerrithub.io/c/440425 Tested-by: SPDK CI Jenkins Chandler-Test-Pool: SPDK Automated Test System Reviewed-by: Karol Latecki Reviewed-by: Ben Walker Reviewed-by: Jim Harris Reviewed-by: Shuhei Matsumoto --- test/nvmf/host/perf.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/test/nvmf/host/perf.sh b/test/nvmf/host/perf.sh index 1722d0531..1d1b6eb7f 100755 --- a/test/nvmf/host/perf.sh +++ b/test/nvmf/host/perf.sh @@ -28,11 +28,7 @@ fi timing_enter perf timing_enter start_nvmf_tgt -# Start the NVMe-oF target with preallocated memory because we will need to run perf.c -# as a secondary process later, and secondary process memory allocation is broken with -# the IOMMU. -# todo: remove this when the proper fixes are merged into DPDK. -$NVMF_APP -m 0xF -s 4096 & +$NVMF_APP -m 0xF & nvmfpid=$! trap "process_shm --id $NVMF_APP_SHM_ID; killprocess $nvmfpid; nvmftestfini $1; exit 1" SIGINT SIGTERM EXIT