| /dpdk/buildtools/pkg-config/ |
| H A D | meson.build | 11 # regular libs first, and then the extra libs from Libs.private field, 14 # Libs Libs.private Requires Requires.private 17 # However, the DPDK drivers are linked only in static builds (Libs.private), 20 # included in the field Requires (after Libs.private). 23 # listing the static files in Libs.private with the explicit syntax -l:libfoo.a. 25 # in the field Libs.private. The second occurences of DPDK libraries,
|
| /dpdk/drivers/gpu/cuda/ |
| H A D | cuda.c | 595 struct cuda_info *private; in cuda_dev_info_get() local 666 res = pfn_cuCtxGetDevice(&(private->cu_dev)); in cuda_dev_info_get() 675 res = pfn_cuDeviceGetName(private->gpu_name, in cuda_dev_info_get() 676 RTE_DEV_NAME_MAX_LEN, private->cu_dev); in cuda_dev_info_get() 1099 struct cuda_info *private; in cuda_wmb() local 1106 private = (struct cuda_info *)dev->mpshared->dev_private; in cuda_wmb() 1182 struct cuda_info *private; in cuda_gpu_probe() local 1332 private->cu_dev = cu_dev_id; in cuda_gpu_probe() 1333 res = pfn_cuDeviceGetName(private->gpu_name, in cuda_gpu_probe() 1355 if (private->gdr_supported == 0) in cuda_gpu_probe() [all …]
|
| /dpdk/doc/guides/prog_guide/ |
| H A D | traffic_management.rst | 21 * Traffic shaping: single/dual rate, private (per node) and 24 drop, WRED, private (per node) and shared (by multiple nodes) WRED contexts 42 levels, maximum number of shapers, maximum number of private shapers, type of 55 support is available for private shaper, dual rate shaper, maximum and minimum 82 Each hierarchy node has zero or one private shaper (only one node using it) 84 instance). A private shaper is used to perform traffic shaping for a single 88 The configuration of private and shared shapers is done through the definition 90 used by one or several shaper instances (either private or shared). 125 context). A private WRED context is used to perform congestion management for 129 The configuration of WRED private and shared contexts is done through the [all …]
|
| H A D | cryptodev_lib.rst | 208 Each Crypto poll mode driver defines its own private array of capabilities 430 section, there is also the ability to allocate private memory with the 511 session in the mempool's private data field. 533 private session data. Once this is done, session should be freed using 843 * so some private data is required to be reserved. 867 /* Get private session data size. */ 880 * Create session private data mempool for the 881 * private session data for the crypto device. 892 /* Use of the same mempool for session header and private data */ 1043 and the max private session size. [all …]
|
| H A D | event_crypto_adapter.rst | 231 information are specified in the ``struct rte_crypto_op`` private data or 232 session's private data. 276 /* Call set API to store private data information */ 290 /* Store private data information along with rte_crypto_op */
|
| H A D | rte_security.rst | 364 Each driver (crypto or ethernet) defines its own private array of capabilities 547 private data. The private session data mempool object size should be able to 548 accommodate the driver's private data of security session. The application can get 549 the size of session private data using API ``rte_security_session_get_size``. 564 to free the driver private session data and return the memory back to the mempool.
|
| H A D | traffic_metering_and_policing.rst | 32 within the ``librte_ethdev`` library. Whether an MTR object is private to a
|
| /dpdk/drivers/net/cxgbe/ |
| H A D | cxgbe_filter.h | 82 void *private; member 190 void *private; /* For use by apps using filter_entry */ member
|
| H A D | cxgbe_flow.c | 297 struct rte_flow *flow = (struct rte_flow *)fs->private; in ch_rte_parsetype_pf() 1180 flow->fs.private = (void *)flow; in cxgbe_flow_create() 1198 flow->f->private = flow; /* Will be used during flush */ in cxgbe_flow_create() 1346 flow->fs.private = (void *)flow; in cxgbe_flow_validate() 1390 f->private) /* We (rte_flow) created this filter */ in cxgbe_check_n_destroy() 1391 return __cxgbe_flow_destroy(dev, (struct rte_flow *)f->private); in cxgbe_check_n_destroy() 1410 f->private, in cxgbe_flow_flush() 1428 f->private, in cxgbe_flow_flush()
|
| /dpdk/doc/guides/cryptodevs/ |
| H A D | overview.rst | 40 - "RSA PRIV OP KEY EXP" feature flag means PMD support RSA private key 43 - "RSA PRIV OP KEY QT" feature flag means PMD support RSA private key
|
| /dpdk/drivers/net/mlx4/ |
| H A D | meson.build | 44 # Build without adding shared libs to Requires.private 49 # Add static deps ldflags to internal apps and Libs.private
|
| /dpdk/doc/guides/rel_notes/ |
| H A D | release_22_03.rst | 78 * **Added a private dump API, to dump private info from device.** 80 Added the private dump API which provides a facility for querying private info from a device. 81 There exists many private properties in different PMD drivers and 144 * **Added an API for private user data in asymmetric crypto session.** 213 session header, max size for a device private session data, and user data size.
|
| H A D | release_20_11.rst | 94 * **Added support to flow rules to allow private PMD items/actions.** 96 * Flow rule verification has been updated to accept private PMD 427 * eal: The ``rte_logs`` struct and global symbol was made private 430 * eal: Made the ``rte_dev_event`` structure private to the EAL as no public API 469 replaced with a private enum in the PCI subsystem. 541 mempool objects: one for session and other for session private data. 543 private data using API ``rte_security_session_get_size`` for private session
|
| H A D | deprecation.rst | 112 session and the private data of session. An opaque pointer can be exposed 116 pointer for the private data to the application which can be attached
|
| H A D | release_19_11.rst | 21 * **Extended pktmbuf mempool private structure.** 223 * Added support for RSA algorithm with pair ``(n, d)`` private key 225 * Added support for RSA algorithm with quintuple private key representation. 337 * eal: made the ``lcore_config`` struct and global symbol private. 346 function private.
|
| H A D | release_2_1.rst | 855 * **mbuf: Fix cloning with private mbuf data.** 859 private data in mbufs. 863 private size into account when attaching and detaching mbufs. 875 private size is assumed to be 0, and the room size is ``mp->elt_size`` - 881 * **mbuf: Fix init when private size is not zero.** 884 the mbuf private size is not 0.
|
| H A D | release_17_08.rst | 132 * Replaced ``private`` marker with array of pointers to private data sessions 143 * Added functions to initialize and free individual driver private data
|
| H A D | release_19_02.rst | 98 session private data referencing status check while freeing a session. 199 mempool and symmetric session private data mempool. 203 to ensure safely accessing the session and session private data.
|
| H A D | release_20_08.rst | 130 * Re-implemented ``get_fdir_info`` and ``get_fdir_stat`` in private API. 131 * Re-implemented ``set_gre_key_len`` in private API. 138 * Re-implemented ``get_fdir_info`` and ``get_fdir_stat`` in private API.
|
| H A D | release_21_11.rst | 511 since they are for drivers only and should be private to DPDK, and not 557 private data structures. ``rte_eth_devices[]`` can't be accessed directly 564 * cryptodev: Made ``rte_cryptodev``, ``rte_cryptodev_data`` private
|
| /dpdk/doc/guides/contributing/ |
| H A D | vulnerability.rst | 126 that we can attach to private and public notifications. 148 that we can attach to private and public notifications. 165 and the pre-release disclosure is replaced with the private disclosure, 197 The `OSS security private mailing list mailto:[email protected]>` will 202 this private mailing list, and it functions as a single point of contact for
|
| H A D | abi_versioning.rst | 186 Assume that struct rte_acl_ctx is a private structure, and that a developer 189 private, is safe), but it also requires modifying the code as follows
|
| /dpdk/drivers/raw/ifpga/base/ |
| H A D | README | 40 1. Store private features in FME and Port list.
|
| /dpdk/drivers/common/mlx5/linux/ |
| H A D | meson.build | 38 # Build without adding shared libs to Requires.private 43 # Add static deps ldflags to internal apps and Libs.private
|
| /dpdk/doc/guides/nics/ |
| H A D | dpaa2.rst | 576 - for egress rate limiter: private shaper 592 - 1 private shaper at root node (port level) is supported.
|