| /dpdk/doc/guides/mempool/ |
| H A D | ring.rst | 20 The underlying **rte_ring** operates in single-thread producer, 21 single-thread consumer sync mode. For more information please refer to: 26 The underlying **rte_ring** operates in single-thread producer, 32 single-thread consumer sync mode.
|
| H A D | cnxk.rst | 30 - Batch dequeue of up to 512 pointers with single instruction. 31 - Batch enqueue of up to 15 pointers with single instruction.
|
| /dpdk/doc/guides/nics/ |
| H A D | memif.rst | 43 "bsize=1024", "Size of single packet buffer", "2048", "uint16_t" 49 …able/disable zero-copy client mode. Only relevant to client, requires '--single-file-segments' eal… 55 ``client`` role. It is not possible to connect two interfaces in a single 102 regions. For no-zero-copy, rings and buffers are stored inside single memory 179 is only relevant to client and requires eal argument '--single-file-segments'. 182 With single file segments we can calculate offset from the beginning of the file 208 Only single file segments mode (EAL option --single-file-segments) is supported, as calculating 225 … --proc-type=primary --file-prefix=pmd2 --vdev=net_memif,zero-copy=yes --single-file-segments -- -i
|
| H A D | nfb.rst | 83 They are represented in DPDK as a single port. 88 bus (note that a single PCI-E 3.0 x16 slot provides only 125 Gbps theoretical 92 NUMA node, the card is represented as a single port in DPDK. To work with data 101 Since a card is always represented as a single port, but can be connected to two
|
| H A D | netvsc.rst | 26 * The device has only a single MAC address. 35 When used with 4.16 kernel only a single queue is available. 102 to use the netvsc PMD with 4.16 kernel but it is limited to a single queue. 135 go as a single direct request. The default value is 512 (bytes).
|
| H A D | af_packet.rst | 42 This restriction happens because PACKET_MMAP expects each single "frame" to fit 43 inside of a "block". And although multiple "frames" can fit inside of a single
|
| /dpdk/lib/ring/ |
| H A D | rte_ring_generic_pvt.h | 15 uint32_t new_val, uint32_t single, uint32_t enqueue) in __rte_ring_update_tail() argument 25 if (!single) in __rte_ring_update_tail()
|
| H A D | rte_ring_c11_pvt.h | 16 uint32_t new_val, uint32_t single, uint32_t enqueue) in __rte_ring_update_tail() argument 24 if (!single) in __rte_ring_update_tail()
|
| H A D | rte_ring_core.h | 76 uint32_t single; member
|
| /dpdk/doc/guides/howto/ |
| H A D | debug_troubleshoot.rst | 8 stages making use of single or multiple threads. Applications can use poll mode 12 * single or multiple primary processes 14 * single primary and single secondary 16 * single primary and multiple secondaries 25 It is difficult to cover all possible issues; in a single attempt. With 33 causes of issues in the guide. Let us assume the sample makes use of a single 158 * Use ``rte_ring_dump`` to validate for all single producer flag is set to 180 * Use ``rte_ring_dump`` to validate for all single consumer flag is set to 203 * Heavy processing cycles at single or multiple processing stages.
|
| /dpdk/doc/guides/prog_guide/ |
| H A D | traffic_management.rst | 21 * Traffic shaping: single/dual rate, private (per node) and 49 nodes at the level, type of the shaper(dual rate, single rate) supported at 78 The TM API provides support for single rate and dual rate shapers (rate 84 instance). A private shaper is used to perform traffic shaping for a single 89 of shaper profiles. Any shaper profile (single rate or dual rate shaper) can be 92 Single rate shapers use a single token bucket. Therefore, single rate shaper is 95 and the burst size for the single rate shaper. Dual rate shapers use both the 126 a single leaf node, while a shared WRED context is used to perform congestion 171 Each non-leaf node has multiple inputs (its children nodes) and single output
|
| H A D | thread_safety_dpdk_functions.rst | 11 The run-time environment of the DPDK is typically a single thread per logical core. 30 cannot be done in multiple threads without using locking when a single hash or LPM table is accesse… 41 Moreover, it provides high performance for either multi- or single-consumer/producer enqueue/dequeu… 54 …ations, the initial configuration of the network ports would be done by a single thread at startup.
|
| H A D | eventdev.rst | 136 Atomic scheduling on a queue ensures that a single flow is not present on two 146 one port will be connected to a queue. Queues configured with the single-link 148 of being linked to a single port (see below for port and queue linking details). 174 Sample eventdev usage, with RX, two atomic stages and a single-link to TX. 249 * id 2, single-link queue 303 Linking all workers to atomic queues, and the TX core to the single-link queue 323 A single function call tells the eventdev instance to start processing 437 A single function call tells the eventdev instance to stop processing events.
|
| H A D | kernel_nic_interface.rst | 51 parm: kthread_mode: Kernel thread mode (default=single): 52 single Single kernel thread mode enabled. 111 module supports two options: "single kernel thread" mode and "multiple 118 # insmod <build_dir>/kernel/linux/kni/rte_kni.ko kthread_mode=single 145 If the ``kthread_mode`` parameter is not specified, the "single kernel 250 (both single and multi-threaded modes).
|
| H A D | multi_proc_support.rst | 67 ``--single-file-segments`` switch, secondary processes must be run with the 99 is to have a single primary process instance that acts as a load-balancer or 133 …Independent DPDK instances running side-by-side on a single machine cannot share any network ports. 139 In the same way that it is possible to run independent DPDK applications side- by-side on a single … 167 * All DPDK processes running as a single application and using shared memory must have distinct c… 188 …The minimum number of HPET comparators available to Linux* userspace can be just a single comparat… 322 Due to the underlying IPC implementation being single-threaded, recursive
|
| /dpdk/lib/acl/ |
| H A D | acl_gen.c | 18 int32_t single; member 48 counts->single, counts->single * sizeof(uint64_t), in acl_gen_log_stats() 245 counts->single++; in acl_count_trie_types() 438 indices->match_start = indices->single_index + counts->single + 1; in acl_calc_counts_indices()
|
| /dpdk/app/test-cmdline/ |
| H A D | commands.c | 55 cmdline_fixed_string_t single; member 67 TOKEN_STRING_INITIALIZER(struct cmd_single_result, single,
|
| /dpdk/doc/guides/sample_app_ug/ |
| H A D | skeleton.rst | 83 function on an lcore. In this example ``lcore_main()`` is called on a single 89 :start-after: Called on single lcore. 8< 90 :end-before: >8 End of called on single lcore.
|
| H A D | compiling.rst | 36 To compile a single application
|
| H A D | flow_filtering.rst | 124 to a single port. 128 :start-after: Configuring number of RX and TX queues connected to single port. 8< 129 :end-before: >8 End of Configuring RX and TX queues connected to single port.
|
| /dpdk/doc/guides/linux_gsg/ |
| H A D | eal_args.include.rst | 28 single number separator. 29 The grouping ``()`` can be omitted for single element group. 74 Load external drivers. An argument can be a single shared object file, or a
|
| /dpdk/doc/guides/compressdevs/ |
| H A D | overview.rst | 28 (i.e. single segment).
|
| H A D | qat_comp.rst | 40 * Queue-pairs are thread-safe on Intel CPUs but Queues are not (that is, within a single
|
| /dpdk/kernel/freebsd/ |
| H A D | meson.build | 8 # values from the environment. Each module only has a single source file
|
| /dpdk/doc/guides/tools/ |
| H A D | comp_perf.rst | 10 one type of compression PMD can be measured during single application 89 …``--compress-level N``: compression level, which could be a single value, list or range (default: …
|