Imported Upstream version 16.04
[deb_dpdk.git] / config / common_base
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
4 #   All rights reserved.
5 #
6 #   Redistribution and use in source and binary forms, with or without
7 #   modification, are permitted provided that the following conditions
8 #   are met:
9 #
10 #     * Redistributions of source code must retain the above copyright
11 #       notice, this list of conditions and the following disclaimer.
12 #     * Redistributions in binary form must reproduce the above copyright
13 #       notice, this list of conditions and the following disclaimer in
14 #       the documentation and/or other materials provided with the
15 #       distribution.
16 #     * Neither the name of Intel Corporation nor the names of its
17 #       contributors may be used to endorse or promote products derived
18 #       from this software without specific prior written permission.
19 #
20 #   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 #   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 #   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 #   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 #   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 #   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 #   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 #   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 #   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 #   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 #   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #
32
33 #
34 # define executive environment
35 # RTE_EXEC_ENV values are the directories in mk/exec-env/
36 #
37 CONFIG_RTE_EXEC_ENV=
38
39 #
40 # define the architecture we compile for.
41 # RTE_ARCH values are the directories in mk/arch/
42 #
43 CONFIG_RTE_ARCH=
44
45 #
46 # machine can define specific variables or action for a specific board
47 # RTE_MACHINE values are the directories in mk/machine/
48 #
49 CONFIG_RTE_MACHINE=
50
51 #
52 # The compiler we use.
53 # RTE_TOOLCHAIN values are the directories in mk/toolchain/
54 #
55 CONFIG_RTE_TOOLCHAIN=
56
57 #
58 # Use intrinsics or assembly code for key routines
59 #
60 CONFIG_RTE_FORCE_INTRINSICS=n
61
62 #
63 # Machine forces strict alignment constraints.
64 #
65 CONFIG_RTE_ARCH_STRICT_ALIGN=n
66
67 #
68 # Compile to share library
69 #
70 CONFIG_RTE_BUILD_SHARED_LIB=n
71
72 #
73 # Use newest code breaking previous ABI
74 #
75 CONFIG_RTE_NEXT_ABI=y
76
77 #
78 # Machine's cache line size
79 #
80 CONFIG_RTE_CACHE_LINE_SIZE=64
81
82 #
83 # Compile Environment Abstraction Layer
84 #
85 CONFIG_RTE_LIBRTE_EAL=y
86 CONFIG_RTE_MAX_LCORE=128
87 CONFIG_RTE_MAX_NUMA_NODES=8
88 CONFIG_RTE_MAX_MEMSEG=256
89 CONFIG_RTE_MAX_MEMZONE=2560
90 CONFIG_RTE_MAX_TAILQ=32
91 CONFIG_RTE_LOG_LEVEL=8
92 CONFIG_RTE_LOG_HISTORY=256
93 CONFIG_RTE_LIBEAL_USE_HPET=n
94 CONFIG_RTE_EAL_ALLOW_INV_SOCKET_ID=n
95 CONFIG_RTE_EAL_ALWAYS_PANIC_ON_ERROR=n
96 CONFIG_RTE_EAL_IGB_UIO=n
97 CONFIG_RTE_EAL_VFIO=n
98 CONFIG_RTE_MALLOC_DEBUG=n
99
100 # Default driver path (or "" to disable)
101 CONFIG_RTE_EAL_PMD_PATH=""
102
103 #
104 # Special configurations in PCI Config Space for high performance
105 # They are all deprecated, and will be removed later.
106 #
107 CONFIG_RTE_PCI_CONFIG=n
108 CONFIG_RTE_PCI_EXTENDED_TAG=""
109 CONFIG_RTE_PCI_MAX_READ_REQUEST_SIZE=0
110
111 #
112 # Compile Environment Abstraction Layer to support Vmware TSC map
113 #
114 CONFIG_RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT=y
115
116 #
117 # Compile the argument parser library
118 #
119 CONFIG_RTE_LIBRTE_KVARGS=y
120
121 #
122 # Compile generic ethernet library
123 #
124 CONFIG_RTE_LIBRTE_ETHER=y
125 CONFIG_RTE_LIBRTE_ETHDEV_DEBUG=n
126 CONFIG_RTE_MAX_ETHPORTS=32
127 CONFIG_RTE_MAX_QUEUES_PER_PORT=1024
128 CONFIG_RTE_LIBRTE_IEEE1588=n
129 CONFIG_RTE_ETHDEV_QUEUE_STAT_CNTRS=16
130 CONFIG_RTE_ETHDEV_RXTX_CALLBACKS=y
131
132 #
133 # Support NIC bypass logic
134 #
135 CONFIG_RTE_NIC_BYPASS=n
136
137 #
138 # Compile burst-oriented Amazon ENA PMD driver
139 #
140 CONFIG_RTE_LIBRTE_ENA_PMD=y
141 CONFIG_RTE_LIBRTE_ENA_DEBUG_RX=n
142 CONFIG_RTE_LIBRTE_ENA_DEBUG_TX=n
143 CONFIG_RTE_LIBRTE_ENA_DEBUG_TX_FREE=n
144 CONFIG_RTE_LIBRTE_ENA_DEBUG_DRIVER=n
145 CONFIG_RTE_LIBRTE_ENA_COM_DEBUG=n
146
147 #
148 # Compile burst-oriented IGB & EM PMD drivers
149 #
150 CONFIG_RTE_LIBRTE_EM_PMD=y
151 CONFIG_RTE_LIBRTE_IGB_PMD=y
152 CONFIG_RTE_LIBRTE_E1000_DEBUG_INIT=n
153 CONFIG_RTE_LIBRTE_E1000_DEBUG_RX=n
154 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX=n
155 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX_FREE=n
156 CONFIG_RTE_LIBRTE_E1000_DEBUG_DRIVER=n
157 CONFIG_RTE_LIBRTE_E1000_PF_DISABLE_STRIP_CRC=n
158
159 #
160 # Compile burst-oriented IXGBE PMD driver
161 #
162 CONFIG_RTE_LIBRTE_IXGBE_PMD=y
163 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_INIT=n
164 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_RX=n
165 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX=n
166 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX_FREE=n
167 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_DRIVER=n
168 CONFIG_RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC=n
169 CONFIG_RTE_IXGBE_INC_VECTOR=y
170 CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=y
171
172 #
173 # Compile burst-oriented I40E PMD driver
174 #
175 CONFIG_RTE_LIBRTE_I40E_PMD=y
176 CONFIG_RTE_LIBRTE_I40E_DEBUG_INIT=n
177 CONFIG_RTE_LIBRTE_I40E_DEBUG_RX=n
178 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX=n
179 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX_FREE=n
180 CONFIG_RTE_LIBRTE_I40E_DEBUG_DRIVER=n
181 CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=y
182 CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=y
183 CONFIG_RTE_LIBRTE_I40E_RX_OLFLAGS_ENABLE=y
184 CONFIG_RTE_LIBRTE_I40E_16BYTE_RX_DESC=n
185 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_PF=64
186 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VF=4
187 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM=4
188 # interval up to 8160 us, aligned to 2 (or default value)
189 CONFIG_RTE_LIBRTE_I40E_ITR_INTERVAL=-1
190
191 #
192 # Compile burst-oriented FM10K PMD
193 #
194 CONFIG_RTE_LIBRTE_FM10K_PMD=y
195 CONFIG_RTE_LIBRTE_FM10K_DEBUG_INIT=n
196 CONFIG_RTE_LIBRTE_FM10K_DEBUG_RX=n
197 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX=n
198 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX_FREE=n
199 CONFIG_RTE_LIBRTE_FM10K_DEBUG_DRIVER=n
200 CONFIG_RTE_LIBRTE_FM10K_RX_OLFLAGS_ENABLE=y
201 CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR=y
202
203 #
204 # Compile burst-oriented Mellanox ConnectX-3 (MLX4) PMD
205 #
206 CONFIG_RTE_LIBRTE_MLX4_PMD=n
207 CONFIG_RTE_LIBRTE_MLX4_DEBUG=n
208 CONFIG_RTE_LIBRTE_MLX4_SGE_WR_N=4
209 CONFIG_RTE_LIBRTE_MLX4_MAX_INLINE=0
210 CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE=8
211 CONFIG_RTE_LIBRTE_MLX4_SOFT_COUNTERS=1
212
213 #
214 # Compile burst-oriented Mellanox ConnectX-4 (MLX5) PMD
215 #
216 CONFIG_RTE_LIBRTE_MLX5_PMD=n
217 CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
218 CONFIG_RTE_LIBRTE_MLX5_SGE_WR_N=4
219 CONFIG_RTE_LIBRTE_MLX5_MAX_INLINE=0
220 CONFIG_RTE_LIBRTE_MLX5_TX_MP_CACHE=8
221
222 #
223 # Compile burst-oriented Broadcom PMD driver
224 #
225 CONFIG_RTE_LIBRTE_BNX2X_PMD=n
226 CONFIG_RTE_LIBRTE_BNX2X_DEBUG=n
227 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_INIT=n
228 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_RX=n
229 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_TX=n
230 CONFIG_RTE_LIBRTE_BNX2X_MF_SUPPORT=n
231 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_PERIODIC=n
232
233 #
234 # Compile burst-oriented Chelsio Terminator 10GbE/40GbE (CXGBE) PMD
235 #
236 CONFIG_RTE_LIBRTE_CXGBE_PMD=y
237 CONFIG_RTE_LIBRTE_CXGBE_DEBUG=n
238 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_REG=n
239 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_MBOX=n
240 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_TX=n
241 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_RX=n
242
243 #
244 # Compile burst-oriented Cisco ENIC PMD driver
245 #
246 CONFIG_RTE_LIBRTE_ENIC_PMD=y
247 CONFIG_RTE_LIBRTE_ENIC_DEBUG=n
248
249 #
250 # Compile burst-oriented Netronome NFP PMD driver
251 #
252 CONFIG_RTE_LIBRTE_NFP_PMD=n
253 CONFIG_RTE_LIBRTE_NFP_DEBUG=n
254
255 #
256 # Compile software PMD backed by SZEDATA2 device
257 #
258 CONFIG_RTE_LIBRTE_PMD_SZEDATA2=n
259 #
260 # Defines firmware type address space.
261 # RTE_LIBRTE_PMD_SZEDATA2_AS can be:
262 # 0 - for firmwares:
263 #         NIC_100G1_LR4
264 #         HANIC_100G1_LR4
265 #         HANIC_100G1_SR10
266 # Other values raise compile time error
267 CONFIG_RTE_LIBRTE_PMD_SZEDATA2_AS=0
268
269 #
270 # Compile burst-oriented VIRTIO PMD driver
271 #
272 CONFIG_RTE_LIBRTE_VIRTIO_PMD=y
273 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_INIT=n
274 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_RX=n
275 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_TX=n
276 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DRIVER=n
277 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DUMP=n
278
279 #
280 # Compile burst-oriented VMXNET3 PMD driver
281 #
282 CONFIG_RTE_LIBRTE_VMXNET3_PMD=y
283 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_INIT=n
284 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_RX=n
285 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX=n
286 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX_FREE=n
287 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_DRIVER=n
288
289 #
290 # Compile example software rings based PMD
291 #
292 CONFIG_RTE_LIBRTE_PMD_RING=y
293 CONFIG_RTE_PMD_RING_MAX_RX_RINGS=16
294 CONFIG_RTE_PMD_RING_MAX_TX_RINGS=16
295
296 #
297 # Compile software PMD backed by PCAP files
298 #
299 CONFIG_RTE_LIBRTE_PMD_PCAP=n
300
301 #
302 # Compile link bonding PMD library
303 #
304 CONFIG_RTE_LIBRTE_PMD_BOND=y
305 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB=n
306 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB_L1=n
307
308 #
309 # Compile software PMD backed by AF_PACKET sockets (Linux only)
310 #
311 CONFIG_RTE_LIBRTE_PMD_AF_PACKET=n
312
313 #
314 # Compile Xen PMD
315 #
316 CONFIG_RTE_LIBRTE_PMD_XENVIRT=n
317
318 #
319 # Compile null PMD
320 #
321 CONFIG_RTE_LIBRTE_PMD_NULL=y
322
323 #
324 # Do prefetch of packet data within PMD driver receive function
325 #
326 CONFIG_RTE_PMD_PACKET_PREFETCH=y
327
328 #
329 # Compile generic crypto device library
330 #
331 CONFIG_RTE_LIBRTE_CRYPTODEV=y
332 CONFIG_RTE_LIBRTE_CRYPTODEV_DEBUG=n
333 CONFIG_RTE_CRYPTO_MAX_DEVS=64
334 CONFIG_RTE_CRYPTODEV_NAME_LEN=64
335
336 #
337 # Compile PMD for QuickAssist based devices
338 #
339 CONFIG_RTE_LIBRTE_PMD_QAT=n
340 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_INIT=n
341 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_TX=n
342 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_RX=n
343 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_DRIVER=n
344 #
345 # Number of sessions to create in the session memory pool
346 # on a single QuickAssist device.
347 #
348 CONFIG_RTE_QAT_PMD_MAX_NB_SESSIONS=2048
349
350 #
351 # Compile PMD for AESNI backed device
352 #
353 CONFIG_RTE_LIBRTE_PMD_AESNI_MB=n
354 CONFIG_RTE_LIBRTE_PMD_AESNI_MB_DEBUG=n
355
356 #
357 # Compile PMD for AESNI GCM device
358 #
359 CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=n
360 CONFIG_RTE_LIBRTE_PMD_AESNI_GCM_DEBUG=n
361
362 #
363 # Compile PMD for SNOW 3G device
364 #
365 CONFIG_RTE_LIBRTE_PMD_SNOW3G=n
366 CONFIG_RTE_LIBRTE_PMD_SNOW3G_DEBUG=n
367
368 #
369 # Compile PMD for NULL Crypto device
370 #
371 CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO=y
372
373 #
374 # Compile librte_ring
375 #
376 CONFIG_RTE_LIBRTE_RING=y
377 CONFIG_RTE_LIBRTE_RING_DEBUG=n
378 CONFIG_RTE_RING_SPLIT_PROD_CONS=n
379 CONFIG_RTE_RING_PAUSE_REP_COUNT=0
380
381 #
382 # Compile librte_mempool
383 #
384 CONFIG_RTE_LIBRTE_MEMPOOL=y
385 CONFIG_RTE_MEMPOOL_CACHE_MAX_SIZE=512
386 CONFIG_RTE_LIBRTE_MEMPOOL_DEBUG=n
387
388 #
389 # Compile librte_mbuf
390 #
391 CONFIG_RTE_LIBRTE_MBUF=y
392 CONFIG_RTE_LIBRTE_MBUF_DEBUG=n
393 CONFIG_RTE_MBUF_REFCNT_ATOMIC=y
394 CONFIG_RTE_PKTMBUF_HEADROOM=128
395
396 #
397 # Compile librte_timer
398 #
399 CONFIG_RTE_LIBRTE_TIMER=y
400 CONFIG_RTE_LIBRTE_TIMER_DEBUG=n
401
402 #
403 # Compile librte_cfgfile
404 #
405 CONFIG_RTE_LIBRTE_CFGFILE=y
406
407 #
408 # Compile librte_cmdline
409 #
410 CONFIG_RTE_LIBRTE_CMDLINE=y
411 CONFIG_RTE_LIBRTE_CMDLINE_DEBUG=n
412
413 #
414 # Compile librte_hash
415 #
416 CONFIG_RTE_LIBRTE_HASH=y
417 CONFIG_RTE_LIBRTE_HASH_DEBUG=n
418
419 #
420 # Compile librte_jobstats
421 #
422 CONFIG_RTE_LIBRTE_JOBSTATS=y
423
424 #
425 # Compile librte_lpm
426 #
427 CONFIG_RTE_LIBRTE_LPM=y
428 CONFIG_RTE_LIBRTE_LPM_DEBUG=n
429
430 #
431 # Compile librte_acl
432 #
433 CONFIG_RTE_LIBRTE_ACL=y
434 CONFIG_RTE_LIBRTE_ACL_DEBUG=n
435
436 #
437 # Compile librte_power
438 #
439 CONFIG_RTE_LIBRTE_POWER=n
440 CONFIG_RTE_LIBRTE_POWER_DEBUG=n
441 CONFIG_RTE_MAX_LCORE_FREQS=64
442
443 #
444 # Compile librte_net
445 #
446 CONFIG_RTE_LIBRTE_NET=y
447
448 #
449 # Compile librte_ip_frag
450 #
451 CONFIG_RTE_LIBRTE_IP_FRAG=y
452 CONFIG_RTE_LIBRTE_IP_FRAG_DEBUG=n
453 CONFIG_RTE_LIBRTE_IP_FRAG_MAX_FRAG=4
454 CONFIG_RTE_LIBRTE_IP_FRAG_TBL_STAT=n
455
456 #
457 # Compile librte_meter
458 #
459 CONFIG_RTE_LIBRTE_METER=y
460
461 #
462 # Compile librte_sched
463 #
464 CONFIG_RTE_LIBRTE_SCHED=y
465 CONFIG_RTE_SCHED_DEBUG=n
466 CONFIG_RTE_SCHED_RED=n
467 CONFIG_RTE_SCHED_COLLECT_STATS=n
468 CONFIG_RTE_SCHED_SUBPORT_TC_OV=n
469 CONFIG_RTE_SCHED_PORT_N_GRINDERS=8
470 CONFIG_RTE_SCHED_VECTOR=n
471
472 #
473 # Compile the distributor library
474 #
475 CONFIG_RTE_LIBRTE_DISTRIBUTOR=y
476
477 #
478 # Compile the reorder library
479 #
480 CONFIG_RTE_LIBRTE_REORDER=y
481
482 #
483 # Compile librte_port
484 #
485 CONFIG_RTE_LIBRTE_PORT=y
486 CONFIG_RTE_PORT_STATS_COLLECT=n
487 CONFIG_RTE_PORT_PCAP=n
488
489 #
490 # Compile librte_table
491 #
492 CONFIG_RTE_LIBRTE_TABLE=y
493 CONFIG_RTE_TABLE_STATS_COLLECT=n
494
495 #
496 # Compile librte_pipeline
497 #
498 CONFIG_RTE_LIBRTE_PIPELINE=y
499 CONFIG_RTE_PIPELINE_STATS_COLLECT=n
500
501 #
502 # Compile librte_kni
503 #
504 CONFIG_RTE_LIBRTE_KNI=n
505 CONFIG_RTE_KNI_KMOD=n
506 CONFIG_RTE_KNI_PREEMPT_DEFAULT=y
507 CONFIG_RTE_KNI_KO_DEBUG=n
508 CONFIG_RTE_KNI_VHOST=n
509 CONFIG_RTE_KNI_VHOST_MAX_CACHE_SIZE=1024
510 CONFIG_RTE_KNI_VHOST_VNET_HDR_EN=n
511 CONFIG_RTE_KNI_VHOST_DEBUG_RX=n
512 CONFIG_RTE_KNI_VHOST_DEBUG_TX=n
513
514 #
515 # Compile vhost library
516 # fuse-devel is needed to run vhost-cuse.
517 # fuse-devel enables user space char driver development
518 # vhost-user is turned on by default.
519 #
520 CONFIG_RTE_LIBRTE_VHOST=n
521 CONFIG_RTE_LIBRTE_VHOST_USER=y
522 CONFIG_RTE_LIBRTE_VHOST_NUMA=n
523 CONFIG_RTE_LIBRTE_VHOST_DEBUG=n
524
525 #
526 # Compile vhost PMD
527 # To compile, CONFIG_RTE_LIBRTE_VHOST should be enabled.
528 #
529 CONFIG_RTE_LIBRTE_PMD_VHOST=n
530
531 #
532 #Compile Xen domain0 support
533 #
534 CONFIG_RTE_LIBRTE_XEN_DOM0=n
535
536 #
537 # Enable warning directives
538 #
539 CONFIG_RTE_INSECURE_FUNCTION_WARNING=n
540
541 #
542 # Compile the test application
543 #
544 CONFIG_RTE_APP_TEST=y
545
546 #
547 # Compile the PMD test application
548 #
549 CONFIG_RTE_TEST_PMD=y
550 CONFIG_RTE_TEST_PMD_RECORD_CORE_CYCLES=n
551 CONFIG_RTE_TEST_PMD_RECORD_BURST_STATS=n