CSIT-1121: Add "Get DPDK version" KW to DPDK tests
[csit.git] / tests / dpdk / dpdk_scripts / run_l2fwd.sh
index 83ee1d3..578c12c 100755 (executable)
@@ -88,13 +88,13 @@ TESTPMD_BIN=./${arch}-${machine}-linuxapp-gcc/app/testpmd
 
 if [ "$jumbo_frames" = "yes" ]; then
     sudo sh -c "screen -dmSL DPDK-test $TESTPMD_BIN \
-        -l ${cpu_corelist} -n 4 -- \
+        -l ${cpu_corelist} -n 4 --log-level 8 -v -- \
         --numa \
         --nb-ports=2 \
         --portmask=0x3 \
         --nb-cores=${nb_cores} \
         --max-pkt-len=9000 \
-        --txqflags=0 \
+        --tx-offloads=0x7FFFFFFF \
         --forward-mode=io \
         --rxq=${queue_nums} \
         --txq=$((${nb_cores} + 1)) \
@@ -105,7 +105,7 @@ if [ "$jumbo_frames" = "yes" ]; then
         --auto-start"
 else
     sudo sh -c "screen -dmSL DPDK-test $TESTPMD_BIN \
-        -l ${cpu_corelist} -n 4 -- \
+        -l ${cpu_corelist} -n 4 --log-level 8 -v -- \
         --numa \
         --nb-ports=2 \
         --portmask=0x3 \