| /dpdk/drivers/net/mlx5/ |
| H A D | mlx5_nta_rss.c | 65 rss_conf->types = rss_type; in mlx5_nta_ptype_rss_flow_create() 76 (unsigned long)rss_conf->types, mark_id); in mlx5_nta_ptype_rss_flow_create() 92 uint64_t rss_types = rte_eth_rss_hf_refine(rss_ctx->rss_conf->types); in mlx5_hw_rss_expand_l3() 179 uint64_t rss_types = rte_eth_rss_hf_refine(rss_ctx->rss_conf->types); in mlx5_hw_rss_expand_l4() 489 uint64_t rss_types = rte_eth_rss_hf_refine(rss_conf->types); in flow_nta_handle_rss() 531 ptype_rss_conf.types = rss_types; in flow_nta_handle_rss() 562 ptype_rss_conf.types &= ~MLX5_IPV6_LAYER_TYPES; in flow_nta_handle_rss() 569 ptype_rss_conf.types &= ~MLX5_IPV4_LAYER_TYPES; in flow_nta_handle_rss()
|
| /dpdk/drivers/net/hns3/ |
| H A D | hns3_rss.c | 494 hns3_check_rss_types_valid(struct hns3_hw *hw, uint64_t types) in hns3_check_rss_types_valid() argument 506 bool has_l4_src_dst = !!(types & HNS3_RSS_SUPPORT_L4_SRC_DST); in hns3_check_rss_types_valid() 507 bool has_ip_pkt = !!(types & ip_mask); in hns3_check_rss_types_valid() 510 if (types == 0) in hns3_check_rss_types_valid() 513 if ((types & HNS3_ETH_RSS_SUPPORT) == 0) { in hns3_check_rss_types_valid() 515 types); in hns3_check_rss_types_valid() 519 if ((types & HNS3_RSS_SUPPORT_L3_SRC_DST) != 0 && in hns3_check_rss_types_valid() 520 (types & HNS3_RSS_SUPPORT_FLOW_TYPE) == 0) { in hns3_check_rss_types_valid() 525 if (has_l4_src_dst && (types & ip_l4_mask) == 0) { in hns3_check_rss_types_valid() 538 if ((types & ~HNS3_ETH_RSS_SUPPORT) != 0) { in hns3_check_rss_types_valid() [all …]
|
| H A D | hns3_rss.h | 187 bool hns3_check_rss_types_valid(struct hns3_hw *hw, uint64_t types);
|
| /dpdk/doc/guides/vdpadevs/ |
| H A D | sfc.rst | 83 for the log types supported by the driver. The option is used with 89 be used either for some specific log type or for a subset of types. 91 SFC vDPA PMD provides the following log types available for control: 99 Matches a subset of per-port log types registered during runtime.
|
| /dpdk/drivers/net/tap/bpf/ |
| H A D | meson.build | 44 # The include files <linux/bpf.h> and others include <asm/types.h> 45 # but <asm/types.h> is not defined for multi-lib environment target.
|
| /dpdk/drivers/net/mlx4/ |
| H A D | mlx4_flow.h | 50 uint64_t mlx4_conv_rss_types(struct mlx4_priv *priv, uint64_t types,
|
| /dpdk/lib/eal/freebsd/ |
| H A D | meson.build | 24 #include <sys/types.h>
|
| /dpdk/dts/framework/testbed_model/traffic_generator/ |
| H A D | scapy.py | |
| /dpdk/dts/ |
| H A D | pyproject.toml | 24 types-PyYAML = "^6.0.8"
|
| /dpdk/doc/guides/nics/ |
| H A D | igc.rst | 71 The Flow Director filters includes the following types: 106 testpmd> flow create 0 ingress pattern end actions rss types ipv4-udp end / end
|
| H A D | sfc_efx.rst | 508 for the log types supported by the driver. The option is used with 514 be used either for some specific log type or for a subset of types. 516 SFC EFX PMD provides the following log types available for control: 524 Matches a subset of per-port log types registered during runtime.
|
| H A D | avp.rst | 28 significantly improved throughput and latency over other device types.
|
| /dpdk/doc/guides/prog_guide/ |
| H A D | stack_lib.rst | 28 The library supports two types of stacks: standard (lock-based) and lock-free. 29 Both types use the same set of interfaces, but their implementations differ.
|
| /dpdk/doc/guides/eventdevs/ |
| H A D | opdl.rst | 96 adds NEW event types, and TX (last dequeue) implicitly does RELEASE event types.
|
| H A D | sw.rst | 124 The software eventdev does not support creating queues that handle all types of 128 The reason to not allow Atomic, Ordered and Parallel event types in the
|
| H A D | dlb2.rst | 56 queue's scheduling types are controlled by the event queue configuration. 59 ``nb_atomic_order_sequences`` determines the supported scheduling types. 126 Finally, even though all 3 event types are supported on the same QID by 128 as possible, since mixing types on the same queue uses valuable reorder 252 DLB supports 4 event and queue service priority levels. For both priority types, 261 across the types is always equal, and both types are served in a round robin manner.
|
| H A D | octeontx.rst | 26 - Supports ATOMIC, ORDERED, PARALLEL schedule types per flow
|
| /dpdk/doc/guides/mempool/ |
| H A D | stack.rst | 15 over-provisioned. Users are encouraged to benchmark with multiple mempool types
|
| /dpdk/doc/guides/cryptodevs/ |
| H A D | virtio.rst | 29 * Only has two types of queues: data queue and control queue. These two queues
|
| /dpdk/doc/guides/contributing/ |
| H A D | coding_style.rst | 249 * Enum types should be used in preference to macros #defining a set of (sequential) values. 250 * Enum types should be prefixed with ``rte_`` and the elements by a suitable prefix [generally star… 275 …ace between asterisks and adjacent tokens, except for tokens that are identifiers related to types. 276 (These identifiers are the names of basic types, type qualifiers, and typedef-names other than the … 299 * Names following extremely long types, which therefore cannot be easily aligned with the rest, sho… 372 Avoid using typedefs for structure types. 412 …It is recommended to use typedefs to define function pointer types, for reasons of code readabilit… 600 * When prototyping functions, associate names with parameter types, for example: 682 * Functions which create objects, or allocate memory, should return pointer types, and NULL on erro… 688 …Note, however, to allow consistency across functions returning integer or pointer types, the previ… [all …]
|
| /dpdk/doc/guides/sample_app_ug/ |
| H A D | ntb.rst | 11 This sample supports 4 types of packet forwarding mode.
|
| H A D | dist_app.rst | 65 The distributor application consists of four types of threads: a receive 69 The ``main()`` function launches threads of these four types. Each thread
|
| /dpdk/doc/guides/tools/ |
| H A D | dumpcap.rst | 82 * Link data types. Only EN10MB (Ethernet) is supported.
|
| /dpdk/doc/guides/rawdevs/ |
| H A D | cnxk_bphy.rst | 54 Message types along with description are listed below. As for the usage examples please refer to 147 Message types along with description are listed below. For some usage examples please refer to
|
| /dpdk/drivers/net/ionic/ |
| H A D | ionic_lif.h | 241 int ionic_lif_rss_config(struct ionic_lif *lif, const uint16_t types,
|