1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2014 Intel Corporation.
3 * Copyright(c) 2016 6WIND S.A.
6 #ifndef _RTE_MEMPOOL_H_
7 #define _RTE_MEMPOOL_H_
13 * A memory pool is an allocator of fixed-size object. It is
14 * identified by its name, and uses a ring to store free objects. It
15 * provides some other optional services, like a per-core object
16 * cache, and an alignment helper to ensure that objects are padded
17 * to spread them equally on all RAM channels, ranks, and so on.
19 * Objects owned by a mempool should never be added in another
20 * mempool. When an object is freed using rte_mempool_put() or
21 * equivalent, the object data is not modified; the user can save some
22 * meta-data in the object data and retrieve them when allocating a
25 * Note: the mempool implementation is not preemptible. An lcore must not be
26 * interrupted by another task that uses the same mempool (because it uses a
27 * ring which is not preemptible). Also, usual mempool functions like
28 * rte_mempool_get() or rte_mempool_put() are designed to be called from an EAL
29 * thread due to the internal per-lcore cache. Due to the lack of caching,
30 * rte_mempool_get() or rte_mempool_put() performance will suffer when called
31 * by unregistered non-EAL threads. Instead, unregistered non-EAL threads
32 * should call rte_mempool_generic_get() or rte_mempool_generic_put() with a
33 * user cache created with rte_mempool_cache_create().
41 #include <sys/queue.h>
43 #include <rte_config.h>
44 #include <rte_spinlock.h>
46 #include <rte_debug.h>
47 #include <rte_lcore.h>
48 #include <rte_memory.h>
49 #include <rte_branch_prediction.h>
51 #include <rte_memcpy.h>
52 #include <rte_common.h>
54 #include "rte_mempool_trace_fp.h"
60 #define RTE_MEMPOOL_HEADER_COOKIE1 0xbadbadbadadd2e55ULL /**< Header cookie. */
61 #define RTE_MEMPOOL_HEADER_COOKIE2 0xf2eef2eedadd2e55ULL /**< Header cookie. */
62 #define RTE_MEMPOOL_TRAILER_COOKIE 0xadd2e55badbadbadULL /**< Trailer cookie.*/
64 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
66 * A structure that stores the mempool statistics (per-lcore).
67 * Note: Cache stats (put_cache_bulk/objs, get_cache_bulk/objs) are not
68 * captured since they can be calculated from other stats.
69 * For example: put_cache_objs = put_objs - put_common_pool_objs.
71 struct rte_mempool_debug_stats {
72 uint64_t put_bulk; /**< Number of puts. */
73 uint64_t put_objs; /**< Number of objects successfully put. */
74 uint64_t put_common_pool_bulk; /**< Number of bulks enqueued in common pool. */
75 uint64_t put_common_pool_objs; /**< Number of objects enqueued in common pool. */
76 uint64_t get_common_pool_bulk; /**< Number of bulks dequeued from common pool. */
77 uint64_t get_common_pool_objs; /**< Number of objects dequeued from common pool. */
78 uint64_t get_success_bulk; /**< Successful allocation number. */
79 uint64_t get_success_objs; /**< Objects successfully allocated. */
80 uint64_t get_fail_bulk; /**< Failed allocation number. */
81 uint64_t get_fail_objs; /**< Objects that failed to be allocated. */
82 uint64_t get_success_blks; /**< Successful allocation number of contiguous blocks. */
83 uint64_t get_fail_blks; /**< Failed allocation number of contiguous blocks. */
84 } __rte_cache_aligned;
88 * A structure that stores a per-core object cache.
90 struct rte_mempool_cache {
91 uint32_t size; /**< Size of the cache */
92 uint32_t flushthresh; /**< Threshold before we flush excess elements */
93 uint32_t len; /**< Current cache count */
95 * Cache is allocated to this size to allow it to overflow in certain
96 * cases to avoid needless emptying of cache.
98 void *objs[RTE_MEMPOOL_CACHE_MAX_SIZE * 3]; /**< Cache objects */
99 } __rte_cache_aligned;
102 * A structure that stores the size of mempool elements.
104 struct rte_mempool_objsz {
105 uint32_t elt_size; /**< Size of an element. */
106 uint32_t header_size; /**< Size of header (before elt). */
107 uint32_t trailer_size; /**< Size of trailer (after elt). */
109 /**< Total size of an object (header + elt + trailer). */
112 /**< Maximum length of a memory pool's name. */
113 #define RTE_MEMPOOL_NAMESIZE (RTE_RING_NAMESIZE - \
114 sizeof(RTE_MEMPOOL_MZ_PREFIX) + 1)
115 #define RTE_MEMPOOL_MZ_PREFIX "MP_"
118 #define RTE_MEMPOOL_MZ_FORMAT RTE_MEMPOOL_MZ_PREFIX "%s"
120 #define MEMPOOL_PG_SHIFT_MAX (sizeof(uintptr_t) * CHAR_BIT - 1)
122 /** Mempool over one chunk of physically continuous memory */
123 #define MEMPOOL_PG_NUM_DEFAULT 1
125 #ifndef RTE_MEMPOOL_ALIGN
127 * Alignment of elements inside mempool.
129 #define RTE_MEMPOOL_ALIGN RTE_CACHE_LINE_SIZE
132 #define RTE_MEMPOOL_ALIGN_MASK (RTE_MEMPOOL_ALIGN - 1)
135 * Mempool object header structure
137 * Each object stored in mempools are prefixed by this header structure,
138 * it allows to retrieve the mempool pointer from the object and to
139 * iterate on all objects attached to a mempool. When debug is enabled,
140 * a cookie is also added in this structure preventing corruptions and
143 struct rte_mempool_objhdr {
144 STAILQ_ENTRY(rte_mempool_objhdr) next; /**< Next in list. */
145 struct rte_mempool *mp; /**< The mempool owning the object. */
146 rte_iova_t iova; /**< IO address of the object. */
147 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
148 uint64_t cookie; /**< Debug cookie. */
153 * A list of object headers type
155 STAILQ_HEAD(rte_mempool_objhdr_list, rte_mempool_objhdr);
157 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
160 * Mempool object trailer structure
162 * In debug mode, each object stored in mempools are suffixed by this
163 * trailer structure containing a cookie preventing memory corruptions.
165 struct rte_mempool_objtlr {
166 uint64_t cookie; /**< Debug cookie. */
172 * A list of memory where objects are stored
174 STAILQ_HEAD(rte_mempool_memhdr_list, rte_mempool_memhdr);
177 * Callback used to free a memory chunk
179 typedef void (rte_mempool_memchunk_free_cb_t)(struct rte_mempool_memhdr *memhdr,
183 * Mempool objects memory header structure
185 * The memory chunks where objects are stored. Each chunk is virtually
186 * and physically contiguous.
188 struct rte_mempool_memhdr {
189 STAILQ_ENTRY(rte_mempool_memhdr) next; /**< Next in list. */
190 struct rte_mempool *mp; /**< The mempool owning the chunk */
191 void *addr; /**< Virtual address of the chunk */
192 rte_iova_t iova; /**< IO address of the chunk */
193 size_t len; /**< length of the chunk */
194 rte_mempool_memchunk_free_cb_t *free_cb; /**< Free callback */
195 void *opaque; /**< Argument passed to the free callback */
199 * Additional information about the mempool
201 * The structure is cache-line aligned to avoid ABI breakages in
202 * a number of cases when something small is added.
204 struct rte_mempool_info {
205 /** Number of objects in the contiguous block */
206 unsigned int contig_block_size;
207 } __rte_cache_aligned;
210 * The RTE mempool structure.
214 * Note: this field kept the RTE_MEMZONE_NAMESIZE size due to ABI
215 * compatibility requirements, it could be changed to
216 * RTE_MEMPOOL_NAMESIZE next time the ABI changes
218 char name[RTE_MEMZONE_NAMESIZE]; /**< Name of mempool. */
221 void *pool_data; /**< Ring or pool to store objects. */
222 uint64_t pool_id; /**< External mempool identifier. */
224 void *pool_config; /**< optional args for ops alloc. */
225 const struct rte_memzone *mz; /**< Memzone where pool is alloc'd. */
226 unsigned int flags; /**< Flags of the mempool. */
227 int socket_id; /**< Socket id passed at create. */
228 uint32_t size; /**< Max size of the mempool. */
230 /**< Size of per-lcore default local cache. */
232 uint32_t elt_size; /**< Size of an element. */
233 uint32_t header_size; /**< Size of header (before elt). */
234 uint32_t trailer_size; /**< Size of trailer (after elt). */
236 unsigned private_data_size; /**< Size of private data. */
238 * Index into rte_mempool_ops_table array of mempool ops
239 * structs, which contain callback function pointers.
240 * We're using an index here rather than pointers to the callbacks
241 * to facilitate any secondary processes that may want to use
246 struct rte_mempool_cache *local_cache; /**< Per-lcore local cache */
248 uint32_t populated_size; /**< Number of populated objects. */
249 struct rte_mempool_objhdr_list elt_list; /**< List of objects in pool */
250 uint32_t nb_mem_chunks; /**< Number of memory chunks */
251 struct rte_mempool_memhdr_list mem_list; /**< List of memory chunks */
253 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
254 /** Per-lcore statistics. */
255 struct rte_mempool_debug_stats stats[RTE_MAX_LCORE];
257 } __rte_cache_aligned;
259 #define MEMPOOL_F_NO_SPREAD 0x0001
260 /**< Spreading among memory channels not required. */
261 #define MEMPOOL_F_NO_CACHE_ALIGN 0x0002 /**< Do not align objs on cache lines.*/
262 #define MEMPOOL_F_SP_PUT 0x0004 /**< Default put is "single-producer".*/
263 #define MEMPOOL_F_SC_GET 0x0008 /**< Default get is "single-consumer".*/
264 #define MEMPOOL_F_POOL_CREATED 0x0010 /**< Internal: pool is created. */
265 #define MEMPOOL_F_NO_IOVA_CONTIG 0x0020 /**< Don't need IOVA contiguous objs. */
268 * @internal When debug is enabled, store some statistics.
271 * Pointer to the memory pool.
273 * Name of the statistics field to increment in the memory pool.
275 * Number to add to the object-oriented statistics.
277 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
278 #define __MEMPOOL_STAT_ADD(mp, name, n) do { \
279 unsigned __lcore_id = rte_lcore_id(); \
280 if (__lcore_id < RTE_MAX_LCORE) { \
281 mp->stats[__lcore_id].name += n; \
285 #define __MEMPOOL_STAT_ADD(mp, name, n) do {} while(0)
289 * Calculate the size of the mempool header.
292 * Pointer to the memory pool.
294 * Size of the per-lcore cache.
296 #define MEMPOOL_HEADER_SIZE(mp, cs) \
297 (sizeof(*(mp)) + (((cs) == 0) ? 0 : \
298 (sizeof(struct rte_mempool_cache) * RTE_MAX_LCORE)))
300 /* return the header of a mempool object (internal) */
301 static inline struct rte_mempool_objhdr *__mempool_get_header(void *obj)
303 return (struct rte_mempool_objhdr *)RTE_PTR_SUB(obj,
304 sizeof(struct rte_mempool_objhdr));
308 * Return a pointer to the mempool owning this object.
311 * An object that is owned by a pool. If this is not the case,
312 * the behavior is undefined.
314 * A pointer to the mempool structure.
316 static inline struct rte_mempool *rte_mempool_from_obj(void *obj)
318 struct rte_mempool_objhdr *hdr = __mempool_get_header(obj);
322 /* return the trailer of a mempool object (internal) */
323 static inline struct rte_mempool_objtlr *__mempool_get_trailer(void *obj)
325 struct rte_mempool *mp = rte_mempool_from_obj(obj);
326 return (struct rte_mempool_objtlr *)RTE_PTR_ADD(obj, mp->elt_size);
330 * @internal Check and update cookies or panic.
333 * Pointer to the memory pool.
334 * @param obj_table_const
335 * Pointer to a table of void * pointers (objects).
337 * Index of object in object table.
339 * - 0: object is supposed to be allocated, mark it as free
340 * - 1: object is supposed to be free, mark it as allocated
341 * - 2: just check that cookie is valid (free or allocated)
343 void rte_mempool_check_cookies(const struct rte_mempool *mp,
344 void * const *obj_table_const, unsigned n, int free);
346 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
347 #define __mempool_check_cookies(mp, obj_table_const, n, free) \
348 rte_mempool_check_cookies(mp, obj_table_const, n, free)
350 #define __mempool_check_cookies(mp, obj_table_const, n, free) do {} while(0)
351 #endif /* RTE_LIBRTE_MEMPOOL_DEBUG */
354 * @internal Check contiguous object blocks and update cookies or panic.
357 * Pointer to the memory pool.
358 * @param first_obj_table_const
359 * Pointer to a table of void * pointers (first object of the contiguous
362 * Number of contiguous object blocks.
364 * - 0: object is supposed to be allocated, mark it as free
365 * - 1: object is supposed to be free, mark it as allocated
366 * - 2: just check that cookie is valid (free or allocated)
368 void rte_mempool_contig_blocks_check_cookies(const struct rte_mempool *mp,
369 void * const *first_obj_table_const, unsigned int n, int free);
371 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
372 #define __mempool_contig_blocks_check_cookies(mp, first_obj_table_const, n, \
374 rte_mempool_contig_blocks_check_cookies(mp, first_obj_table_const, n, \
377 #define __mempool_contig_blocks_check_cookies(mp, first_obj_table_const, n, \
380 #endif /* RTE_LIBRTE_MEMPOOL_DEBUG */
382 #define RTE_MEMPOOL_OPS_NAMESIZE 32 /**< Max length of ops struct name. */
385 * Prototype for implementation specific data provisioning function.
387 * The function should provide the implementation specific memory for
388 * use by the other mempool ops functions in a given mempool ops struct.
389 * E.g. the default ops provides an instance of the rte_ring for this purpose.
390 * it will most likely point to a different type of data structure, and
391 * will be transparent to the application programmer.
392 * This function should set mp->pool_data.
394 typedef int (*rte_mempool_alloc_t)(struct rte_mempool *mp);
397 * Free the opaque private data pointed to by mp->pool_data pointer.
399 typedef void (*rte_mempool_free_t)(struct rte_mempool *mp);
402 * Enqueue an object into the external pool.
404 typedef int (*rte_mempool_enqueue_t)(struct rte_mempool *mp,
405 void * const *obj_table, unsigned int n);
408 * Dequeue an object from the external pool.
410 typedef int (*rte_mempool_dequeue_t)(struct rte_mempool *mp,
411 void **obj_table, unsigned int n);
414 * Dequeue a number of contiguous object blocks from the external pool.
416 typedef int (*rte_mempool_dequeue_contig_blocks_t)(struct rte_mempool *mp,
417 void **first_obj_table, unsigned int n);
420 * Return the number of available objects in the external pool.
422 typedef unsigned (*rte_mempool_get_count)(const struct rte_mempool *mp);
425 * Calculate memory size required to store given number of objects.
427 * If mempool objects are not required to be IOVA-contiguous
428 * (the flag MEMPOOL_F_NO_IOVA_CONTIG is set), min_chunk_size defines
429 * virtually contiguous chunk size. Otherwise, if mempool objects must
430 * be IOVA-contiguous (the flag MEMPOOL_F_NO_IOVA_CONTIG is clear),
431 * min_chunk_size defines IOVA-contiguous chunk size.
434 * Pointer to the memory pool.
437 * @param[in] pg_shift
438 * LOG2 of the physical pages size. If set to 0, ignore page boundaries.
439 * @param[out] min_chunk_size
440 * Location for minimum size of the memory chunk which may be used to
441 * store memory pool objects.
443 * Location for required memory chunk alignment.
445 * Required memory size.
447 typedef ssize_t (*rte_mempool_calc_mem_size_t)(const struct rte_mempool *mp,
448 uint32_t obj_num, uint32_t pg_shift,
449 size_t *min_chunk_size, size_t *align);
452 * @internal Helper to calculate memory size required to store given
455 * This function is internal to mempool library and mempool drivers.
457 * If page boundaries may be ignored, it is just a product of total
458 * object size including header and trailer and number of objects.
459 * Otherwise, it is a number of pages required to store given number of
460 * objects without crossing page boundary.
462 * Note that if object size is bigger than page size, then it assumes
463 * that pages are grouped in subsets of physically continuous pages big
464 * enough to store at least one object.
466 * Minimum size of memory chunk is the total element size.
467 * Required memory chunk alignment is the cache line size.
470 * A pointer to the mempool structure.
472 * Number of objects to be added in mempool.
473 * @param[in] pg_shift
474 * LOG2 of the physical pages size. If set to 0, ignore page boundaries.
475 * @param[in] chunk_reserve
476 * Amount of memory that must be reserved at the beginning of each page,
477 * or at the beginning of the memory area if pg_shift is 0.
478 * @param[out] min_chunk_size
479 * Location for minimum size of the memory chunk which may be used to
480 * store memory pool objects.
482 * Location for required memory chunk alignment.
484 * Required memory size.
486 ssize_t rte_mempool_op_calc_mem_size_helper(const struct rte_mempool *mp,
487 uint32_t obj_num, uint32_t pg_shift, size_t chunk_reserve,
488 size_t *min_chunk_size, size_t *align);
491 * Default way to calculate memory size required to store given number of
494 * Equivalent to rte_mempool_op_calc_mem_size_helper(mp, obj_num, pg_shift,
495 * 0, min_chunk_size, align).
497 ssize_t rte_mempool_op_calc_mem_size_default(const struct rte_mempool *mp,
498 uint32_t obj_num, uint32_t pg_shift,
499 size_t *min_chunk_size, size_t *align);
502 * Function to be called for each populated object.
505 * A pointer to the mempool structure.
507 * An opaque pointer passed to iterator.
509 * Object virtual address.
511 * Input/output virtual address of the object or RTE_BAD_IOVA.
513 typedef void (rte_mempool_populate_obj_cb_t)(struct rte_mempool *mp,
514 void *opaque, void *vaddr, rte_iova_t iova);
517 * Populate memory pool objects using provided memory chunk.
519 * Populated objects should be enqueued to the pool, e.g. using
520 * rte_mempool_ops_enqueue_bulk().
522 * If the given IO address is unknown (iova = RTE_BAD_IOVA),
523 * the chunk doesn't need to be physically contiguous (only virtually),
524 * and allocated objects may span two pages.
527 * A pointer to the mempool structure.
528 * @param[in] max_objs
529 * Maximum number of objects to be populated.
531 * The virtual address of memory that should be used to store objects.
535 * The length of memory in bytes.
537 * Callback function to be executed for each populated object.
538 * @param[in] obj_cb_arg
539 * An opaque pointer passed to the callback function.
541 * The number of objects added on success.
542 * On error, no objects are populated and a negative errno is returned.
544 typedef int (*rte_mempool_populate_t)(struct rte_mempool *mp,
545 unsigned int max_objs,
546 void *vaddr, rte_iova_t iova, size_t len,
547 rte_mempool_populate_obj_cb_t *obj_cb, void *obj_cb_arg);
550 * Align objects on addresses multiple of total_elt_sz.
552 #define RTE_MEMPOOL_POPULATE_F_ALIGN_OBJ 0x0001
555 * @internal Helper to populate memory pool object using provided memory
556 * chunk: just slice objects one by one, taking care of not
557 * crossing page boundaries.
559 * If RTE_MEMPOOL_POPULATE_F_ALIGN_OBJ is set in flags, the addresses
560 * of object headers will be aligned on a multiple of total_elt_sz.
561 * This feature is used by octeontx hardware.
563 * This function is internal to mempool library and mempool drivers.
566 * A pointer to the mempool structure.
568 * Logical OR of following flags:
569 * - RTE_MEMPOOL_POPULATE_F_ALIGN_OBJ: align objects on addresses
570 * multiple of total_elt_sz.
571 * @param[in] max_objs
572 * Maximum number of objects to be added in mempool.
574 * The virtual address of memory that should be used to store objects.
576 * The IO address corresponding to vaddr, or RTE_BAD_IOVA.
578 * The length of memory in bytes.
580 * Callback function to be executed for each populated object.
581 * @param[in] obj_cb_arg
582 * An opaque pointer passed to the callback function.
584 * The number of objects added in mempool.
586 int rte_mempool_op_populate_helper(struct rte_mempool *mp,
587 unsigned int flags, unsigned int max_objs,
588 void *vaddr, rte_iova_t iova, size_t len,
589 rte_mempool_populate_obj_cb_t *obj_cb, void *obj_cb_arg);
592 * Default way to populate memory pool object using provided memory chunk.
594 * Equivalent to rte_mempool_op_populate_helper(mp, 0, max_objs, vaddr, iova,
595 * len, obj_cb, obj_cb_arg).
597 int rte_mempool_op_populate_default(struct rte_mempool *mp,
598 unsigned int max_objs,
599 void *vaddr, rte_iova_t iova, size_t len,
600 rte_mempool_populate_obj_cb_t *obj_cb, void *obj_cb_arg);
603 * Get some additional information about a mempool.
605 typedef int (*rte_mempool_get_info_t)(const struct rte_mempool *mp,
606 struct rte_mempool_info *info);
609 /** Structure defining mempool operations structure */
610 struct rte_mempool_ops {
611 char name[RTE_MEMPOOL_OPS_NAMESIZE]; /**< Name of mempool ops struct. */
612 rte_mempool_alloc_t alloc; /**< Allocate private data. */
613 rte_mempool_free_t free; /**< Free the external pool. */
614 rte_mempool_enqueue_t enqueue; /**< Enqueue an object. */
615 rte_mempool_dequeue_t dequeue; /**< Dequeue an object. */
616 rte_mempool_get_count get_count; /**< Get qty of available objs. */
618 * Optional callback to calculate memory size required to
619 * store specified number of objects.
621 rte_mempool_calc_mem_size_t calc_mem_size;
623 * Optional callback to populate mempool objects using
624 * provided memory chunk.
626 rte_mempool_populate_t populate;
630 rte_mempool_get_info_t get_info;
632 * Dequeue a number of contiguous object blocks.
634 rte_mempool_dequeue_contig_blocks_t dequeue_contig_blocks;
635 } __rte_cache_aligned;
637 #define RTE_MEMPOOL_MAX_OPS_IDX 16 /**< Max registered ops structs */
640 * Structure storing the table of registered ops structs, each of which contain
641 * the function pointers for the mempool ops functions.
642 * Each process has its own storage for this ops struct array so that
643 * the mempools can be shared across primary and secondary processes.
644 * The indices used to access the array are valid across processes, whereas
645 * any function pointers stored directly in the mempool struct would not be.
646 * This results in us simply having "ops_index" in the mempool struct.
648 struct rte_mempool_ops_table {
649 rte_spinlock_t sl; /**< Spinlock for add/delete. */
650 uint32_t num_ops; /**< Number of used ops structs in the table. */
652 * Storage for all possible ops structs.
654 struct rte_mempool_ops ops[RTE_MEMPOOL_MAX_OPS_IDX];
655 } __rte_cache_aligned;
657 /** Array of registered ops structs. */
658 extern struct rte_mempool_ops_table rte_mempool_ops_table;
661 * @internal Get the mempool ops struct from its index.
664 * The index of the ops struct in the ops struct table. It must be a valid
665 * index: (0 <= idx < num_ops).
667 * The pointer to the ops struct in the table.
669 static inline struct rte_mempool_ops *
670 rte_mempool_get_ops(int ops_index)
672 RTE_VERIFY((ops_index >= 0) && (ops_index < RTE_MEMPOOL_MAX_OPS_IDX));
674 return &rte_mempool_ops_table.ops[ops_index];
678 * @internal Wrapper for mempool_ops alloc callback.
681 * Pointer to the memory pool.
683 * - 0: Success; successfully allocated mempool pool_data.
684 * - <0: Error; code of alloc function.
687 rte_mempool_ops_alloc(struct rte_mempool *mp);
690 * @internal Wrapper for mempool_ops dequeue callback.
693 * Pointer to the memory pool.
695 * Pointer to a table of void * pointers (objects).
697 * Number of objects to get.
699 * - 0: Success; got n objects.
700 * - <0: Error; code of dequeue function.
703 rte_mempool_ops_dequeue_bulk(struct rte_mempool *mp,
704 void **obj_table, unsigned n)
706 struct rte_mempool_ops *ops;
709 rte_mempool_trace_ops_dequeue_bulk(mp, obj_table, n);
710 ops = rte_mempool_get_ops(mp->ops_index);
711 ret = ops->dequeue(mp, obj_table, n);
713 __MEMPOOL_STAT_ADD(mp, get_common_pool_bulk, 1);
714 __MEMPOOL_STAT_ADD(mp, get_common_pool_objs, n);
720 * @internal Wrapper for mempool_ops dequeue_contig_blocks callback.
723 * Pointer to the memory pool.
724 * @param[out] first_obj_table
725 * Pointer to a table of void * pointers (first objects).
727 * Number of blocks to get.
729 * - 0: Success; got n objects.
730 * - <0: Error; code of dequeue function.
733 rte_mempool_ops_dequeue_contig_blocks(struct rte_mempool *mp,
734 void **first_obj_table, unsigned int n)
736 struct rte_mempool_ops *ops;
738 ops = rte_mempool_get_ops(mp->ops_index);
739 RTE_ASSERT(ops->dequeue_contig_blocks != NULL);
740 rte_mempool_trace_ops_dequeue_contig_blocks(mp, first_obj_table, n);
741 return ops->dequeue_contig_blocks(mp, first_obj_table, n);
745 * @internal wrapper for mempool_ops enqueue callback.
748 * Pointer to the memory pool.
750 * Pointer to a table of void * pointers (objects).
752 * Number of objects to put.
754 * - 0: Success; n objects supplied.
755 * - <0: Error; code of enqueue function.
758 rte_mempool_ops_enqueue_bulk(struct rte_mempool *mp, void * const *obj_table,
761 struct rte_mempool_ops *ops;
763 __MEMPOOL_STAT_ADD(mp, put_common_pool_bulk, 1);
764 __MEMPOOL_STAT_ADD(mp, put_common_pool_objs, n);
765 rte_mempool_trace_ops_enqueue_bulk(mp, obj_table, n);
766 ops = rte_mempool_get_ops(mp->ops_index);
767 return ops->enqueue(mp, obj_table, n);
771 * @internal wrapper for mempool_ops get_count callback.
774 * Pointer to the memory pool.
776 * The number of available objects in the external pool.
779 rte_mempool_ops_get_count(const struct rte_mempool *mp);
782 * @internal wrapper for mempool_ops calc_mem_size callback.
783 * API to calculate size of memory required to store specified number of
787 * Pointer to the memory pool.
790 * @param[in] pg_shift
791 * LOG2 of the physical pages size. If set to 0, ignore page boundaries.
792 * @param[out] min_chunk_size
793 * Location for minimum size of the memory chunk which may be used to
794 * store memory pool objects.
796 * Location for required memory chunk alignment.
798 * Required memory size aligned at page boundary.
800 ssize_t rte_mempool_ops_calc_mem_size(const struct rte_mempool *mp,
801 uint32_t obj_num, uint32_t pg_shift,
802 size_t *min_chunk_size, size_t *align);
805 * @internal wrapper for mempool_ops populate callback.
807 * Populate memory pool objects using provided memory chunk.
810 * A pointer to the mempool structure.
811 * @param[in] max_objs
812 * Maximum number of objects to be populated.
814 * The virtual address of memory that should be used to store objects.
818 * The length of memory in bytes.
820 * Callback function to be executed for each populated object.
821 * @param[in] obj_cb_arg
822 * An opaque pointer passed to the callback function.
824 * The number of objects added on success.
825 * On error, no objects are populated and a negative errno is returned.
827 int rte_mempool_ops_populate(struct rte_mempool *mp, unsigned int max_objs,
828 void *vaddr, rte_iova_t iova, size_t len,
829 rte_mempool_populate_obj_cb_t *obj_cb,
833 * Wrapper for mempool_ops get_info callback.
836 * Pointer to the memory pool.
838 * Pointer to the rte_mempool_info structure
840 * - 0: Success; The mempool driver supports retrieving supplementary
841 * mempool information
842 * - -ENOTSUP - doesn't support get_info ops (valid case).
844 int rte_mempool_ops_get_info(const struct rte_mempool *mp,
845 struct rte_mempool_info *info);
848 * @internal wrapper for mempool_ops free callback.
851 * Pointer to the memory pool.
854 rte_mempool_ops_free(struct rte_mempool *mp);
857 * Set the ops of a mempool.
859 * This can only be done on a mempool that is not populated, i.e. just after
860 * a call to rte_mempool_create_empty().
863 * Pointer to the memory pool.
865 * Name of the ops structure to use for this mempool.
867 * Opaque data that can be passed by the application to the ops functions.
869 * - 0: Success; the mempool is now using the requested ops functions.
870 * - -EINVAL - Invalid ops struct name provided.
871 * - -EEXIST - mempool already has an ops struct assigned.
874 rte_mempool_set_ops_byname(struct rte_mempool *mp, const char *name,
878 * Register mempool operations.
881 * Pointer to an ops structure to register.
883 * - >=0: Success; return the index of the ops struct in the table.
884 * - -EINVAL - some missing callbacks while registering ops struct.
885 * - -ENOSPC - the maximum number of ops structs has been reached.
887 int rte_mempool_register_ops(const struct rte_mempool_ops *ops);
890 * Macro to statically register the ops of a mempool handler.
891 * Note that the rte_mempool_register_ops fails silently here when
892 * more than RTE_MEMPOOL_MAX_OPS_IDX is registered.
894 #define MEMPOOL_REGISTER_OPS(ops) \
895 RTE_INIT(mp_hdlr_init_##ops) \
897 rte_mempool_register_ops(&ops); \
901 * An object callback function for mempool.
903 * Used by rte_mempool_create() and rte_mempool_obj_iter().
905 typedef void (rte_mempool_obj_cb_t)(struct rte_mempool *mp,
906 void *opaque, void *obj, unsigned obj_idx);
907 typedef rte_mempool_obj_cb_t rte_mempool_obj_ctor_t; /* compat */
910 * A memory callback function for mempool.
912 * Used by rte_mempool_mem_iter().
914 typedef void (rte_mempool_mem_cb_t)(struct rte_mempool *mp,
915 void *opaque, struct rte_mempool_memhdr *memhdr,
919 * A mempool constructor callback function.
921 * Arguments are the mempool and the opaque pointer given by the user in
922 * rte_mempool_create().
924 typedef void (rte_mempool_ctor_t)(struct rte_mempool *, void *);
927 * Create a new mempool named *name* in memory.
929 * This function uses ``rte_memzone_reserve()`` to allocate memory. The
930 * pool contains n elements of elt_size. Its size is set to n.
933 * The name of the mempool.
935 * The number of elements in the mempool. The optimum size (in terms of
936 * memory usage) for a mempool is when n is a power of two minus one:
939 * The size of each element.
941 * If cache_size is non-zero, the rte_mempool library will try to
942 * limit the accesses to the common lockless pool, by maintaining a
943 * per-lcore object cache. This argument must be lower or equal to
944 * RTE_MEMPOOL_CACHE_MAX_SIZE and n / 1.5. It is advised to choose
945 * cache_size to have "n modulo cache_size == 0": if this is
946 * not the case, some elements will always stay in the pool and will
947 * never be used. The access to the per-lcore table is of course
948 * faster than the multi-producer/consumer pool. The cache can be
949 * disabled if the cache_size argument is set to 0; it can be useful to
950 * avoid losing objects in cache.
951 * @param private_data_size
952 * The size of the private data appended after the mempool
953 * structure. This is useful for storing some private data after the
954 * mempool structure, as is done for rte_mbuf_pool for example.
956 * A function pointer that is called for initialization of the pool,
957 * before object initialization. The user can initialize the private
958 * data in this function if needed. This parameter can be NULL if
961 * An opaque pointer to data that can be used in the mempool
962 * constructor function.
964 * A function pointer that is called for each object at
965 * initialization of the pool. The user can set some meta data in
966 * objects if needed. This parameter can be NULL if not needed.
967 * The obj_init() function takes the mempool pointer, the init_arg,
968 * the object pointer and the object number as parameters.
969 * @param obj_init_arg
970 * An opaque pointer to data that can be used as an argument for
971 * each call to the object constructor function.
973 * The *socket_id* argument is the socket identifier in the case of
974 * NUMA. The value can be *SOCKET_ID_ANY* if there is no NUMA
975 * constraint for the reserved zone.
977 * The *flags* arguments is an OR of following flags:
978 * - MEMPOOL_F_NO_SPREAD: By default, objects addresses are spread
979 * between channels in RAM: the pool allocator will add padding
980 * between objects depending on the hardware configuration. See
981 * Memory alignment constraints for details. If this flag is set,
982 * the allocator will just align them to a cache line.
983 * - MEMPOOL_F_NO_CACHE_ALIGN: By default, the returned objects are
984 * cache-aligned. This flag removes this constraint, and no
985 * padding will be present between objects. This flag implies
986 * MEMPOOL_F_NO_SPREAD.
987 * - MEMPOOL_F_SP_PUT: If this flag is set, the default behavior
988 * when using rte_mempool_put() or rte_mempool_put_bulk() is
989 * "single-producer". Otherwise, it is "multi-producers".
990 * - MEMPOOL_F_SC_GET: If this flag is set, the default behavior
991 * when using rte_mempool_get() or rte_mempool_get_bulk() is
992 * "single-consumer". Otherwise, it is "multi-consumers".
993 * - MEMPOOL_F_NO_IOVA_CONTIG: If set, allocated objects won't
994 * necessarily be contiguous in IO memory.
996 * The pointer to the new allocated mempool, on success. NULL on error
997 * with rte_errno set appropriately. Possible rte_errno values include:
998 * - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
999 * - E_RTE_SECONDARY - function was called from a secondary process instance
1000 * - EINVAL - cache size provided is too large
1001 * - ENOSPC - the maximum number of memzones has already been allocated
1002 * - EEXIST - a memzone with the same name already exists
1003 * - ENOMEM - no appropriate memory area found in which to create memzone
1005 struct rte_mempool *
1006 rte_mempool_create(const char *name, unsigned n, unsigned elt_size,
1007 unsigned cache_size, unsigned private_data_size,
1008 rte_mempool_ctor_t *mp_init, void *mp_init_arg,
1009 rte_mempool_obj_cb_t *obj_init, void *obj_init_arg,
1010 int socket_id, unsigned flags);
1013 * Create an empty mempool
1015 * The mempool is allocated and initialized, but it is not populated: no
1016 * memory is allocated for the mempool elements. The user has to call
1017 * rte_mempool_populate_*() to add memory chunks to the pool. Once
1018 * populated, the user may also want to initialize each object with
1019 * rte_mempool_obj_iter().
1022 * The name of the mempool.
1024 * The maximum number of elements that can be added in the mempool.
1025 * The optimum size (in terms of memory usage) for a mempool is when n
1026 * is a power of two minus one: n = (2^q - 1).
1028 * The size of each element.
1030 * Size of the cache. See rte_mempool_create() for details.
1031 * @param private_data_size
1032 * The size of the private data appended after the mempool
1033 * structure. This is useful for storing some private data after the
1034 * mempool structure, as is done for rte_mbuf_pool for example.
1036 * The *socket_id* argument is the socket identifier in the case of
1037 * NUMA. The value can be *SOCKET_ID_ANY* if there is no NUMA
1038 * constraint for the reserved zone.
1040 * Flags controlling the behavior of the mempool. See
1041 * rte_mempool_create() for details.
1043 * The pointer to the new allocated mempool, on success. NULL on error
1044 * with rte_errno set appropriately. See rte_mempool_create() for details.
1046 struct rte_mempool *
1047 rte_mempool_create_empty(const char *name, unsigned n, unsigned elt_size,
1048 unsigned cache_size, unsigned private_data_size,
1049 int socket_id, unsigned flags);
1053 * Unlink the mempool from global list, free the memory chunks, and all
1054 * memory referenced by the mempool. The objects must not be used by
1055 * other cores as they will be freed.
1058 * A pointer to the mempool structure.
1061 rte_mempool_free(struct rte_mempool *mp);
1064 * Add physically contiguous memory for objects in the pool at init
1066 * Add a virtually and physically contiguous memory chunk in the pool
1067 * where objects can be instantiated.
1069 * If the given IO address is unknown (iova = RTE_BAD_IOVA),
1070 * the chunk doesn't need to be physically contiguous (only virtually),
1071 * and allocated objects may span two pages.
1074 * A pointer to the mempool structure.
1076 * The virtual address of memory that should be used to store objects.
1080 * The length of memory in bytes.
1082 * The callback used to free this chunk when destroying the mempool.
1084 * An opaque argument passed to free_cb.
1086 * The number of objects added on success (strictly positive).
1087 * On error, the chunk is not added in the memory list of the
1088 * mempool the following code is returned:
1089 * (0): not enough room in chunk for one object.
1090 * (-ENOSPC): mempool is already populated.
1091 * (-ENOMEM): allocation failure.
1093 int rte_mempool_populate_iova(struct rte_mempool *mp, char *vaddr,
1094 rte_iova_t iova, size_t len, rte_mempool_memchunk_free_cb_t *free_cb,
1098 * Add virtually contiguous memory for objects in the pool at init
1100 * Add a virtually contiguous memory chunk in the pool where objects can
1104 * A pointer to the mempool structure.
1106 * The virtual address of memory that should be used to store objects.
1108 * The length of memory in bytes.
1110 * The size of memory pages in this virtual area.
1112 * The callback used to free this chunk when destroying the mempool.
1114 * An opaque argument passed to free_cb.
1116 * The number of objects added on success (strictly positive).
1117 * On error, the chunk is not added in the memory list of the
1118 * mempool the following code is returned:
1119 * (0): not enough room in chunk for one object.
1120 * (-ENOSPC): mempool is already populated.
1121 * (-ENOMEM): allocation failure.
1124 rte_mempool_populate_virt(struct rte_mempool *mp, char *addr,
1125 size_t len, size_t pg_sz, rte_mempool_memchunk_free_cb_t *free_cb,
1129 * Add memory for objects in the pool at init
1131 * This is the default function used by rte_mempool_create() to populate
1132 * the mempool. It adds memory allocated using rte_memzone_reserve().
1135 * A pointer to the mempool structure.
1137 * The number of objects added on success.
1138 * On error, the chunk is not added in the memory list of the
1139 * mempool and a negative errno is returned.
1141 int rte_mempool_populate_default(struct rte_mempool *mp);
1144 * Add memory from anonymous mapping for objects in the pool at init
1146 * This function mmap an anonymous memory zone that is locked in
1147 * memory to store the objects of the mempool.
1150 * A pointer to the mempool structure.
1152 * The number of objects added on success.
1153 * On error, 0 is returned, rte_errno is set, and the chunk is not added in
1154 * the memory list of the mempool.
1156 int rte_mempool_populate_anon(struct rte_mempool *mp);
1159 * Call a function for each mempool element
1161 * Iterate across all objects attached to a rte_mempool and call the
1162 * callback function on it.
1165 * A pointer to an initialized mempool.
1167 * A function pointer that is called for each object.
1169 * An opaque pointer passed to the callback function.
1171 * Number of objects iterated.
1173 uint32_t rte_mempool_obj_iter(struct rte_mempool *mp,
1174 rte_mempool_obj_cb_t *obj_cb, void *obj_cb_arg);
1177 * Call a function for each mempool memory chunk
1179 * Iterate across all memory chunks attached to a rte_mempool and call
1180 * the callback function on it.
1183 * A pointer to an initialized mempool.
1185 * A function pointer that is called for each memory chunk.
1187 * An opaque pointer passed to the callback function.
1189 * Number of memory chunks iterated.
1191 uint32_t rte_mempool_mem_iter(struct rte_mempool *mp,
1192 rte_mempool_mem_cb_t *mem_cb, void *mem_cb_arg);
1195 * Dump the status of the mempool to a file.
1198 * A pointer to a file for output
1200 * A pointer to the mempool structure.
1202 void rte_mempool_dump(FILE *f, struct rte_mempool *mp);
1205 * Create a user-owned mempool cache.
1207 * This can be used by unregistered non-EAL threads to enable caching when they
1208 * interact with a mempool.
1211 * The size of the mempool cache. See rte_mempool_create()'s cache_size
1212 * parameter description for more information. The same limits and
1213 * considerations apply here too.
1215 * The socket identifier in the case of NUMA. The value can be
1216 * SOCKET_ID_ANY if there is no NUMA constraint for the reserved zone.
1218 struct rte_mempool_cache *
1219 rte_mempool_cache_create(uint32_t size, int socket_id);
1222 * Free a user-owned mempool cache.
1225 * A pointer to the mempool cache.
1228 rte_mempool_cache_free(struct rte_mempool_cache *cache);
1231 * Get a pointer to the per-lcore default mempool cache.
1234 * A pointer to the mempool structure.
1236 * The logical core id.
1238 * A pointer to the mempool cache or NULL if disabled or unregistered non-EAL
1241 static __rte_always_inline struct rte_mempool_cache *
1242 rte_mempool_default_cache(struct rte_mempool *mp, unsigned lcore_id)
1244 if (mp->cache_size == 0)
1247 if (lcore_id >= RTE_MAX_LCORE)
1250 rte_mempool_trace_default_cache(mp, lcore_id,
1251 &mp->local_cache[lcore_id]);
1252 return &mp->local_cache[lcore_id];
1256 * Flush a user-owned mempool cache to the specified mempool.
1259 * A pointer to the mempool cache.
1261 * A pointer to the mempool.
1263 static __rte_always_inline void
1264 rte_mempool_cache_flush(struct rte_mempool_cache *cache,
1265 struct rte_mempool *mp)
1268 cache = rte_mempool_default_cache(mp, rte_lcore_id());
1269 if (cache == NULL || cache->len == 0)
1271 rte_mempool_trace_cache_flush(cache, mp);
1272 rte_mempool_ops_enqueue_bulk(mp, cache->objs, cache->len);
1277 * @internal Put several objects back in the mempool; used internally.
1279 * A pointer to the mempool structure.
1281 * A pointer to a table of void * pointers (objects).
1283 * The number of objects to store back in the mempool, must be strictly
1286 * A pointer to a mempool cache structure. May be NULL if not needed.
1288 static __rte_always_inline void
1289 __mempool_generic_put(struct rte_mempool *mp, void * const *obj_table,
1290 unsigned int n, struct rte_mempool_cache *cache)
1294 /* increment stat now, adding in mempool always success */
1295 __MEMPOOL_STAT_ADD(mp, put_bulk, 1);
1296 __MEMPOOL_STAT_ADD(mp, put_objs, n);
1298 /* No cache provided or if put would overflow mem allocated for cache */
1299 if (unlikely(cache == NULL || n > RTE_MEMPOOL_CACHE_MAX_SIZE))
1302 cache_objs = &cache->objs[cache->len];
1305 * The cache follows the following algorithm
1306 * 1. Add the objects to the cache
1307 * 2. Anything greater than the cache min value (if it crosses the
1308 * cache flush threshold) is flushed to the ring.
1311 /* Add elements back into the cache */
1312 rte_memcpy(&cache_objs[0], obj_table, sizeof(void *) * n);
1316 if (cache->len >= cache->flushthresh) {
1317 rte_mempool_ops_enqueue_bulk(mp, &cache->objs[cache->size],
1318 cache->len - cache->size);
1319 cache->len = cache->size;
1326 /* push remaining objects in ring */
1327 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
1328 if (rte_mempool_ops_enqueue_bulk(mp, obj_table, n) < 0)
1329 rte_panic("cannot put objects in mempool\n");
1331 rte_mempool_ops_enqueue_bulk(mp, obj_table, n);
1337 * Put several objects back in the mempool.
1340 * A pointer to the mempool structure.
1342 * A pointer to a table of void * pointers (objects).
1344 * The number of objects to add in the mempool from the obj_table.
1346 * A pointer to a mempool cache structure. May be NULL if not needed.
1348 static __rte_always_inline void
1349 rte_mempool_generic_put(struct rte_mempool *mp, void * const *obj_table,
1350 unsigned int n, struct rte_mempool_cache *cache)
1352 rte_mempool_trace_generic_put(mp, obj_table, n, cache);
1353 __mempool_check_cookies(mp, obj_table, n, 0);
1354 __mempool_generic_put(mp, obj_table, n, cache);
1358 * Put several objects back in the mempool.
1360 * This function calls the multi-producer or the single-producer
1361 * version depending on the default behavior that was specified at
1362 * mempool creation time (see flags).
1365 * A pointer to the mempool structure.
1367 * A pointer to a table of void * pointers (objects).
1369 * The number of objects to add in the mempool from obj_table.
1371 static __rte_always_inline void
1372 rte_mempool_put_bulk(struct rte_mempool *mp, void * const *obj_table,
1375 struct rte_mempool_cache *cache;
1376 cache = rte_mempool_default_cache(mp, rte_lcore_id());
1377 rte_mempool_trace_put_bulk(mp, obj_table, n, cache);
1378 rte_mempool_generic_put(mp, obj_table, n, cache);
1382 * Put one object back in the mempool.
1384 * This function calls the multi-producer or the single-producer
1385 * version depending on the default behavior that was specified at
1386 * mempool creation time (see flags).
1389 * A pointer to the mempool structure.
1391 * A pointer to the object to be added.
1393 static __rte_always_inline void
1394 rte_mempool_put(struct rte_mempool *mp, void *obj)
1396 rte_mempool_put_bulk(mp, &obj, 1);
1400 * @internal Get several objects from the mempool; used internally.
1402 * A pointer to the mempool structure.
1404 * A pointer to a table of void * pointers (objects).
1406 * The number of objects to get, must be strictly positive.
1408 * A pointer to a mempool cache structure. May be NULL if not needed.
1410 * - >=0: Success; number of objects supplied.
1411 * - <0: Error; code of ring dequeue function.
1413 static __rte_always_inline int
1414 __mempool_generic_get(struct rte_mempool *mp, void **obj_table,
1415 unsigned int n, struct rte_mempool_cache *cache)
1418 uint32_t index, len;
1421 /* No cache provided or cannot be satisfied from cache */
1422 if (unlikely(cache == NULL || n >= cache->size))
1425 cache_objs = cache->objs;
1427 /* Can this be satisfied from the cache? */
1428 if (cache->len < n) {
1429 /* No. Backfill the cache first, and then fill from it */
1430 uint32_t req = n + (cache->size - cache->len);
1432 /* How many do we require i.e. number to fill the cache + the request */
1433 ret = rte_mempool_ops_dequeue_bulk(mp,
1434 &cache->objs[cache->len], req);
1435 if (unlikely(ret < 0)) {
1437 * In the off chance that we are buffer constrained,
1438 * where we are not able to allocate cache + n, go to
1439 * the ring directly. If that fails, we are truly out of
1448 /* Now fill in the response ... */
1449 for (index = 0, len = cache->len - 1; index < n; ++index, len--, obj_table++)
1450 *obj_table = cache_objs[len];
1454 __MEMPOOL_STAT_ADD(mp, get_success_bulk, 1);
1455 __MEMPOOL_STAT_ADD(mp, get_success_objs, n);
1461 /* get remaining objects from ring */
1462 ret = rte_mempool_ops_dequeue_bulk(mp, obj_table, n);
1465 __MEMPOOL_STAT_ADD(mp, get_fail_bulk, 1);
1466 __MEMPOOL_STAT_ADD(mp, get_fail_objs, n);
1468 __MEMPOOL_STAT_ADD(mp, get_success_bulk, 1);
1469 __MEMPOOL_STAT_ADD(mp, get_success_objs, n);
1476 * Get several objects from the mempool.
1478 * If cache is enabled, objects will be retrieved first from cache,
1479 * subsequently from the common pool. Note that it can return -ENOENT when
1480 * the local cache and common pool are empty, even if cache from other
1484 * A pointer to the mempool structure.
1486 * A pointer to a table of void * pointers (objects) that will be filled.
1488 * The number of objects to get from mempool to obj_table.
1490 * A pointer to a mempool cache structure. May be NULL if not needed.
1492 * - 0: Success; objects taken.
1493 * - -ENOENT: Not enough entries in the mempool; no object is retrieved.
1495 static __rte_always_inline int
1496 rte_mempool_generic_get(struct rte_mempool *mp, void **obj_table,
1497 unsigned int n, struct rte_mempool_cache *cache)
1500 ret = __mempool_generic_get(mp, obj_table, n, cache);
1502 __mempool_check_cookies(mp, obj_table, n, 1);
1503 rte_mempool_trace_generic_get(mp, obj_table, n, cache);
1508 * Get several objects from the mempool.
1510 * This function calls the multi-consumers or the single-consumer
1511 * version, depending on the default behaviour that was specified at
1512 * mempool creation time (see flags).
1514 * If cache is enabled, objects will be retrieved first from cache,
1515 * subsequently from the common pool. Note that it can return -ENOENT when
1516 * the local cache and common pool are empty, even if cache from other
1520 * A pointer to the mempool structure.
1522 * A pointer to a table of void * pointers (objects) that will be filled.
1524 * The number of objects to get from the mempool to obj_table.
1526 * - 0: Success; objects taken
1527 * - -ENOENT: Not enough entries in the mempool; no object is retrieved.
1529 static __rte_always_inline int
1530 rte_mempool_get_bulk(struct rte_mempool *mp, void **obj_table, unsigned int n)
1532 struct rte_mempool_cache *cache;
1533 cache = rte_mempool_default_cache(mp, rte_lcore_id());
1534 rte_mempool_trace_get_bulk(mp, obj_table, n, cache);
1535 return rte_mempool_generic_get(mp, obj_table, n, cache);
1539 * Get one object from the mempool.
1541 * This function calls the multi-consumers or the single-consumer
1542 * version, depending on the default behavior that was specified at
1543 * mempool creation (see flags).
1545 * If cache is enabled, objects will be retrieved first from cache,
1546 * subsequently from the common pool. Note that it can return -ENOENT when
1547 * the local cache and common pool are empty, even if cache from other
1551 * A pointer to the mempool structure.
1553 * A pointer to a void * pointer (object) that will be filled.
1555 * - 0: Success; objects taken.
1556 * - -ENOENT: Not enough entries in the mempool; no object is retrieved.
1558 static __rte_always_inline int
1559 rte_mempool_get(struct rte_mempool *mp, void **obj_p)
1561 return rte_mempool_get_bulk(mp, obj_p, 1);
1565 * Get a contiguous blocks of objects from the mempool.
1567 * If cache is enabled, consider to flush it first, to reuse objects
1568 * as soon as possible.
1570 * The application should check that the driver supports the operation
1571 * by calling rte_mempool_ops_get_info() and checking that `contig_block_size`
1575 * A pointer to the mempool structure.
1576 * @param first_obj_table
1577 * A pointer to a pointer to the first object in each block.
1579 * The number of blocks to get from mempool.
1581 * - 0: Success; blocks taken.
1582 * - -ENOBUFS: Not enough entries in the mempool; no object is retrieved.
1583 * - -EOPNOTSUPP: The mempool driver does not support block dequeue
1585 static __rte_always_inline int
1586 rte_mempool_get_contig_blocks(struct rte_mempool *mp,
1587 void **first_obj_table, unsigned int n)
1591 ret = rte_mempool_ops_dequeue_contig_blocks(mp, first_obj_table, n);
1593 __MEMPOOL_STAT_ADD(mp, get_success_bulk, 1);
1594 __MEMPOOL_STAT_ADD(mp, get_success_blks, n);
1595 __mempool_contig_blocks_check_cookies(mp, first_obj_table, n,
1598 __MEMPOOL_STAT_ADD(mp, get_fail_bulk, 1);
1599 __MEMPOOL_STAT_ADD(mp, get_fail_blks, n);
1602 rte_mempool_trace_get_contig_blocks(mp, first_obj_table, n);
1607 * Return the number of entries in the mempool.
1609 * When cache is enabled, this function has to browse the length of
1610 * all lcores, so it should not be used in a data path, but only for
1611 * debug purposes. User-owned mempool caches are not accounted for.
1614 * A pointer to the mempool structure.
1616 * The number of entries in the mempool.
1618 unsigned int rte_mempool_avail_count(const struct rte_mempool *mp);
1621 * Return the number of elements which have been allocated from the mempool
1623 * When cache is enabled, this function has to browse the length of
1624 * all lcores, so it should not be used in a data path, but only for
1628 * A pointer to the mempool structure.
1630 * The number of free entries in the mempool.
1633 rte_mempool_in_use_count(const struct rte_mempool *mp);
1636 * Test if the mempool is full.
1638 * When cache is enabled, this function has to browse the length of all
1639 * lcores, so it should not be used in a data path, but only for debug
1640 * purposes. User-owned mempool caches are not accounted for.
1643 * A pointer to the mempool structure.
1645 * - 1: The mempool is full.
1646 * - 0: The mempool is not full.
1649 rte_mempool_full(const struct rte_mempool *mp)
1651 return rte_mempool_avail_count(mp) == mp->size;
1655 * Test if the mempool is empty.
1657 * When cache is enabled, this function has to browse the length of all
1658 * lcores, so it should not be used in a data path, but only for debug
1659 * purposes. User-owned mempool caches are not accounted for.
1662 * A pointer to the mempool structure.
1664 * - 1: The mempool is empty.
1665 * - 0: The mempool is not empty.
1668 rte_mempool_empty(const struct rte_mempool *mp)
1670 return rte_mempool_avail_count(mp) == 0;
1674 * Return the IO address of elt, which is an element of the pool mp.
1677 * A pointer (virtual address) to the element of the pool.
1679 * The IO address of the elt element.
1680 * If the mempool was created with MEMPOOL_F_NO_IOVA_CONTIG, the
1681 * returned value is RTE_BAD_IOVA.
1683 static inline rte_iova_t
1684 rte_mempool_virt2iova(const void *elt)
1686 const struct rte_mempool_objhdr *hdr;
1687 hdr = (const struct rte_mempool_objhdr *)RTE_PTR_SUB(elt,
1693 * Check the consistency of mempool objects.
1695 * Verify the coherency of fields in the mempool structure. Also check
1696 * that the cookies of mempool objects (even the ones that are not
1697 * present in pool) have a correct value. If not, a panic will occur.
1700 * A pointer to the mempool structure.
1702 void rte_mempool_audit(struct rte_mempool *mp);
1705 * Return a pointer to the private data in an mempool structure.
1708 * A pointer to the mempool structure.
1710 * A pointer to the private data.
1712 static inline void *rte_mempool_get_priv(struct rte_mempool *mp)
1715 MEMPOOL_HEADER_SIZE(mp, mp->cache_size);
1719 * Dump the status of all mempools on the console
1722 * A pointer to a file for output
1724 void rte_mempool_list_dump(FILE *f);
1727 * Search a mempool from its name
1730 * The name of the mempool.
1732 * The pointer to the mempool matching the name, or NULL if not found.
1734 * with rte_errno set appropriately. Possible rte_errno values include:
1735 * - ENOENT - required entry not available to return.
1738 struct rte_mempool *rte_mempool_lookup(const char *name);
1741 * Get the header, trailer and total size of a mempool element.
1743 * Given a desired size of the mempool element and mempool flags,
1744 * calculates header, trailer, body and total sizes of the mempool object.
1747 * The size of each element, without header and trailer.
1749 * The flags used for the mempool creation.
1750 * Consult rte_mempool_create() for more information about possible values.
1751 * The size of each element.
1753 * The calculated detailed size the mempool object. May be NULL.
1755 * Total size of the mempool object.
1757 uint32_t rte_mempool_calc_obj_size(uint32_t elt_size, uint32_t flags,
1758 struct rte_mempool_objsz *sz);
1761 * Walk list of all memory pools
1766 * Argument passed to iterator
1768 void rte_mempool_walk(void (*func)(struct rte_mempool *, void *arg),
1772 * @internal Get page size used for mempool object allocation.
1773 * This function is internal to mempool library and mempool drivers.
1776 rte_mempool_get_page_size(struct rte_mempool *mp, size_t *pg_sz);
1782 #endif /* _RTE_MEMPOOL_H_ */