net/sfc: enable TSO by default
[dpdk.git] / config / common_base
1 #   BSD LICENSE
2 #
3 #   Copyright(c) 2010-2017 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=RTE_LOG_INFO
92 CONFIG_RTE_LOG_DP_LEVEL=RTE_LOG_INFO
93 CONFIG_RTE_LOG_HISTORY=256
94 CONFIG_RTE_LIBEAL_USE_HPET=n
95 CONFIG_RTE_EAL_ALLOW_INV_SOCKET_ID=n
96 CONFIG_RTE_EAL_ALWAYS_PANIC_ON_ERROR=n
97 CONFIG_RTE_EAL_IGB_UIO=n
98 CONFIG_RTE_EAL_VFIO=n
99 CONFIG_RTE_MALLOC_DEBUG=n
100
101 # Default driver path (or "" to disable)
102 CONFIG_RTE_EAL_PMD_PATH=""
103
104 #
105 # Compile Environment Abstraction Layer to support Vmware TSC map
106 #
107 CONFIG_RTE_LIBRTE_EAL_VMWARE_TSC_MAP_SUPPORT=y
108
109 #
110 # Compile the argument parser library
111 #
112 CONFIG_RTE_LIBRTE_KVARGS=y
113
114 #
115 # Compile generic ethernet library
116 #
117 CONFIG_RTE_LIBRTE_ETHER=y
118 CONFIG_RTE_LIBRTE_ETHDEV_DEBUG=n
119 CONFIG_RTE_MAX_ETHPORTS=32
120 CONFIG_RTE_MAX_QUEUES_PER_PORT=1024
121 CONFIG_RTE_LIBRTE_IEEE1588=n
122 CONFIG_RTE_ETHDEV_QUEUE_STAT_CNTRS=16
123 CONFIG_RTE_ETHDEV_RXTX_CALLBACKS=y
124
125 #
126 # Turn off Tx preparation stage
127 #
128 # Warning: rte_ethdev_tx_prepare() can be safely disabled only if using a
129 # driver which do not implement any Tx preparation.
130 #
131 CONFIG_RTE_ETHDEV_TX_PREPARE_NOOP=n
132
133 #
134 # Support NIC bypass logic
135 #
136 CONFIG_RTE_NIC_BYPASS=n
137
138 #
139 # Compile burst-oriented Amazon ENA PMD driver
140 #
141 CONFIG_RTE_LIBRTE_ENA_PMD=y
142 CONFIG_RTE_LIBRTE_ENA_DEBUG_RX=n
143 CONFIG_RTE_LIBRTE_ENA_DEBUG_TX=n
144 CONFIG_RTE_LIBRTE_ENA_DEBUG_TX_FREE=n
145 CONFIG_RTE_LIBRTE_ENA_DEBUG_DRIVER=n
146 CONFIG_RTE_LIBRTE_ENA_COM_DEBUG=n
147
148 #
149 # Compile burst-oriented IGB & EM PMD drivers
150 #
151 CONFIG_RTE_LIBRTE_EM_PMD=y
152 CONFIG_RTE_LIBRTE_IGB_PMD=y
153 CONFIG_RTE_LIBRTE_E1000_DEBUG_INIT=n
154 CONFIG_RTE_LIBRTE_E1000_DEBUG_RX=n
155 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX=n
156 CONFIG_RTE_LIBRTE_E1000_DEBUG_TX_FREE=n
157 CONFIG_RTE_LIBRTE_E1000_DEBUG_DRIVER=n
158 CONFIG_RTE_LIBRTE_E1000_PF_DISABLE_STRIP_CRC=n
159
160 #
161 # Compile burst-oriented IXGBE PMD driver
162 #
163 CONFIG_RTE_LIBRTE_IXGBE_PMD=y
164 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_INIT=n
165 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_RX=n
166 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX=n
167 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_TX_FREE=n
168 CONFIG_RTE_LIBRTE_IXGBE_DEBUG_DRIVER=n
169 CONFIG_RTE_LIBRTE_IXGBE_PF_DISABLE_STRIP_CRC=n
170 CONFIG_RTE_IXGBE_INC_VECTOR=y
171 CONFIG_RTE_IXGBE_RX_OLFLAGS_ENABLE=y
172
173 #
174 # Compile burst-oriented I40E PMD driver
175 #
176 CONFIG_RTE_LIBRTE_I40E_PMD=y
177 CONFIG_RTE_LIBRTE_I40E_DEBUG_INIT=n
178 CONFIG_RTE_LIBRTE_I40E_DEBUG_RX=n
179 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX=n
180 CONFIG_RTE_LIBRTE_I40E_DEBUG_TX_FREE=n
181 CONFIG_RTE_LIBRTE_I40E_DEBUG_DRIVER=n
182 CONFIG_RTE_LIBRTE_I40E_RX_ALLOW_BULK_ALLOC=y
183 CONFIG_RTE_LIBRTE_I40E_INC_VECTOR=y
184 CONFIG_RTE_LIBRTE_I40E_RX_OLFLAGS_ENABLE=y
185 CONFIG_RTE_LIBRTE_I40E_16BYTE_RX_DESC=n
186 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_PF=64
187 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VF=4
188 CONFIG_RTE_LIBRTE_I40E_QUEUE_NUM_PER_VM=4
189 # interval up to 8160 us, aligned to 2 (or default value)
190 CONFIG_RTE_LIBRTE_I40E_ITR_INTERVAL=-1
191
192 #
193 # Compile burst-oriented FM10K PMD
194 #
195 CONFIG_RTE_LIBRTE_FM10K_PMD=y
196 CONFIG_RTE_LIBRTE_FM10K_DEBUG_INIT=n
197 CONFIG_RTE_LIBRTE_FM10K_DEBUG_RX=n
198 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX=n
199 CONFIG_RTE_LIBRTE_FM10K_DEBUG_TX_FREE=n
200 CONFIG_RTE_LIBRTE_FM10K_DEBUG_DRIVER=n
201 CONFIG_RTE_LIBRTE_FM10K_RX_OLFLAGS_ENABLE=y
202 CONFIG_RTE_LIBRTE_FM10K_INC_VECTOR=y
203
204 #
205 # Compile burst-oriented Mellanox ConnectX-3 (MLX4) PMD
206 #
207 CONFIG_RTE_LIBRTE_MLX4_PMD=n
208 CONFIG_RTE_LIBRTE_MLX4_DEBUG=n
209 CONFIG_RTE_LIBRTE_MLX4_SGE_WR_N=4
210 CONFIG_RTE_LIBRTE_MLX4_MAX_INLINE=0
211 CONFIG_RTE_LIBRTE_MLX4_TX_MP_CACHE=8
212 CONFIG_RTE_LIBRTE_MLX4_SOFT_COUNTERS=1
213
214 #
215 # Compile burst-oriented Mellanox ConnectX-4 & ConnectX-5 (MLX5) PMD
216 #
217 CONFIG_RTE_LIBRTE_MLX5_PMD=n
218 CONFIG_RTE_LIBRTE_MLX5_DEBUG=n
219 CONFIG_RTE_LIBRTE_MLX5_TX_MP_CACHE=8
220
221 #
222 # Compile burst-oriented Broadcom PMD driver
223 #
224 CONFIG_RTE_LIBRTE_BNX2X_PMD=n
225 CONFIG_RTE_LIBRTE_BNX2X_DEBUG=n
226 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_INIT=n
227 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_RX=n
228 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_TX=n
229 CONFIG_RTE_LIBRTE_BNX2X_MF_SUPPORT=n
230 CONFIG_RTE_LIBRTE_BNX2X_DEBUG_PERIODIC=n
231
232 #
233 # Compile burst-oriented Chelsio Terminator 10GbE/40GbE (CXGBE) PMD
234 #
235 CONFIG_RTE_LIBRTE_CXGBE_PMD=y
236 CONFIG_RTE_LIBRTE_CXGBE_DEBUG=n
237 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_REG=n
238 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_MBOX=n
239 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_TX=n
240 CONFIG_RTE_LIBRTE_CXGBE_DEBUG_RX=n
241
242 #
243 # Compile burst-oriented Cisco ENIC PMD driver
244 #
245 CONFIG_RTE_LIBRTE_ENIC_PMD=y
246 CONFIG_RTE_LIBRTE_ENIC_DEBUG=n
247
248 #
249 # Compile burst-oriented Netronome NFP PMD driver
250 #
251 CONFIG_RTE_LIBRTE_NFP_PMD=n
252 CONFIG_RTE_LIBRTE_NFP_DEBUG=n
253
254 #
255 # Compile burst-oriented Broadcom BNXT PMD driver
256 #
257 CONFIG_RTE_LIBRTE_BNXT_PMD=y
258
259 #
260 # Compile burst-oriented Solarflare libefx-based PMD
261 #
262 CONFIG_RTE_LIBRTE_SFC_EFX_PMD=y
263 CONFIG_RTE_LIBRTE_SFC_EFX_DEBUG=n
264
265 #
266 # Compile software PMD backed by SZEDATA2 device
267 #
268 CONFIG_RTE_LIBRTE_PMD_SZEDATA2=n
269 #
270 # Defines firmware type address space.
271 # RTE_LIBRTE_PMD_SZEDATA2_AS can be:
272 # 0 - for firmwares:
273 #         NIC_100G1_LR4
274 #         HANIC_100G1_LR4
275 #         HANIC_100G1_SR10
276 # Other values raise compile time error
277 CONFIG_RTE_LIBRTE_PMD_SZEDATA2_AS=0
278
279 #
280 # Compile burst-oriented Cavium Thunderx NICVF PMD driver
281 #
282 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_PMD=n
283 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_INIT=n
284 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_RX=n
285 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_TX=n
286 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_DRIVER=n
287 CONFIG_RTE_LIBRTE_THUNDERX_NICVF_DEBUG_MBOX=n
288
289 #
290 # Compile burst-oriented VIRTIO PMD driver
291 #
292 CONFIG_RTE_LIBRTE_VIRTIO_PMD=y
293 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_INIT=n
294 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_RX=n
295 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_TX=n
296 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DRIVER=n
297 CONFIG_RTE_LIBRTE_VIRTIO_DEBUG_DUMP=n
298
299 #
300 # Compile virtio device emulation inside virtio PMD driver
301 #
302 CONFIG_RTE_VIRTIO_USER=n
303
304 #
305 # Compile burst-oriented VMXNET3 PMD driver
306 #
307 CONFIG_RTE_LIBRTE_VMXNET3_PMD=y
308 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_INIT=n
309 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_RX=n
310 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX=n
311 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_TX_FREE=n
312 CONFIG_RTE_LIBRTE_VMXNET3_DEBUG_DRIVER=n
313
314 #
315 # Compile example software rings based PMD
316 #
317 CONFIG_RTE_LIBRTE_PMD_RING=y
318 CONFIG_RTE_PMD_RING_MAX_RX_RINGS=16
319 CONFIG_RTE_PMD_RING_MAX_TX_RINGS=16
320
321 #
322 # Compile software PMD backed by PCAP files
323 #
324 CONFIG_RTE_LIBRTE_PMD_PCAP=n
325
326 #
327 # Compile link bonding PMD library
328 #
329 CONFIG_RTE_LIBRTE_PMD_BOND=y
330 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB=n
331 CONFIG_RTE_LIBRTE_BOND_DEBUG_ALB_L1=n
332
333 # QLogic 10G/25G/40G/50G/100G PMD
334 #
335 CONFIG_RTE_LIBRTE_QEDE_PMD=y
336 CONFIG_RTE_LIBRTE_QEDE_DEBUG_INIT=n
337 CONFIG_RTE_LIBRTE_QEDE_DEBUG_INFO=n
338 CONFIG_RTE_LIBRTE_QEDE_DEBUG_DRIVER=n
339 CONFIG_RTE_LIBRTE_QEDE_DEBUG_TX=n
340 CONFIG_RTE_LIBRTE_QEDE_DEBUG_RX=n
341 #Provides abs path/name of the firmware file.
342 #Empty string denotes driver will use default firmware
343 CONFIG_RTE_LIBRTE_QEDE_FW=""
344
345 #
346 # Compile software PMD backed by AF_PACKET sockets (Linux only)
347 #
348 CONFIG_RTE_LIBRTE_PMD_AF_PACKET=n
349
350 #
351 # Compile the TAP PMD
352 # It is enabled by default for Linux only.
353 #
354 CONFIG_RTE_LIBRTE_PMD_TAP=n
355
356 #
357 # Compile Xen PMD
358 #
359 CONFIG_RTE_LIBRTE_PMD_XENVIRT=n
360
361 #
362 # Compile null PMD
363 #
364 CONFIG_RTE_LIBRTE_PMD_NULL=y
365
366 #
367 # Do prefetch of packet data within PMD driver receive function
368 #
369 CONFIG_RTE_PMD_PACKET_PREFETCH=y
370
371 #
372 # Compile generic crypto device library
373 #
374 CONFIG_RTE_LIBRTE_CRYPTODEV=y
375 CONFIG_RTE_LIBRTE_CRYPTODEV_DEBUG=n
376 CONFIG_RTE_CRYPTO_MAX_DEVS=64
377 CONFIG_RTE_CRYPTODEV_NAME_LEN=64
378
379 #
380 # Compile PMD for ARMv8 Crypto device
381 #
382 CONFIG_RTE_LIBRTE_PMD_ARMV8_CRYPTO=n
383 CONFIG_RTE_LIBRTE_PMD_ARMV8_CRYPTO_DEBUG=n
384
385 #
386 # Compile PMD for QuickAssist based devices
387 #
388 CONFIG_RTE_LIBRTE_PMD_QAT=n
389 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_INIT=n
390 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_TX=n
391 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_RX=n
392 CONFIG_RTE_LIBRTE_PMD_QAT_DEBUG_DRIVER=n
393 #
394 # Number of sessions to create in the session memory pool
395 # on a single QuickAssist device.
396 #
397 CONFIG_RTE_QAT_PMD_MAX_NB_SESSIONS=2048
398
399 #
400 # Compile PMD for AESNI backed device
401 #
402 CONFIG_RTE_LIBRTE_PMD_AESNI_MB=n
403 CONFIG_RTE_LIBRTE_PMD_AESNI_MB_DEBUG=n
404
405 #
406 # Compile PMD for Software backed device
407 #
408 CONFIG_RTE_LIBRTE_PMD_OPENSSL=n
409 CONFIG_RTE_LIBRTE_PMD_OPENSSL_DEBUG=n
410
411 #
412 # Compile PMD for AESNI GCM device
413 #
414 CONFIG_RTE_LIBRTE_PMD_AESNI_GCM=n
415 CONFIG_RTE_LIBRTE_PMD_AESNI_GCM_DEBUG=n
416
417 #
418 # Compile PMD for SNOW 3G device
419 #
420 CONFIG_RTE_LIBRTE_PMD_SNOW3G=n
421 CONFIG_RTE_LIBRTE_PMD_SNOW3G_DEBUG=n
422
423 #
424 # Compile PMD for KASUMI device
425 #
426 CONFIG_RTE_LIBRTE_PMD_KASUMI=n
427 CONFIG_RTE_LIBRTE_PMD_KASUMI_DEBUG=n
428
429 #
430 # Compile PMD for ZUC device
431 #
432 CONFIG_RTE_LIBRTE_PMD_ZUC=n
433 CONFIG_RTE_LIBRTE_PMD_ZUC_DEBUG=n
434
435 #
436 # Compile PMD for Crypto Scheduler device
437 #
438 CONFIG_RTE_LIBRTE_PMD_CRYPTO_SCHEDULER=n
439 CONFIG_RTE_LIBRTE_PMD_CRYPTO_SCHEDULER_DEBUG=n
440
441 #
442 # Compile PMD for NULL Crypto device
443 #
444 CONFIG_RTE_LIBRTE_PMD_NULL_CRYPTO=y
445
446 #
447 # Compile librte_ring
448 #
449 CONFIG_RTE_LIBRTE_RING=y
450 CONFIG_RTE_LIBRTE_RING_DEBUG=n
451 CONFIG_RTE_RING_SPLIT_PROD_CONS=n
452 CONFIG_RTE_RING_PAUSE_REP_COUNT=0
453
454 #
455 # Compile librte_mempool
456 #
457 CONFIG_RTE_LIBRTE_MEMPOOL=y
458 CONFIG_RTE_MEMPOOL_CACHE_MAX_SIZE=512
459 CONFIG_RTE_LIBRTE_MEMPOOL_DEBUG=n
460
461 #
462 # Compile librte_mbuf
463 #
464 CONFIG_RTE_LIBRTE_MBUF=y
465 CONFIG_RTE_LIBRTE_MBUF_DEBUG=n
466 CONFIG_RTE_MBUF_DEFAULT_MEMPOOL_OPS="ring_mp_mc"
467 CONFIG_RTE_MBUF_REFCNT_ATOMIC=y
468 CONFIG_RTE_PKTMBUF_HEADROOM=128
469
470 #
471 # Compile librte_timer
472 #
473 CONFIG_RTE_LIBRTE_TIMER=y
474 CONFIG_RTE_LIBRTE_TIMER_DEBUG=n
475
476 #
477 # Compile librte_cfgfile
478 #
479 CONFIG_RTE_LIBRTE_CFGFILE=y
480
481 #
482 # Compile librte_cmdline
483 #
484 CONFIG_RTE_LIBRTE_CMDLINE=y
485 CONFIG_RTE_LIBRTE_CMDLINE_DEBUG=n
486
487 #
488 # Compile librte_hash
489 #
490 CONFIG_RTE_LIBRTE_HASH=y
491 CONFIG_RTE_LIBRTE_HASH_DEBUG=n
492
493 #
494 # Compile librte_efd
495 #
496 CONFIG_RTE_LIBRTE_EFD=y
497
498 #
499 # Compile librte_jobstats
500 #
501 CONFIG_RTE_LIBRTE_JOBSTATS=y
502
503 #
504 # Compile librte_lpm
505 #
506 CONFIG_RTE_LIBRTE_LPM=y
507 CONFIG_RTE_LIBRTE_LPM_DEBUG=n
508
509 #
510 # Compile librte_acl
511 #
512 CONFIG_RTE_LIBRTE_ACL=y
513 CONFIG_RTE_LIBRTE_ACL_DEBUG=n
514
515 #
516 # Compile librte_power
517 #
518 CONFIG_RTE_LIBRTE_POWER=n
519 CONFIG_RTE_LIBRTE_POWER_DEBUG=n
520 CONFIG_RTE_MAX_LCORE_FREQS=64
521
522 #
523 # Compile librte_net
524 #
525 CONFIG_RTE_LIBRTE_NET=y
526
527 #
528 # Compile librte_ip_frag
529 #
530 CONFIG_RTE_LIBRTE_IP_FRAG=y
531 CONFIG_RTE_LIBRTE_IP_FRAG_DEBUG=n
532 CONFIG_RTE_LIBRTE_IP_FRAG_MAX_FRAG=4
533 CONFIG_RTE_LIBRTE_IP_FRAG_TBL_STAT=n
534
535 #
536 # Compile librte_meter
537 #
538 CONFIG_RTE_LIBRTE_METER=y
539
540 #
541 # Compile librte_sched
542 #
543 CONFIG_RTE_LIBRTE_SCHED=y
544 CONFIG_RTE_SCHED_DEBUG=n
545 CONFIG_RTE_SCHED_RED=n
546 CONFIG_RTE_SCHED_COLLECT_STATS=n
547 CONFIG_RTE_SCHED_SUBPORT_TC_OV=n
548 CONFIG_RTE_SCHED_PORT_N_GRINDERS=8
549 CONFIG_RTE_SCHED_VECTOR=n
550
551 #
552 # Compile the distributor library
553 #
554 CONFIG_RTE_LIBRTE_DISTRIBUTOR=y
555
556 #
557 # Compile the reorder library
558 #
559 CONFIG_RTE_LIBRTE_REORDER=y
560
561 #
562 # Compile librte_port
563 #
564 CONFIG_RTE_LIBRTE_PORT=y
565 CONFIG_RTE_PORT_STATS_COLLECT=n
566 CONFIG_RTE_PORT_PCAP=n
567
568 #
569 # Compile librte_table
570 #
571 CONFIG_RTE_LIBRTE_TABLE=y
572 CONFIG_RTE_TABLE_STATS_COLLECT=n
573
574 #
575 # Compile librte_pipeline
576 #
577 CONFIG_RTE_LIBRTE_PIPELINE=y
578 CONFIG_RTE_PIPELINE_STATS_COLLECT=n
579
580 #
581 # Compile librte_kni
582 #
583 CONFIG_RTE_LIBRTE_KNI=n
584 CONFIG_RTE_KNI_KMOD=n
585 CONFIG_RTE_KNI_KMOD_ETHTOOL=n
586 CONFIG_RTE_KNI_PREEMPT_DEFAULT=y
587 CONFIG_RTE_KNI_VHOST=n
588 CONFIG_RTE_KNI_VHOST_MAX_CACHE_SIZE=1024
589 CONFIG_RTE_KNI_VHOST_VNET_HDR_EN=n
590
591 #
592 # Compile the pdump library
593 #
594 CONFIG_RTE_LIBRTE_PDUMP=y
595
596 #
597 # Compile vhost user library
598 #
599 CONFIG_RTE_LIBRTE_VHOST=n
600 CONFIG_RTE_LIBRTE_VHOST_NUMA=n
601 CONFIG_RTE_LIBRTE_VHOST_DEBUG=n
602
603 #
604 # Compile vhost PMD
605 # To compile, CONFIG_RTE_LIBRTE_VHOST should be enabled.
606 #
607 CONFIG_RTE_LIBRTE_PMD_VHOST=n
608
609 #
610 #Compile Xen domain0 support
611 #
612 CONFIG_RTE_LIBRTE_XEN_DOM0=n
613
614 #
615 # Compile the test application
616 #
617 CONFIG_RTE_APP_TEST=y
618 CONFIG_RTE_APP_TEST_RESOURCE_TAR=n
619
620 #
621 # Compile the PMD test application
622 #
623 CONFIG_RTE_TEST_PMD=y
624 CONFIG_RTE_TEST_PMD_RECORD_CORE_CYCLES=n
625 CONFIG_RTE_TEST_PMD_RECORD_BURST_STATS=n
626
627 #
628 # Compile the crypto performance application
629 #
630 CONFIG_RTE_APP_CRYPTO_PERF=y