189626a64ba3b560d51972ca1dfe8890cf5a7590
[csit.git] /
1 # Copyright (c) 2017 Cisco and/or its affiliates.
2 # Licensed under the Apache License, Version 2.0 (the "License");
3 # you may not use this file except in compliance with the License.
4 # You may obtain a copy of the License at:
5 #
6 #     http://www.apache.org/licenses/LICENSE-2.0
7 #
8 # Unless required by applicable law or agreed to in writing, software
9 # distributed under the License is distributed on an "AS IS" BASIS,
10 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11 # See the License for the specific language governing permissions and
12 # limitations under the License.
13
14 *** Settings ***
15 | Resource | resources/libraries/robot/performance/performance_setup.robot
16 | Library | resources.libraries.python.QemuUtils
17 | ...
18 | Force Tags | 3_NODE_SINGLE_LINK_TOPO | PERFTEST | HW_ENV | NDRPDRDISC
19 | ... | NIC_Intel-X520-DA2 | L2BDMACLRN | ENCAP | VXLAN | L2OVRLAY | IP4UNRLAY
20 | ... | VHOST | VM | VHOST_1024
21 | ...
22 | Suite Setup | Set up 3-node performance topology with DUT's NIC model
23 | ... | L2 | Intel-X520-DA2
24 | Suite Teardown | Tear down 3-node performance topology
25 | ...
26 | Test Setup | Set up performance test
27 | Test Teardown | Tear down performance test with vhost and VM with dpdk-testpmd
28 | ... | ${min_rate}pps | ${framesize} | ${traffic_profile}
29 | ... | dut1_node=${dut1} | dut1_vm_refs=${dut1_vm_refs}
30 | ... | dut2_node=${dut2} | dut2_vm_refs=${dut2_vm_refs}
31 | ...
32 | Documentation | *RFC2544: Packet throughput L2BD test cases with VXLANoIPv4
33 | ... | and vhost*
34 | ...
35 | ... | *[Top] Network Topologies:* TG-DUT1-DUT2-TG 3-node circular topology
36 | ... | with single links between nodes.
37 | ... | *[Enc] Packet Encapsulations:* Eth-IPv4 for L2 switching of IPv4.
38 | ... | Eth-IPv4-VXLAN-Eth-IPv4 is applied on link between DUT1 and DUT2.
39 | ... | *[Cfg] DUT configuration:* DUT1 and DUT2 are configured with L2 bridge-
40 | ... | domain and MAC learning enabled. Qemu Guest is connected to VPP via
41 | ... | vhost-user interfaces. Guest is running DPDK testpmd interconnecting
42 | ... | vhost-user interfaces using 5 cores pinned to cpus 5-9 and 2048M
43 | ... | memory. Testpmd is using socket-mem=1024M (512x2M hugepages), 5 cores
44 | ... | (1 main core and 4 cores dedicated for io), forwarding mode is set to
45 | ... | io, rxd/txd=1024, burst=64. DUT1, DUT2 are tested with 2p10GE NIC X520
46 | ... | Niantic by Intel.
47 | ... | *[Ver] TG verification:* TG finds and reports throughput NDR (Non Drop
48 | ... | Rate) with zero packet loss tolerance or throughput PDR (Partial Drop
49 | ... | Rate) with non-zero packet loss tolerance (LT) expressed in percentage
50 | ... | of packets transmitted. NDR and PDR are discovered for different
51 | ... | Ethernet L2 frame sizes using either binary search or linear search
52 | ... | algorithms with configured starting rate and final step that determines
53 | ... | throughput measurement resolution. Test packets are generated by TG on
54 | ... | links to DUTs. TG traffic profile contains two L3 flow-groups
55 | ... | (flow-group per direction, 253 flows per flow-group) with all packets
56 | ... | containing Ethernet header, IPv4 header with IP protocol=61 and static
57 | ... | payload. MAC addresses are matching MAC addresses of the TG node
58 | ... | interfaces.
59 | ... | *[Ref] Applicable standard specifications:* RFC2544, RFC7348.
60
61 *** Variables ***
62 | ${perf_qemu_qsz}= | 1024
63 # X520-DA2 bandwidth limit
64 | ${s_limit} | ${10000000000}
65 | ${vxlan_overhead} | ${50}
66 # Socket names
67 | ${bd_id1}= | 1
68 | ${bd_id2}= | 2
69 | ${sock1}= | /tmp/sock-1-${bd_id1}
70 | ${sock2}= | /tmp/sock-1-${bd_id2}
71 # Traffic profile:
72 | ${traffic_profile}= | trex-sl-3n-ethip4-ip4src254
73
74 *** Test Cases ***
75 | tc01-64B-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
76 | | [Documentation]
77 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
78 | | ... | 1 receive queue per NIC port.
79 | | ... | [Ver] Find NDR for 64 Byte frames using binary search start at 10GE\
80 | | ... | linerate, step 10kpps.
81 | | ...
82 | | [Tags] | 64B | 1T1C | STHREAD | NDRDISC
83 | | ...
84 | | ${framesize}= | Set Variable | ${64}
85 | | ${min_rate}= | Set Variable | ${10000}
86 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
87 | | ${binary_min}= | Set Variable | ${min_rate}
88 | | ${binary_max}= | Set Variable | ${max_rate}
89 | | ${threshold}= | Set Variable | ${min_rate}
90 | | ${dut1_vm_refs}= | Create Dictionary
91 | | ${dut2_vm_refs}= | Create Dictionary
92 | | ${jumbo_frames}= | Set Variable If | ${get_framesize} < ${1522}
93 | | ... | ${False} | ${True}
94 | | ...
95 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
96 | | And Add PCI devices to DUTs in 3-node single link topology
97 | | And Add no multi seg to all DUTs
98 | | And Apply startup configuration on all VPP DUTs
99 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
100 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
101 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
102 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
103 | | ... | jumbo_frames=${jumbo_frames}
104 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
105 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
106 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
107 | | ... | jumbo_frames=${jumbo_frames}
108 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
109 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
110 | | ... | ${binary_max} | ${traffic_profile}
111 | | ... | ${min_rate} | ${max_rate} | ${threshold}
112
113 | tc02-64B-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
114 | | [Documentation]
115 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
116 | | ... | 1 receive queue per NIC port.
117 | | ... | [Ver] Find PDR for 64 Byte frames using binary search start at 10GE\
118 | | ... | linerate, step 10kpps, LT=0.5%.
119 | | ...
120 | | [Tags] | 64B | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
121 | | ...
122 | | ${framesize}= | Set Variable | ${64}
123 | | ${min_rate}= | Set Variable | ${10000}
124 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
125 | | ${binary_min}= | Set Variable | ${min_rate}
126 | | ${binary_max}= | Set Variable | ${max_rate}
127 | | ${threshold}= | Set Variable | ${min_rate}
128 | | ${dut1_vm_refs}= | Create Dictionary
129 | | ${dut2_vm_refs}= | Create Dictionary
130 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
131 | | And Add PCI devices to DUTs in 3-node single link topology
132 | | And Add no multi seg to all DUTs
133 | | And Apply startup configuration on all VPP DUTs
134 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
135 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
136 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
137 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
138 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
139 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
140 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
141 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
142 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
143 | | ... | ${binary_max} | ${traffic_profile}
144 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
145 | | ... | ${perf_pdr_loss_acceptance_type}
146
147 | tc03-1518B-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
148 | | [Documentation]
149 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
150 | | ... | 1 receive queue per NIC port.
151 | | ... | [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE\
152 | | ... | linerate, step 10kpps.
153 | | ...
154 | | [Tags] | 1518B | 1T1C | STHREAD | NDRDISC
155 | | ...
156 | | ${framesize}= | Set Variable | ${1518}
157 | | ${min_rate}= | Set Variable | ${10000}
158 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
159 | | ${binary_min}= | Set Variable | ${min_rate}
160 | | ${binary_max}= | Set Variable | ${max_rate}
161 | | ${threshold}= | Set Variable | ${min_rate}
162 | | ${dut1_vm_refs}= | Create Dictionary
163 | | ${dut2_vm_refs}= | Create Dictionary
164 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
165 | | And Add PCI devices to DUTs in 3-node single link topology
166 | | And Apply startup configuration on all VPP DUTs
167 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
168 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
169 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
170 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
171 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
172 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
173 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
174 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
175 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
176 | | ... | ${binary_max} | ${traffic_profile}
177 | | ... | ${min_rate} | ${max_rate} | ${threshold}
178
179 | tc04-1518B-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
180 | | [Documentation]
181 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
182 | | ... | 1 receive queue per NIC port.
183 | | ... | [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE\
184 | | ... | using binary search start at 10GE linerate, step 10kpps, LT=0.5%.
185 | | ...
186 | | [Tags] | 1518B | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
187 | | ...
188 | | ${framesize}= | Set Variable | ${1518}
189 | | ${min_rate}= | Set Variable | ${10000}
190 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
191 | | ${binary_min}= | Set Variable | ${min_rate}
192 | | ${binary_max}= | Set Variable | ${max_rate}
193 | | ${threshold}= | Set Variable | ${min_rate}
194 | | ${dut1_vm_refs}= | Create Dictionary
195 | | ${dut2_vm_refs}= | Create Dictionary
196 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
197 | | And Add PCI devices to DUTs in 3-node single link topology
198 | | And Apply startup configuration on all VPP DUTs
199 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
200 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
201 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
202 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
203 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
204 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
205 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
206 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
207 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
208 | | ... | ${binary_max} | ${traffic_profile}
209 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
210 | | ... | ${perf_pdr_loss_acceptance_type}
211
212 | tc05-IMIX-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
213 | | [Documentation]
214 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
215 | | ... | 1 receive queue per NIC port.
216 | | ... | [Ver] Find NDR for IMIX_v4_1 framesize using binary search start at\
217 | | ... | 10GE linerate, step 10kpps.
218 | | ... | IMIX_v4_1 = (28x64B;16x570B;4x1518B)
219 | | ...
220 | | [Tags] | IMIX | 1T1C | STHREAD | NDRDISC
221 | | ...
222 | | ${framesize}= | Set Variable | IMIX_v4_1
223 | | ${avg_framesize}= | Set Variable | ${403.833}
224 | | ${min_rate}= | Set Variable | ${10000}
225 | | ${max_rate}= | Calculate pps | ${s_limit} | ${avg_framesize}
226 | | ${binary_min}= | Set Variable | ${min_rate}
227 | | ${binary_max}= | Set Variable | ${max_rate}
228 | | ${threshold}= | Set Variable | ${min_rate}
229 | | ${dut1_vm_refs}= | Create Dictionary
230 | | ${dut2_vm_refs}= | Create Dictionary
231 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
232 | | And Add PCI devices to DUTs in 3-node single link topology
233 | | And Apply startup configuration on all VPP DUTs
234 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
235 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
236 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
237 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
238 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
239 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
240 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
241 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
242 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
243 | | ... | ${binary_max} | ${traffic_profile}
244 | | ... | ${min_rate} | ${max_rate} | ${threshold}
245
246 | tc06-IMIX-1t1c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
247 | | [Documentation]
248 | | ... | [Cfg] DUT runs L2BD switching config with 1 thread, 1 phy core,\
249 | | ... | 1 receive queue per NIC port.
250 | | ... | [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at\
251 | | ... | 10GE linerate, step 10kpps, LT=0.5%.
252 | | ... | IMIX_v4_1 = (28x64B;16x570B;4x1518B)
253 | | ...
254 | | [Tags] | IMIX | 1T1C | STHREAD | PDRDISC | SKIP_PATCH
255 | | ...
256 | | ${framesize}= | Set Variable | IMIX_v4_1
257 | | ${avg_framesize}= | Set Variable | ${403.833}
258 | | ${min_rate}= | Set Variable | ${10000}
259 | | ${max_rate}= | Calculate pps | ${s_limit} | ${avg_framesize}
260 | | ${binary_min}= | Set Variable | ${min_rate}
261 | | ${binary_max}= | Set Variable | ${max_rate}
262 | | ${threshold}= | Set Variable | ${min_rate}
263 | | ${dut1_vm_refs}= | Create Dictionary
264 | | ${dut2_vm_refs}= | Create Dictionary
265 | | Given Add '1' worker threads and '1' rxqueues in 3-node single-link circular topology
266 | | And Add PCI devices to DUTs in 3-node single link topology
267 | | And Apply startup configuration on all VPP DUTs
268 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
269 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
270 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
271 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
272 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
273 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
274 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
275 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
276 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
277 | | ... | ${binary_max} | ${traffic_profile}
278 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
279 | | ... | ${perf_pdr_loss_acceptance_type}
280
281 | tc07-64B-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
282 | | [Documentation]
283 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
284 | | ... | 1 receive queue per NIC port.
285 | | ... | [Ver] Find NDR for 64 Byte frames using binary search start at 10GE\
286 | | ... | linerate, step 10kpps.
287 | | ...
288 | | [Tags] | 64B | 2T2C | MTHREAD | NDRDISC
289 | | ...
290 | | ${framesize}= | Set Variable | ${64}
291 | | ${min_rate}= | Set Variable | ${10000}
292 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
293 | | ${binary_min}= | Set Variable | ${min_rate}
294 | | ${binary_max}= | Set Variable | ${max_rate}
295 | | ${threshold}= | Set Variable | ${min_rate}
296 | | ${dut1_vm_refs}= | Create Dictionary
297 | | ${dut2_vm_refs}= | Create Dictionary
298 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
299 | | And Add PCI devices to DUTs in 3-node single link topology
300 | | And Add no multi seg to all DUTs
301 | | And Apply startup configuration on all VPP DUTs
302 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
303 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
304 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
305 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
306 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
307 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
308 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
309 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
310 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
311 | | ... | ${binary_max} | ${traffic_profile}
312 | | ... | ${min_rate} | ${max_rate} | ${threshold}
313
314 | tc08-64B-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
315 | | [Documentation]
316 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
317 | | ... | 1 receive queue per NIC port.
318 | | ... | [Ver] Find PDR for 64 Byte frames using binary search start at 10GE\
319 | | ... | linerate, step 10kpps, LT=0.5%.
320 | | ...
321 | | [Tags] | 64B | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
322 | | ...
323 | | ${framesize}= | Set Variable | ${64}
324 | | ${min_rate}= | Set Variable | ${10000}
325 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
326 | | ${binary_min}= | Set Variable | ${min_rate}
327 | | ${binary_max}= | Set Variable | ${max_rate}
328 | | ${threshold}= | Set Variable | ${min_rate}
329 | | ${dut1_vm_refs}= | Create Dictionary
330 | | ${dut2_vm_refs}= | Create Dictionary
331 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
332 | | And Add PCI devices to DUTs in 3-node single link topology
333 | | And Add no multi seg to all DUTs
334 | | And Apply startup configuration on all VPP DUTs
335 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
336 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
337 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
338 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
339 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
340 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
341 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
342 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
343 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
344 | | ... | ${binary_max} | ${traffic_profile}
345 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
346 | | ... | ${perf_pdr_loss_acceptance_type}
347
348 | tc09-1518B-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
349 | | [Documentation]
350 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
351 | | ... | 1 receive queue per NIC port.
352 | | ... | [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE\
353 | | ... | linerate, step 10kpps.
354 | | ...
355 | | [Tags] | 1518B | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
356 | | ...
357 | | ${framesize}= | Set Variable | ${1518}
358 | | ${min_rate}= | Set Variable | ${10000}
359 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
360 | | ${binary_min}= | Set Variable | ${min_rate}
361 | | ${binary_max}= | Set Variable | ${max_rate}
362 | | ${threshold}= | Set Variable | ${min_rate}
363 | | ${dut1_vm_refs}= | Create Dictionary
364 | | ${dut2_vm_refs}= | Create Dictionary
365 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
366 | | And Add PCI devices to DUTs in 3-node single link topology
367 | | And Apply startup configuration on all VPP DUTs
368 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
369 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
370 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
371 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
372 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
373 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
374 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
375 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
376 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
377 | | ... | ${binary_max} | ${traffic_profile}
378 | | ... | ${min_rate} | ${max_rate} | ${threshold}
379
380 | tc10-1518B-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
381 | | [Documentation]
382 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
383 | | ... | 1 receive queue per NIC port.
384 | | ... | [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE\
385 | | ... | linerate, step 10kpps, LT=0.5%.
386 | | ...
387 | | [Tags] | 1518B | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
388 | | ...
389 | | ${framesize}= | Set Variable | ${1518}
390 | | ${min_rate}= | Set Variable | ${10000}
391 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
392 | | ${binary_min}= | Set Variable | ${min_rate}
393 | | ${binary_max}= | Set Variable | ${max_rate}
394 | | ${threshold}= | Set Variable | ${min_rate}
395 | | ${dut1_vm_refs}= | Create Dictionary
396 | | ${dut2_vm_refs}= | Create Dictionary
397 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
398 | | And Add PCI devices to DUTs in 3-node single link topology
399 | | And Apply startup configuration on all VPP DUTs
400 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
401 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
402 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
403 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
404 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
405 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
406 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
407 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
408 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
409 | | ... | ${binary_max} | ${traffic_profile}
410 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
411 | | ... | ${perf_pdr_loss_acceptance_type}
412
413 | tc11-IMIX-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
414 | | [Documentation]
415 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
416 | | ... | 1 receive queue per NIC port.
417 | | ... | [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at\
418 | | ... | 10GE linerate, step 10kpps.
419 | | ... | IMIX_v4_1 = (28x64B;16x570B;4x1518B)
420 | | ...
421 | | [Tags] | IMIX | 2T2C | MTHREAD | NDRDISC | SKIP_PATCH
422 | | ...
423 | | ${framesize}= | Set Variable | IMIX_v4_1
424 | | ${avg_framesize}= | Set Variable | ${403.833}
425 | | ${min_rate}= | Set Variable | ${10000}
426 | | ${max_rate}= | Calculate pps | ${s_limit} | ${avg_framesize}
427 | | ${binary_min}= | Set Variable | ${min_rate}
428 | | ${binary_max}= | Set Variable | ${max_rate}
429 | | ${threshold}= | Set Variable | ${min_rate}
430 | | ${dut1_vm_refs}= | Create Dictionary
431 | | ${dut2_vm_refs}= | Create Dictionary
432 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
433 | | And Add PCI devices to DUTs in 3-node single link topology
434 | | And Apply startup configuration on all VPP DUTs
435 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
436 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
437 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
438 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
439 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
440 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
441 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
442 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
443 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
444 | | ... | ${binary_max} | ${traffic_profile}
445 | | ... | ${min_rate} | ${max_rate} | ${threshold}
446
447 | tc12-IMIX-2t2c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
448 | | [Documentation]
449 | | ... | [Cfg] DUT runs L2BD switching config with 2 threads, 2 phy cores,\
450 | | ... | 1 receive queue per NIC port.
451 | | ... | [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at\
452 | | ... | 10GE linerate, step 10kpps, LT=0.5%.
453 | | ... | IMIX_v4_1 = (28x64B;16x570B;4x1518B)
454 | | ...
455 | | [Tags] | IMIX | 2T2C | MTHREAD | PDRDISC | SKIP_PATCH
456 | | ...
457 | | ${framesize}= | Set Variable | IMIX_v4_1
458 | | ${avg_framesize}= | Set Variable | ${403.833}
459 | | ${min_rate}= | Set Variable | ${10000}
460 | | ${max_rate}= | Calculate pps | ${s_limit} | ${avg_framesize}
461 | | ${binary_min}= | Set Variable | ${min_rate}
462 | | ${binary_max}= | Set Variable | ${max_rate}
463 | | ${threshold}= | Set Variable | ${min_rate}
464 | | ${dut1_vm_refs}= | Create Dictionary
465 | | ${dut2_vm_refs}= | Create Dictionary
466 | | Given Add '2' worker threads and '1' rxqueues in 3-node single-link circular topology
467 | | And Add PCI devices to DUTs in 3-node single link topology
468 | | And Apply startup configuration on all VPP DUTs
469 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
470 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
471 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
472 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
473 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
474 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
475 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
476 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
477 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
478 | | ... | ${binary_max} | ${traffic_profile}
479 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
480 | | ... | ${perf_pdr_loss_acceptance_type}
481
482 | tc13-64B-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
483 | | [Documentation]
484 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
485 | | ... | 2 receive queues per NIC port.
486 | | ... | [Ver] Find NDR for 64 Byte frames using binary search start at 10GE\
487 | | ... | linerate, step 10kpps.
488 | | ...
489 | | [Tags] | 64B | 4T4C | MTHREAD | NDRDISC
490 | | ...
491 | | ${framesize}= | Set Variable | ${64}
492 | | ${min_rate}= | Set Variable | ${10000}
493 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
494 | | ${binary_min}= | Set Variable | ${min_rate}
495 | | ${binary_max}= | Set Variable | ${max_rate}
496 | | ${threshold}= | Set Variable | ${min_rate}
497 | | ${dut1_vm_refs}= | Create Dictionary
498 | | ${dut2_vm_refs}= | Create Dictionary
499 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
500 | | And Add PCI devices to DUTs in 3-node single link topology
501 | | And Add no multi seg to all DUTs
502 | | And Apply startup configuration on all VPP DUTs
503 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
504 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
505 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
506 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
507 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
508 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
509 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
510 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
511 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
512 | | ... | ${binary_max} | ${traffic_profile}
513 | | ... | ${min_rate} | ${max_rate} | ${threshold}
514
515 | tc14-64B-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
516 | | [Documentation]
517 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
518 | | ... | 2 receive queues per NIC port.
519 | | ... | [Ver] Find PDR for 64 Byte frames using binary search start at 10GE\
520 | | ... | linerate, step 10kpps, LT=0.5%.
521 | | ...
522 | | [Tags] | 64B | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
523 | | ...
524 | | ${framesize}= | Set Variable | ${64}
525 | | ${min_rate}= | Set Variable | ${10000}
526 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
527 | | ${binary_min}= | Set Variable | ${min_rate}
528 | | ${binary_max}= | Set Variable | ${max_rate}
529 | | ${threshold}= | Set Variable | ${min_rate}
530 | | ${dut1_vm_refs}= | Create Dictionary
531 | | ${dut2_vm_refs}= | Create Dictionary
532 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
533 | | And Add PCI devices to DUTs in 3-node single link topology
534 | | And Add no multi seg to all DUTs
535 | | And Apply startup configuration on all VPP DUTs
536 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
537 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
538 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
539 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
540 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
541 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
542 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
543 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
544 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
545 | | ... | ${binary_max} | ${traffic_profile}
546 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
547 | | ... | ${perf_pdr_loss_acceptance_type}
548
549 | tc15-1518B-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
550 | | [Documentation]
551 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
552 | | ... | 2 receive queues per NIC port.
553 | | ... | [Ver] Find NDR for 1518 Byte frames using binary search start at 10GE\
554 | | ... | linerate, step 10kpps.
555 | | ...
556 | | [Tags] | 1518B | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
557 | | ...
558 | | ${framesize}= | Set Variable | ${1518}
559 | | ${min_rate}= | Set Variable | ${10000}
560 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
561 | | ${binary_min}= | Set Variable | ${min_rate}
562 | | ${binary_max}= | Set Variable | ${max_rate}
563 | | ${threshold}= | Set Variable | ${min_rate}
564 | | ${dut1_vm_refs}= | Create Dictionary
565 | | ${dut2_vm_refs}= | Create Dictionary
566 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
567 | | And Add PCI devices to DUTs in 3-node single link topology
568 | | And Apply startup configuration on all VPP DUTs
569 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
570 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
571 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
572 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
573 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
574 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
575 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
576 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
577 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
578 | | ... | ${binary_max} | ${traffic_profile}
579 | | ... | ${min_rate} | ${max_rate} | ${threshold}
580
581 | tc16-1518B-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
582 | | [Documentation]
583 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
584 | | ... | 2 receive queues per NIC port.
585 | | ... | [Ver] Find PDR for 1518 Byte frames using binary search start at 10GE\
586 | | ... | linerate, step 10kpps, LT=0.5%.
587 | | ...
588 | | [Tags] | 1518B | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
589 | | ...
590 | | ${framesize}= | Set Variable | ${1518}
591 | | ${min_rate}= | Set Variable | ${10000}
592 | | ${max_rate}= | Calculate pps | ${s_limit} | ${framesize + ${vxlan_overhead}}
593 | | ${binary_min}= | Set Variable | ${min_rate}
594 | | ${binary_max}= | Set Variable | ${max_rate}
595 | | ${threshold}= | Set Variable | ${min_rate}
596 | | ${dut1_vm_refs}= | Create Dictionary
597 | | ${dut2_vm_refs}= | Create Dictionary
598 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
599 | | And Add PCI devices to DUTs in 3-node single link topology
600 | | And Apply startup configuration on all VPP DUTs
601 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
602 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
603 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
604 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
605 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
606 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
607 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
608 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
609 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
610 | | ... | ${binary_max} | ${traffic_profile}
611 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
612 | | ... | ${perf_pdr_loss_acceptance_type}
613
614 | tc17-IMIX-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-ndrdisc
615 | | [Documentation]
616 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
617 | | ... | 2 receive queues per NIC port.
618 | | ... | [Ver] Find NDR for IMIX_v4_1 frame size using binary search start at\
619 | | ... | 10GE linerate, step 10kpps.
620 | | ... | IMIX_v4_1 = (28x64B;16x570B;4x1518B)
621 | | ...
622 | | [Tags] | IMIX | 4T4C | MTHREAD | NDRDISC | SKIP_PATCH
623 | | ...
624 | | ${framesize}= | Set Variable | IMIX_v4_1
625 | | ${avg_framesize}= | Set Variable | ${403.833}
626 | | ${min_rate}= | Set Variable | ${10000}
627 | | ${max_rate}= | Calculate pps | ${s_limit} | ${avg_framesize}
628 | | ${binary_min}= | Set Variable | ${min_rate}
629 | | ${binary_max}= | Set Variable | ${max_rate}
630 | | ${threshold}= | Set Variable | ${min_rate}
631 | | ${dut1_vm_refs}= | Create Dictionary
632 | | ${dut2_vm_refs}= | Create Dictionary
633 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
634 | | And Add PCI devices to DUTs in 3-node single link topology
635 | | And Apply startup configuration on all VPP DUTs
636 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
637 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
638 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
639 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
640 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
641 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
642 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
643 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
644 | | Then Find NDR using binary search and pps | ${framesize} | ${binary_min}
645 | | ... | ${binary_max} | ${traffic_profile}
646 | | ... | ${min_rate} | ${max_rate} | ${threshold}
647
648 | tc18-IMIX-4t4c-ethip4vxlan-l2bdbasemaclrn-eth-2vhostvr1024-1vm-pdrdisc
649 | | [Documentation]
650 | | ... | [Cfg] DUT runs L2BD switching config with 4 threads, 4 phy cores,\
651 | | ... | 2 receive queues per NIC port.
652 | | ... | [Ver] Find PDR for IMIX_v4_1 frame size using binary search start at\
653 | | ... | 10GE linerate, step 10kpps, LT=0.5%.
654 | | ... | IMIX_v4_1 = (28x64B;16x570B;4x1518B)
655 | | ...
656 | | [Tags] | IMIX | 4T4C | MTHREAD | PDRDISC | SKIP_PATCH
657 | | ...
658 | | ${framesize}= | Set Variable | IMIX_v4_1
659 | | ${avg_framesize}= | Set Variable | ${403.833}
660 | | ${min_rate}= | Set Variable | ${10000}
661 | | ${max_rate}= | Calculate pps | ${s_limit} | ${avg_framesize}
662 | | ${binary_min}= | Set Variable | ${min_rate}
663 | | ${binary_max}= | Set Variable | ${max_rate}
664 | | ${threshold}= | Set Variable | ${min_rate}
665 | | ${dut1_vm_refs}= | Create Dictionary
666 | | ${dut2_vm_refs}= | Create Dictionary
667 | | Given Add '4' worker threads and '2' rxqueues in 3-node single-link circular topology
668 | | And Add PCI devices to DUTs in 3-node single link topology
669 | | And Apply startup configuration on all VPP DUTs
670 | | When Initialize L2 bridge domains with Vhost-User and VXLANoIPv4 in 3-node circular topology
671 | | ... | ${bd_id1} | ${bd_id2} | ${sock1} | ${sock2}
672 | | ${vm1}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
673 | | ... | ${dut1} | ${sock1} | ${sock2} | DUT1_VM1
674 | | Set To Dictionary | ${dut1_vm_refs} | DUT1_VM1 | ${vm1}
675 | | ${vm2}= | And Configure guest VM with dpdk-testpmd connected via vhost-user
676 | | ... | ${dut2} | ${sock1} | ${sock2} | DUT2_VM1
677 | | Set To Dictionary | ${dut2_vm_refs} | DUT2_VM1 | ${vm2}
678 | | Then Find PDR using binary search and pps | ${framesize} | ${binary_min}
679 | | ... | ${binary_max} | ${traffic_profile}
680 | | ... | ${min_rate} | ${max_rate} | ${threshold} | ${perf_pdr_loss_acceptance}
681 | | ... | ${perf_pdr_loss_acceptance_type}