blob: 578c12c0546a51d24bb250e229565cc4a6a654d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
|
#!/bin/bash
set -x
# Setting variables
DPDK_VERSION=dpdk-18.02
ROOTDIR=/tmp/openvpp-testing
TESTPMDLOG=screenlog.0
PWDDIR=$(pwd)
# Setting command line arguments
cpu_corelist=$1
nb_cores=$2
queue_nums=$3
jumbo_frames=$4
arch=${5:-"x86_64"}
# dpdk prefers "arm64" to "aarch64" and does not allow arm64 native target
if [ $arch == "aarch64" ]; then
arch="arm64"
machine="armv8a"
else
machine="native"
fi
# Try to kill the testpmd
sudo pgrep testpmd
if [ $? -eq "0" ]; then
success=false
sudo pkill testpmd
echo "RC = $?"
for attempt in {1..5}; do
echo "Checking if testpmd is still alive, attempt nr ${attempt}"
sudo pgrep testpmd
if [ $? -eq "1" ]; then
echo "testpmd is dead"
success=true
break
fi
echo "testpmd is still alive, waiting 1 second"
sleep 1
done
if [ "$success" = false ]; then
echo "The command sudo pkill testpmd failed"
sudo pkill -9 testpmd
echo "RC = $?"
exit 1
fi
else
echo "testpmd is not running"
fi
# Try to kill the l3fwd
sudo pgrep l3fwd
if [ $? -eq "0" ]; then
success=false
sudo pkill l3fwd
echo "RC = $?"
for attempt in {1..5}; do
echo "Checking if l3fwd is still alive, attempt nr ${attempt}"
sudo pgrep l3fwd
if [ $? -eq "1" ]; then
echo "l3fwd is dead"
success=true
break
fi
echo "l3fwd is still alive, waiting 1 second"
sleep 1
done
if [ "$success" = false ]; then
echo "The command sudo pkill l3fwd failed"
sudo pkill -9 l3fwd
echo "RC = $?"
exit 1
fi
else
echo "l3fwd is not running"
fi
# Remove hugepages
sudo rm -f /dev/hugepages/*
sleep 2
cd ${ROOTDIR}/${DPDK_VERSION}/
rm -f ${TESTPMDLOG}
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 --log-level 8 -v -- \
--numa \
--nb-ports=2 \
--portmask=0x3 \
--nb-cores=${nb_cores} \
--max-pkt-len=9000 \
--tx-offloads=0x7FFFFFFF \
--forward-mode=io \
--rxq=${queue_nums} \
--txq=$((${nb_cores} + 1)) \
--burst=64 \
--rxd=1024 \
--txd=1024 \
--disable-link-check \
--auto-start"
else
sudo sh -c "screen -dmSL DPDK-test $TESTPMD_BIN \
-l ${cpu_corelist} -n 4 --log-level 8 -v -- \
--numa \
--nb-ports=2 \
--portmask=0x3 \
--nb-cores=${nb_cores} \
--forward-mode=io \
--rxq=${queue_nums} \
--txq=$((${nb_cores} + 1)) \
--burst=64 \
--rxd=1024 \
--txd=1024 \
--disable-link-check \
--auto-start"
fi
sleep 10
less -r ${TESTPMDLOG}
cd ${PWDDIR}
|