Skip to content

Commit 15f7492

Browse files
committed
demo: crypto-perf: update test tool parameters
The run-dpdk-test helper script builds dpdk-test-[compress|crypto]-perf command line parameters dynamically. Some of the parameters were changed in the recent DPDK builds and need updating. Signed-off-by: Mikko Ylinen <[email protected]>
1 parent cfe2d65 commit 15f7492

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

demo/crypto-perf/run-dpdk-test

+2-5
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,10 @@ fi
1010

1111
PCI_ALLOWLIST=""
1212

13-
for i in `echo ${!QAT*}`; do PCI_ALLOWLIST="$PCI_ALLOWLIST -w ${!i}"; done
13+
for i in `echo ${!QAT*}`; do PCI_ALLOWLIST="$PCI_ALLOWLIST -a ${!i}"; done
1414

15-
# "The default mempool handler is ring based."
16-
MEMPOOL=$(ls /usr/lib64/librte_mempool_ring.so*|tail -1)
17-
PMD_QAT=$(ls /usr/lib64/librte_pmd_qat.so*|tail -1)
1815
LCORE=$(cat /sys/fs/cgroup/cpuset/cpuset.cpus)
1916

20-
EAL="-l ${LCORE} ${PCI_ALLOWLIST} -d ${MEMPOOL} -d ${PMD_QAT}"
17+
EAL="-l ${LCORE} ${PCI_ALLOWLIST}"
2118

2219
dpdk-test-${TESTCMD}-perf ${EAL} -- ${PTEST} \

0 commit comments

Comments
 (0)