mempool: prevent objects from being across pages
[dpdk.git] / lib / librte_mempool / rte_mempool.h
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation.
3  * Copyright(c) 2016 6WIND S.A.
4  */
5
6 #ifndef _RTE_MEMPOOL_H_
7 #define _RTE_MEMPOOL_H_
8
9 /**
10  * @file
11  * RTE Mempool.
12  *
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.
18  *
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
23  * new object.
24  *
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 non-EAL threads. Instead, non-EAL threads should call
32  * rte_mempool_generic_get() or rte_mempool_generic_put() with a user cache
33  * created with rte_mempool_cache_create().
34  */
35
36 #include <stdio.h>
37 #include <stdlib.h>
38 #include <stdint.h>
39 #include <errno.h>
40 #include <inttypes.h>
41 #include <sys/queue.h>
42
43 #include <rte_config.h>
44 #include <rte_spinlock.h>
45 #include <rte_log.h>
46 #include <rte_debug.h>
47 #include <rte_lcore.h>
48 #include <rte_memory.h>
49 #include <rte_branch_prediction.h>
50 #include <rte_ring.h>
51 #include <rte_memcpy.h>
52 #include <rte_common.h>
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif
57
58 #define RTE_MEMPOOL_HEADER_COOKIE1  0xbadbadbadadd2e55ULL /**< Header cookie. */
59 #define RTE_MEMPOOL_HEADER_COOKIE2  0xf2eef2eedadd2e55ULL /**< Header cookie. */
60 #define RTE_MEMPOOL_TRAILER_COOKIE  0xadd2e55badbadbadULL /**< Trailer cookie.*/
61
62 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
63 /**
64  * A structure that stores the mempool statistics (per-lcore).
65  */
66 struct rte_mempool_debug_stats {
67         uint64_t put_bulk;         /**< Number of puts. */
68         uint64_t put_objs;         /**< Number of objects successfully put. */
69         uint64_t get_success_bulk; /**< Successful allocation number. */
70         uint64_t get_success_objs; /**< Objects successfully allocated. */
71         uint64_t get_fail_bulk;    /**< Failed allocation number. */
72         uint64_t get_fail_objs;    /**< Objects that failed to be allocated. */
73         /** Successful allocation number of contiguous blocks. */
74         uint64_t get_success_blks;
75         /** Failed allocation number of contiguous blocks. */
76         uint64_t get_fail_blks;
77 } __rte_cache_aligned;
78 #endif
79
80 /**
81  * A structure that stores a per-core object cache.
82  */
83 struct rte_mempool_cache {
84         uint32_t size;        /**< Size of the cache */
85         uint32_t flushthresh; /**< Threshold before we flush excess elements */
86         uint32_t len;         /**< Current cache count */
87         /*
88          * Cache is allocated to this size to allow it to overflow in certain
89          * cases to avoid needless emptying of cache.
90          */
91         void *objs[RTE_MEMPOOL_CACHE_MAX_SIZE * 3]; /**< Cache objects */
92 } __rte_cache_aligned;
93
94 /**
95  * A structure that stores the size of mempool elements.
96  */
97 struct rte_mempool_objsz {
98         uint32_t elt_size;     /**< Size of an element. */
99         uint32_t header_size;  /**< Size of header (before elt). */
100         uint32_t trailer_size; /**< Size of trailer (after elt). */
101         uint32_t total_size;
102         /**< Total size of an object (header + elt + trailer). */
103 };
104
105 /**< Maximum length of a memory pool's name. */
106 #define RTE_MEMPOOL_NAMESIZE (RTE_RING_NAMESIZE - \
107                               sizeof(RTE_MEMPOOL_MZ_PREFIX) + 1)
108 #define RTE_MEMPOOL_MZ_PREFIX "MP_"
109
110 /* "MP_<name>" */
111 #define RTE_MEMPOOL_MZ_FORMAT   RTE_MEMPOOL_MZ_PREFIX "%s"
112
113 #define MEMPOOL_PG_SHIFT_MAX    (sizeof(uintptr_t) * CHAR_BIT - 1)
114
115 /** Mempool over one chunk of physically continuous memory */
116 #define MEMPOOL_PG_NUM_DEFAULT  1
117
118 #ifndef RTE_MEMPOOL_ALIGN
119 #define RTE_MEMPOOL_ALIGN       RTE_CACHE_LINE_SIZE
120 #endif
121
122 #define RTE_MEMPOOL_ALIGN_MASK  (RTE_MEMPOOL_ALIGN - 1)
123
124 /**
125  * Mempool object header structure
126  *
127  * Each object stored in mempools are prefixed by this header structure,
128  * it allows to retrieve the mempool pointer from the object and to
129  * iterate on all objects attached to a mempool. When debug is enabled,
130  * a cookie is also added in this structure preventing corruptions and
131  * double-frees.
132  */
133 struct rte_mempool_objhdr {
134         STAILQ_ENTRY(rte_mempool_objhdr) next; /**< Next in list. */
135         struct rte_mempool *mp;          /**< The mempool owning the object. */
136         RTE_STD_C11
137         union {
138                 rte_iova_t iova;         /**< IO address of the object. */
139                 phys_addr_t physaddr;    /**< deprecated - Physical address of the object. */
140         };
141 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
142         uint64_t cookie;                 /**< Debug cookie. */
143 #endif
144 };
145
146 /**
147  * A list of object headers type
148  */
149 STAILQ_HEAD(rte_mempool_objhdr_list, rte_mempool_objhdr);
150
151 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
152
153 /**
154  * Mempool object trailer structure
155  *
156  * In debug mode, each object stored in mempools are suffixed by this
157  * trailer structure containing a cookie preventing memory corruptions.
158  */
159 struct rte_mempool_objtlr {
160         uint64_t cookie;                 /**< Debug cookie. */
161 };
162
163 #endif
164
165 /**
166  * A list of memory where objects are stored
167  */
168 STAILQ_HEAD(rte_mempool_memhdr_list, rte_mempool_memhdr);
169
170 /**
171  * Callback used to free a memory chunk
172  */
173 typedef void (rte_mempool_memchunk_free_cb_t)(struct rte_mempool_memhdr *memhdr,
174         void *opaque);
175
176 /**
177  * Mempool objects memory header structure
178  *
179  * The memory chunks where objects are stored. Each chunk is virtually
180  * and physically contiguous.
181  */
182 struct rte_mempool_memhdr {
183         STAILQ_ENTRY(rte_mempool_memhdr) next; /**< Next in list. */
184         struct rte_mempool *mp;  /**< The mempool owning the chunk */
185         void *addr;              /**< Virtual address of the chunk */
186         RTE_STD_C11
187         union {
188                 rte_iova_t iova;       /**< IO address of the chunk */
189                 phys_addr_t phys_addr; /**< Physical address of the chunk */
190         };
191         size_t len;              /**< length of the chunk */
192         rte_mempool_memchunk_free_cb_t *free_cb; /**< Free callback */
193         void *opaque;            /**< Argument passed to the free callback */
194 };
195
196 /**
197  * @warning
198  * @b EXPERIMENTAL: this API may change without prior notice.
199  *
200  * Additional information about the mempool
201  *
202  * The structure is cache-line aligned to avoid ABI breakages in
203  * a number of cases when something small is added.
204  */
205 struct rte_mempool_info {
206         /** Number of objects in the contiguous block */
207         unsigned int contig_block_size;
208 } __rte_cache_aligned;
209
210 /**
211  * The RTE mempool structure.
212  */
213 struct rte_mempool {
214         /*
215          * Note: this field kept the RTE_MEMZONE_NAMESIZE size due to ABI
216          * compatibility requirements, it could be changed to
217          * RTE_MEMPOOL_NAMESIZE next time the ABI changes
218          */
219         char name[RTE_MEMZONE_NAMESIZE]; /**< Name of mempool. */
220         RTE_STD_C11
221         union {
222                 void *pool_data;         /**< Ring or pool to store objects. */
223                 uint64_t pool_id;        /**< External mempool identifier. */
224         };
225         void *pool_config;               /**< optional args for ops alloc. */
226         const struct rte_memzone *mz;    /**< Memzone where pool is alloc'd. */
227         unsigned int flags;              /**< Flags of the mempool. */
228         int socket_id;                   /**< Socket id passed at create. */
229         uint32_t size;                   /**< Max size of the mempool. */
230         uint32_t cache_size;
231         /**< Size of per-lcore default local cache. */
232
233         uint32_t elt_size;               /**< Size of an element. */
234         uint32_t header_size;            /**< Size of header (before elt). */
235         uint32_t trailer_size;           /**< Size of trailer (after elt). */
236
237         unsigned private_data_size;      /**< Size of private data. */
238         /**
239          * Index into rte_mempool_ops_table array of mempool ops
240          * structs, which contain callback function pointers.
241          * We're using an index here rather than pointers to the callbacks
242          * to facilitate any secondary processes that may want to use
243          * this mempool.
244          */
245         int32_t ops_index;
246
247         struct rte_mempool_cache *local_cache; /**< Per-lcore local cache */
248
249         uint32_t populated_size;         /**< Number of populated objects. */
250         struct rte_mempool_objhdr_list elt_list; /**< List of objects in pool */
251         uint32_t nb_mem_chunks;          /**< Number of memory chunks */
252         struct rte_mempool_memhdr_list mem_list; /**< List of memory chunks */
253
254 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
255         /** Per-lcore statistics. */
256         struct rte_mempool_debug_stats stats[RTE_MAX_LCORE];
257 #endif
258 }  __rte_cache_aligned;
259
260 #define MEMPOOL_F_NO_SPREAD      0x0001 /**< Do not spread among memory channels. */
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. */
266 #define MEMPOOL_F_NO_PHYS_CONTIG MEMPOOL_F_NO_IOVA_CONTIG /* deprecated */
267
268 /**
269  * @internal When debug is enabled, store some statistics.
270  *
271  * @param mp
272  *   Pointer to the memory pool.
273  * @param name
274  *   Name of the statistics field to increment in the memory pool.
275  * @param n
276  *   Number to add to the object-oriented statistics.
277  */
278 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
279 #define __MEMPOOL_STAT_ADD(mp, name, n) do {                    \
280                 unsigned __lcore_id = rte_lcore_id();           \
281                 if (__lcore_id < RTE_MAX_LCORE) {               \
282                         mp->stats[__lcore_id].name##_objs += n; \
283                         mp->stats[__lcore_id].name##_bulk += 1; \
284                 }                                               \
285         } while(0)
286 #define __MEMPOOL_CONTIG_BLOCKS_STAT_ADD(mp, name, n) do {                    \
287                 unsigned int __lcore_id = rte_lcore_id();       \
288                 if (__lcore_id < RTE_MAX_LCORE) {               \
289                         mp->stats[__lcore_id].name##_blks += n; \
290                         mp->stats[__lcore_id].name##_bulk += 1; \
291                 }                                               \
292         } while (0)
293 #else
294 #define __MEMPOOL_STAT_ADD(mp, name, n) do {} while(0)
295 #define __MEMPOOL_CONTIG_BLOCKS_STAT_ADD(mp, name, n) do {} while (0)
296 #endif
297
298 /**
299  * Calculate the size of the mempool header.
300  *
301  * @param mp
302  *   Pointer to the memory pool.
303  * @param cs
304  *   Size of the per-lcore cache.
305  */
306 #define MEMPOOL_HEADER_SIZE(mp, cs) \
307         (sizeof(*(mp)) + (((cs) == 0) ? 0 : \
308         (sizeof(struct rte_mempool_cache) * RTE_MAX_LCORE)))
309
310 /* return the header of a mempool object (internal) */
311 static inline struct rte_mempool_objhdr *__mempool_get_header(void *obj)
312 {
313         return (struct rte_mempool_objhdr *)RTE_PTR_SUB(obj,
314                 sizeof(struct rte_mempool_objhdr));
315 }
316
317 /**
318  * Return a pointer to the mempool owning this object.
319  *
320  * @param obj
321  *   An object that is owned by a pool. If this is not the case,
322  *   the behavior is undefined.
323  * @return
324  *   A pointer to the mempool structure.
325  */
326 static inline struct rte_mempool *rte_mempool_from_obj(void *obj)
327 {
328         struct rte_mempool_objhdr *hdr = __mempool_get_header(obj);
329         return hdr->mp;
330 }
331
332 /* return the trailer of a mempool object (internal) */
333 static inline struct rte_mempool_objtlr *__mempool_get_trailer(void *obj)
334 {
335         struct rte_mempool *mp = rte_mempool_from_obj(obj);
336         return (struct rte_mempool_objtlr *)RTE_PTR_ADD(obj, mp->elt_size);
337 }
338
339 /**
340  * @internal Check and update cookies or panic.
341  *
342  * @param mp
343  *   Pointer to the memory pool.
344  * @param obj_table_const
345  *   Pointer to a table of void * pointers (objects).
346  * @param n
347  *   Index of object in object table.
348  * @param free
349  *   - 0: object is supposed to be allocated, mark it as free
350  *   - 1: object is supposed to be free, mark it as allocated
351  *   - 2: just check that cookie is valid (free or allocated)
352  */
353 void rte_mempool_check_cookies(const struct rte_mempool *mp,
354         void * const *obj_table_const, unsigned n, int free);
355
356 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
357 #define __mempool_check_cookies(mp, obj_table_const, n, free) \
358         rte_mempool_check_cookies(mp, obj_table_const, n, free)
359 #else
360 #define __mempool_check_cookies(mp, obj_table_const, n, free) do {} while(0)
361 #endif /* RTE_LIBRTE_MEMPOOL_DEBUG */
362
363 /**
364  * @warning
365  * @b EXPERIMENTAL: this API may change without prior notice.
366  *
367  * @internal Check contiguous object blocks and update cookies or panic.
368  *
369  * @param mp
370  *   Pointer to the memory pool.
371  * @param first_obj_table_const
372  *   Pointer to a table of void * pointers (first object of the contiguous
373  *   object blocks).
374  * @param n
375  *   Number of contiguous object blocks.
376  * @param free
377  *   - 0: object is supposed to be allocated, mark it as free
378  *   - 1: object is supposed to be free, mark it as allocated
379  *   - 2: just check that cookie is valid (free or allocated)
380  */
381 void rte_mempool_contig_blocks_check_cookies(const struct rte_mempool *mp,
382         void * const *first_obj_table_const, unsigned int n, int free);
383
384 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
385 #define __mempool_contig_blocks_check_cookies(mp, first_obj_table_const, n, \
386                                               free) \
387         rte_mempool_contig_blocks_check_cookies(mp, first_obj_table_const, n, \
388                                                 free)
389 #else
390 #define __mempool_contig_blocks_check_cookies(mp, first_obj_table_const, n, \
391                                               free) \
392         do {} while (0)
393 #endif /* RTE_LIBRTE_MEMPOOL_DEBUG */
394
395 #define RTE_MEMPOOL_OPS_NAMESIZE 32 /**< Max length of ops struct name. */
396
397 /**
398  * Prototype for implementation specific data provisioning function.
399  *
400  * The function should provide the implementation specific memory for
401  * use by the other mempool ops functions in a given mempool ops struct.
402  * E.g. the default ops provides an instance of the rte_ring for this purpose.
403  * it will most likely point to a different type of data structure, and
404  * will be transparent to the application programmer.
405  * This function should set mp->pool_data.
406  */
407 typedef int (*rte_mempool_alloc_t)(struct rte_mempool *mp);
408
409 /**
410  * Free the opaque private data pointed to by mp->pool_data pointer.
411  */
412 typedef void (*rte_mempool_free_t)(struct rte_mempool *mp);
413
414 /**
415  * Enqueue an object into the external pool.
416  */
417 typedef int (*rte_mempool_enqueue_t)(struct rte_mempool *mp,
418                 void * const *obj_table, unsigned int n);
419
420 /**
421  * Dequeue an object from the external pool.
422  */
423 typedef int (*rte_mempool_dequeue_t)(struct rte_mempool *mp,
424                 void **obj_table, unsigned int n);
425
426 /**
427  * @warning
428  * @b EXPERIMENTAL: this API may change without prior notice.
429  *
430  * Dequeue a number of contiguous object blocks from the external pool.
431  */
432 typedef int (*rte_mempool_dequeue_contig_blocks_t)(struct rte_mempool *mp,
433                  void **first_obj_table, unsigned int n);
434
435 /**
436  * Return the number of available objects in the external pool.
437  */
438 typedef unsigned (*rte_mempool_get_count)(const struct rte_mempool *mp);
439
440 /**
441  * Calculate memory size required to store given number of objects.
442  *
443  * If mempool objects are not required to be IOVA-contiguous
444  * (the flag MEMPOOL_F_NO_IOVA_CONTIG is set), min_chunk_size defines
445  * virtually contiguous chunk size. Otherwise, if mempool objects must
446  * be IOVA-contiguous (the flag MEMPOOL_F_NO_IOVA_CONTIG is clear),
447  * min_chunk_size defines IOVA-contiguous chunk size.
448  *
449  * @param[in] mp
450  *   Pointer to the memory pool.
451  * @param[in] obj_num
452  *   Number of objects.
453  * @param[in] pg_shift
454  *   LOG2 of the physical pages size. If set to 0, ignore page boundaries.
455  * @param[out] min_chunk_size
456  *   Location for minimum size of the memory chunk which may be used to
457  *   store memory pool objects.
458  * @param[out] align
459  *   Location for required memory chunk alignment.
460  * @return
461  *   Required memory size.
462  */
463 typedef ssize_t (*rte_mempool_calc_mem_size_t)(const struct rte_mempool *mp,
464                 uint32_t obj_num,  uint32_t pg_shift,
465                 size_t *min_chunk_size, size_t *align);
466
467 /**
468  * @warning
469  * @b EXPERIMENTAL: this API may change without prior notice.
470  *
471  * @internal Helper to calculate memory size required to store given
472  * number of objects.
473  *
474  * This function is internal to mempool library and mempool drivers.
475  *
476  * If page boundaries may be ignored, it is just a product of total
477  * object size including header and trailer and number of objects.
478  * Otherwise, it is a number of pages required to store given number of
479  * objects without crossing page boundary.
480  *
481  * Note that if object size is bigger than page size, then it assumes
482  * that pages are grouped in subsets of physically continuous pages big
483  * enough to store at least one object.
484  *
485  * Minimum size of memory chunk is the total element size.
486  * Required memory chunk alignment is the cache line size.
487  *
488  * @param[in] mp
489  *   A pointer to the mempool structure.
490  * @param[in] obj_num
491  *   Number of objects to be added in mempool.
492  * @param[in] pg_shift
493  *   LOG2 of the physical pages size. If set to 0, ignore page boundaries.
494  * @param[in] chunk_reserve
495  *   Amount of memory that must be reserved at the beginning of each page,
496  *   or at the beginning of the memory area if pg_shift is 0.
497  * @param[out] min_chunk_size
498  *   Location for minimum size of the memory chunk which may be used to
499  *   store memory pool objects.
500  * @param[out] align
501  *   Location for required memory chunk alignment.
502  * @return
503  *   Required memory size.
504  */
505 __rte_experimental
506 ssize_t rte_mempool_op_calc_mem_size_helper(const struct rte_mempool *mp,
507                 uint32_t obj_num, uint32_t pg_shift, size_t chunk_reserve,
508                 size_t *min_chunk_size, size_t *align);
509
510 /**
511  * Default way to calculate memory size required to store given number of
512  * objects.
513  *
514  * Equivalent to rte_mempool_op_calc_mem_size_helper(mp, obj_num, pg_shift,
515  * 0, min_chunk_size, align).
516  */
517 ssize_t rte_mempool_op_calc_mem_size_default(const struct rte_mempool *mp,
518                 uint32_t obj_num, uint32_t pg_shift,
519                 size_t *min_chunk_size, size_t *align);
520
521 /**
522  * Function to be called for each populated object.
523  *
524  * @param[in] mp
525  *   A pointer to the mempool structure.
526  * @param[in] opaque
527  *   An opaque pointer passed to iterator.
528  * @param[in] vaddr
529  *   Object virtual address.
530  * @param[in] iova
531  *   Input/output virtual address of the object or RTE_BAD_IOVA.
532  */
533 typedef void (rte_mempool_populate_obj_cb_t)(struct rte_mempool *mp,
534                 void *opaque, void *vaddr, rte_iova_t iova);
535
536 /**
537  * Populate memory pool objects using provided memory chunk.
538  *
539  * Populated objects should be enqueued to the pool, e.g. using
540  * rte_mempool_ops_enqueue_bulk().
541  *
542  * If the given IO address is unknown (iova = RTE_BAD_IOVA),
543  * the chunk doesn't need to be physically contiguous (only virtually),
544  * and allocated objects may span two pages.
545  *
546  * @param[in] mp
547  *   A pointer to the mempool structure.
548  * @param[in] max_objs
549  *   Maximum number of objects to be populated.
550  * @param[in] vaddr
551  *   The virtual address of memory that should be used to store objects.
552  * @param[in] iova
553  *   The IO address
554  * @param[in] len
555  *   The length of memory in bytes.
556  * @param[in] obj_cb
557  *   Callback function to be executed for each populated object.
558  * @param[in] obj_cb_arg
559  *   An opaque pointer passed to the callback function.
560  * @return
561  *   The number of objects added on success.
562  *   On error, no objects are populated and a negative errno is returned.
563  */
564 typedef int (*rte_mempool_populate_t)(struct rte_mempool *mp,
565                 unsigned int max_objs,
566                 void *vaddr, rte_iova_t iova, size_t len,
567                 rte_mempool_populate_obj_cb_t *obj_cb, void *obj_cb_arg);
568
569 /**
570  * Align objects on addresses multiple of total_elt_sz.
571  */
572 #define RTE_MEMPOOL_POPULATE_F_ALIGN_OBJ 0x0001
573
574 /**
575  * @warning
576  * @b EXPERIMENTAL: this API may change without prior notice.
577  *
578  * @internal Helper to populate memory pool object using provided memory
579  * chunk: just slice objects one by one, taking care of not
580  * crossing page boundaries.
581  *
582  * If RTE_MEMPOOL_POPULATE_F_ALIGN_OBJ is set in flags, the addresses
583  * of object headers will be aligned on a multiple of total_elt_sz.
584  * This feature is used by octeontx hardware.
585  *
586  * This function is internal to mempool library and mempool drivers.
587  *
588  * @param[in] mp
589  *   A pointer to the mempool structure.
590  * @param[in] flags
591  *   Logical OR of following flags:
592  *   - RTE_MEMPOOL_POPULATE_F_ALIGN_OBJ: align objects on addresses
593  *     multiple of total_elt_sz.
594  * @param[in] max_objs
595  *   Maximum number of objects to be added in mempool.
596  * @param[in] vaddr
597  *   The virtual address of memory that should be used to store objects.
598  * @param[in] iova
599  *   The IO address corresponding to vaddr, or RTE_BAD_IOVA.
600  * @param[in] len
601  *   The length of memory in bytes.
602  * @param[in] obj_cb
603  *   Callback function to be executed for each populated object.
604  * @param[in] obj_cb_arg
605  *   An opaque pointer passed to the callback function.
606  * @return
607  *   The number of objects added in mempool.
608  */
609 __rte_experimental
610 int rte_mempool_op_populate_helper(struct rte_mempool *mp,
611                 unsigned int flags, unsigned int max_objs,
612                 void *vaddr, rte_iova_t iova, size_t len,
613                 rte_mempool_populate_obj_cb_t *obj_cb, void *obj_cb_arg);
614
615 /**
616  * Default way to populate memory pool object using provided memory chunk.
617  *
618  * Equivalent to rte_mempool_op_populate_helper(mp, 0, max_objs, vaddr, iova,
619  * len, obj_cb, obj_cb_arg).
620  */
621 int rte_mempool_op_populate_default(struct rte_mempool *mp,
622                 unsigned int max_objs,
623                 void *vaddr, rte_iova_t iova, size_t len,
624                 rte_mempool_populate_obj_cb_t *obj_cb, void *obj_cb_arg);
625
626 /**
627  * @warning
628  * @b EXPERIMENTAL: this API may change without prior notice.
629  *
630  * Get some additional information about a mempool.
631  */
632 typedef int (*rte_mempool_get_info_t)(const struct rte_mempool *mp,
633                 struct rte_mempool_info *info);
634
635
636 /** Structure defining mempool operations structure */
637 struct rte_mempool_ops {
638         char name[RTE_MEMPOOL_OPS_NAMESIZE]; /**< Name of mempool ops struct. */
639         rte_mempool_alloc_t alloc;       /**< Allocate private data. */
640         rte_mempool_free_t free;         /**< Free the external pool. */
641         rte_mempool_enqueue_t enqueue;   /**< Enqueue an object. */
642         rte_mempool_dequeue_t dequeue;   /**< Dequeue an object. */
643         rte_mempool_get_count get_count; /**< Get qty of available objs. */
644         /**
645          * Optional callback to calculate memory size required to
646          * store specified number of objects.
647          */
648         rte_mempool_calc_mem_size_t calc_mem_size;
649         /**
650          * Optional callback to populate mempool objects using
651          * provided memory chunk.
652          */
653         rte_mempool_populate_t populate;
654         /**
655          * Get mempool info
656          */
657         rte_mempool_get_info_t get_info;
658         /**
659          * Dequeue a number of contiguous object blocks.
660          */
661         rte_mempool_dequeue_contig_blocks_t dequeue_contig_blocks;
662 } __rte_cache_aligned;
663
664 #define RTE_MEMPOOL_MAX_OPS_IDX 16  /**< Max registered ops structs */
665
666 /**
667  * Structure storing the table of registered ops structs, each of which contain
668  * the function pointers for the mempool ops functions.
669  * Each process has its own storage for this ops struct array so that
670  * the mempools can be shared across primary and secondary processes.
671  * The indices used to access the array are valid across processes, whereas
672  * any function pointers stored directly in the mempool struct would not be.
673  * This results in us simply having "ops_index" in the mempool struct.
674  */
675 struct rte_mempool_ops_table {
676         rte_spinlock_t sl;     /**< Spinlock for add/delete. */
677         uint32_t num_ops;      /**< Number of used ops structs in the table. */
678         /**
679          * Storage for all possible ops structs.
680          */
681         struct rte_mempool_ops ops[RTE_MEMPOOL_MAX_OPS_IDX];
682 } __rte_cache_aligned;
683
684 /** Array of registered ops structs. */
685 extern struct rte_mempool_ops_table rte_mempool_ops_table;
686
687 /**
688  * @internal Get the mempool ops struct from its index.
689  *
690  * @param ops_index
691  *   The index of the ops struct in the ops struct table. It must be a valid
692  *   index: (0 <= idx < num_ops).
693  * @return
694  *   The pointer to the ops struct in the table.
695  */
696 static inline struct rte_mempool_ops *
697 rte_mempool_get_ops(int ops_index)
698 {
699         RTE_VERIFY((ops_index >= 0) && (ops_index < RTE_MEMPOOL_MAX_OPS_IDX));
700
701         return &rte_mempool_ops_table.ops[ops_index];
702 }
703
704 /**
705  * @internal Wrapper for mempool_ops alloc callback.
706  *
707  * @param mp
708  *   Pointer to the memory pool.
709  * @return
710  *   - 0: Success; successfully allocated mempool pool_data.
711  *   - <0: Error; code of alloc function.
712  */
713 int
714 rte_mempool_ops_alloc(struct rte_mempool *mp);
715
716 /**
717  * @internal Wrapper for mempool_ops dequeue callback.
718  *
719  * @param mp
720  *   Pointer to the memory pool.
721  * @param obj_table
722  *   Pointer to a table of void * pointers (objects).
723  * @param n
724  *   Number of objects to get.
725  * @return
726  *   - 0: Success; got n objects.
727  *   - <0: Error; code of dequeue function.
728  */
729 static inline int
730 rte_mempool_ops_dequeue_bulk(struct rte_mempool *mp,
731                 void **obj_table, unsigned n)
732 {
733         struct rte_mempool_ops *ops;
734
735         ops = rte_mempool_get_ops(mp->ops_index);
736         return ops->dequeue(mp, obj_table, n);
737 }
738
739 /**
740  * @internal Wrapper for mempool_ops dequeue_contig_blocks callback.
741  *
742  * @param[in] mp
743  *   Pointer to the memory pool.
744  * @param[out] first_obj_table
745  *   Pointer to a table of void * pointers (first objects).
746  * @param[in] n
747  *   Number of blocks to get.
748  * @return
749  *   - 0: Success; got n objects.
750  *   - <0: Error; code of dequeue function.
751  */
752 static inline int
753 rte_mempool_ops_dequeue_contig_blocks(struct rte_mempool *mp,
754                 void **first_obj_table, unsigned int n)
755 {
756         struct rte_mempool_ops *ops;
757
758         ops = rte_mempool_get_ops(mp->ops_index);
759         RTE_ASSERT(ops->dequeue_contig_blocks != NULL);
760         return ops->dequeue_contig_blocks(mp, first_obj_table, n);
761 }
762
763 /**
764  * @internal wrapper for mempool_ops enqueue callback.
765  *
766  * @param mp
767  *   Pointer to the memory pool.
768  * @param obj_table
769  *   Pointer to a table of void * pointers (objects).
770  * @param n
771  *   Number of objects to put.
772  * @return
773  *   - 0: Success; n objects supplied.
774  *   - <0: Error; code of enqueue function.
775  */
776 static inline int
777 rte_mempool_ops_enqueue_bulk(struct rte_mempool *mp, void * const *obj_table,
778                 unsigned n)
779 {
780         struct rte_mempool_ops *ops;
781
782         ops = rte_mempool_get_ops(mp->ops_index);
783         return ops->enqueue(mp, obj_table, n);
784 }
785
786 /**
787  * @internal wrapper for mempool_ops get_count callback.
788  *
789  * @param mp
790  *   Pointer to the memory pool.
791  * @return
792  *   The number of available objects in the external pool.
793  */
794 unsigned
795 rte_mempool_ops_get_count(const struct rte_mempool *mp);
796
797 /**
798  * @internal wrapper for mempool_ops calc_mem_size callback.
799  * API to calculate size of memory required to store specified number of
800  * object.
801  *
802  * @param[in] mp
803  *   Pointer to the memory pool.
804  * @param[in] obj_num
805  *   Number of objects.
806  * @param[in] pg_shift
807  *   LOG2 of the physical pages size. If set to 0, ignore page boundaries.
808  * @param[out] min_chunk_size
809  *   Location for minimum size of the memory chunk which may be used to
810  *   store memory pool objects.
811  * @param[out] align
812  *   Location for required memory chunk alignment.
813  * @return
814  *   Required memory size aligned at page boundary.
815  */
816 ssize_t rte_mempool_ops_calc_mem_size(const struct rte_mempool *mp,
817                                       uint32_t obj_num, uint32_t pg_shift,
818                                       size_t *min_chunk_size, size_t *align);
819
820 /**
821  * @internal wrapper for mempool_ops populate callback.
822  *
823  * Populate memory pool objects using provided memory chunk.
824  *
825  * @param[in] mp
826  *   A pointer to the mempool structure.
827  * @param[in] max_objs
828  *   Maximum number of objects to be populated.
829  * @param[in] vaddr
830  *   The virtual address of memory that should be used to store objects.
831  * @param[in] iova
832  *   The IO address
833  * @param[in] len
834  *   The length of memory in bytes.
835  * @param[in] obj_cb
836  *   Callback function to be executed for each populated object.
837  * @param[in] obj_cb_arg
838  *   An opaque pointer passed to the callback function.
839  * @return
840  *   The number of objects added on success.
841  *   On error, no objects are populated and a negative errno is returned.
842  */
843 int rte_mempool_ops_populate(struct rte_mempool *mp, unsigned int max_objs,
844                              void *vaddr, rte_iova_t iova, size_t len,
845                              rte_mempool_populate_obj_cb_t *obj_cb,
846                              void *obj_cb_arg);
847
848 /**
849  * @warning
850  * @b EXPERIMENTAL: this API may change without prior notice.
851  *
852  * Wrapper for mempool_ops get_info callback.
853  *
854  * @param[in] mp
855  *   Pointer to the memory pool.
856  * @param[out] info
857  *   Pointer to the rte_mempool_info structure
858  * @return
859  *   - 0: Success; The mempool driver supports retrieving supplementary
860  *        mempool information
861  *   - -ENOTSUP - doesn't support get_info ops (valid case).
862  */
863 __rte_experimental
864 int rte_mempool_ops_get_info(const struct rte_mempool *mp,
865                          struct rte_mempool_info *info);
866
867 /**
868  * @internal wrapper for mempool_ops free callback.
869  *
870  * @param mp
871  *   Pointer to the memory pool.
872  */
873 void
874 rte_mempool_ops_free(struct rte_mempool *mp);
875
876 /**
877  * Set the ops of a mempool.
878  *
879  * This can only be done on a mempool that is not populated, i.e. just after
880  * a call to rte_mempool_create_empty().
881  *
882  * @param mp
883  *   Pointer to the memory pool.
884  * @param name
885  *   Name of the ops structure to use for this mempool.
886  * @param pool_config
887  *   Opaque data that can be passed by the application to the ops functions.
888  * @return
889  *   - 0: Success; the mempool is now using the requested ops functions.
890  *   - -EINVAL - Invalid ops struct name provided.
891  *   - -EEXIST - mempool already has an ops struct assigned.
892  */
893 int
894 rte_mempool_set_ops_byname(struct rte_mempool *mp, const char *name,
895                 void *pool_config);
896
897 /**
898  * Register mempool operations.
899  *
900  * @param ops
901  *   Pointer to an ops structure to register.
902  * @return
903  *   - >=0: Success; return the index of the ops struct in the table.
904  *   - -EINVAL - some missing callbacks while registering ops struct.
905  *   - -ENOSPC - the maximum number of ops structs has been reached.
906  */
907 int rte_mempool_register_ops(const struct rte_mempool_ops *ops);
908
909 /**
910  * Macro to statically register the ops of a mempool handler.
911  * Note that the rte_mempool_register_ops fails silently here when
912  * more than RTE_MEMPOOL_MAX_OPS_IDX is registered.
913  */
914 #define MEMPOOL_REGISTER_OPS(ops)                               \
915         RTE_INIT(mp_hdlr_init_##ops)                            \
916         {                                                       \
917                 rte_mempool_register_ops(&ops);                 \
918         }
919
920 /**
921  * An object callback function for mempool.
922  *
923  * Used by rte_mempool_create() and rte_mempool_obj_iter().
924  */
925 typedef void (rte_mempool_obj_cb_t)(struct rte_mempool *mp,
926                 void *opaque, void *obj, unsigned obj_idx);
927 typedef rte_mempool_obj_cb_t rte_mempool_obj_ctor_t; /* compat */
928
929 /**
930  * A memory callback function for mempool.
931  *
932  * Used by rte_mempool_mem_iter().
933  */
934 typedef void (rte_mempool_mem_cb_t)(struct rte_mempool *mp,
935                 void *opaque, struct rte_mempool_memhdr *memhdr,
936                 unsigned mem_idx);
937
938 /**
939  * A mempool constructor callback function.
940  *
941  * Arguments are the mempool and the opaque pointer given by the user in
942  * rte_mempool_create().
943  */
944 typedef void (rte_mempool_ctor_t)(struct rte_mempool *, void *);
945
946 /**
947  * Create a new mempool named *name* in memory.
948  *
949  * This function uses ``rte_memzone_reserve()`` to allocate memory. The
950  * pool contains n elements of elt_size. Its size is set to n.
951  *
952  * @param name
953  *   The name of the mempool.
954  * @param n
955  *   The number of elements in the mempool. The optimum size (in terms of
956  *   memory usage) for a mempool is when n is a power of two minus one:
957  *   n = (2^q - 1).
958  * @param elt_size
959  *   The size of each element.
960  * @param cache_size
961  *   If cache_size is non-zero, the rte_mempool library will try to
962  *   limit the accesses to the common lockless pool, by maintaining a
963  *   per-lcore object cache. This argument must be lower or equal to
964  *   CONFIG_RTE_MEMPOOL_CACHE_MAX_SIZE and n / 1.5. It is advised to choose
965  *   cache_size to have "n modulo cache_size == 0": if this is
966  *   not the case, some elements will always stay in the pool and will
967  *   never be used. The access to the per-lcore table is of course
968  *   faster than the multi-producer/consumer pool. The cache can be
969  *   disabled if the cache_size argument is set to 0; it can be useful to
970  *   avoid losing objects in cache.
971  * @param private_data_size
972  *   The size of the private data appended after the mempool
973  *   structure. This is useful for storing some private data after the
974  *   mempool structure, as is done for rte_mbuf_pool for example.
975  * @param mp_init
976  *   A function pointer that is called for initialization of the pool,
977  *   before object initialization. The user can initialize the private
978  *   data in this function if needed. This parameter can be NULL if
979  *   not needed.
980  * @param mp_init_arg
981  *   An opaque pointer to data that can be used in the mempool
982  *   constructor function.
983  * @param obj_init
984  *   A function pointer that is called for each object at
985  *   initialization of the pool. The user can set some meta data in
986  *   objects if needed. This parameter can be NULL if not needed.
987  *   The obj_init() function takes the mempool pointer, the init_arg,
988  *   the object pointer and the object number as parameters.
989  * @param obj_init_arg
990  *   An opaque pointer to data that can be used as an argument for
991  *   each call to the object constructor function.
992  * @param socket_id
993  *   The *socket_id* argument is the socket identifier in the case of
994  *   NUMA. The value can be *SOCKET_ID_ANY* if there is no NUMA
995  *   constraint for the reserved zone.
996  * @param flags
997  *   The *flags* arguments is an OR of following flags:
998  *   - MEMPOOL_F_NO_SPREAD: By default, objects addresses are spread
999  *     between channels in RAM: the pool allocator will add padding
1000  *     between objects depending on the hardware configuration. See
1001  *     Memory alignment constraints for details. If this flag is set,
1002  *     the allocator will just align them to a cache line.
1003  *   - MEMPOOL_F_NO_CACHE_ALIGN: By default, the returned objects are
1004  *     cache-aligned. This flag removes this constraint, and no
1005  *     padding will be present between objects. This flag implies
1006  *     MEMPOOL_F_NO_SPREAD.
1007  *   - MEMPOOL_F_SP_PUT: If this flag is set, the default behavior
1008  *     when using rte_mempool_put() or rte_mempool_put_bulk() is
1009  *     "single-producer". Otherwise, it is "multi-producers".
1010  *   - MEMPOOL_F_SC_GET: If this flag is set, the default behavior
1011  *     when using rte_mempool_get() or rte_mempool_get_bulk() is
1012  *     "single-consumer". Otherwise, it is "multi-consumers".
1013  *   - MEMPOOL_F_NO_IOVA_CONTIG: If set, allocated objects won't
1014  *     necessarily be contiguous in IO memory.
1015  * @return
1016  *   The pointer to the new allocated mempool, on success. NULL on error
1017  *   with rte_errno set appropriately. Possible rte_errno values include:
1018  *    - E_RTE_NO_CONFIG - function could not get pointer to rte_config structure
1019  *    - E_RTE_SECONDARY - function was called from a secondary process instance
1020  *    - EINVAL - cache size provided is too large
1021  *    - ENOSPC - the maximum number of memzones has already been allocated
1022  *    - EEXIST - a memzone with the same name already exists
1023  *    - ENOMEM - no appropriate memory area found in which to create memzone
1024  */
1025 struct rte_mempool *
1026 rte_mempool_create(const char *name, unsigned n, unsigned elt_size,
1027                    unsigned cache_size, unsigned private_data_size,
1028                    rte_mempool_ctor_t *mp_init, void *mp_init_arg,
1029                    rte_mempool_obj_cb_t *obj_init, void *obj_init_arg,
1030                    int socket_id, unsigned flags);
1031
1032 /**
1033  * Create an empty mempool
1034  *
1035  * The mempool is allocated and initialized, but it is not populated: no
1036  * memory is allocated for the mempool elements. The user has to call
1037  * rte_mempool_populate_*() to add memory chunks to the pool. Once
1038  * populated, the user may also want to initialize each object with
1039  * rte_mempool_obj_iter().
1040  *
1041  * @param name
1042  *   The name of the mempool.
1043  * @param n
1044  *   The maximum number of elements that can be added in the mempool.
1045  *   The optimum size (in terms of memory usage) for a mempool is when n
1046  *   is a power of two minus one: n = (2^q - 1).
1047  * @param elt_size
1048  *   The size of each element.
1049  * @param cache_size
1050  *   Size of the cache. See rte_mempool_create() for details.
1051  * @param private_data_size
1052  *   The size of the private data appended after the mempool
1053  *   structure. This is useful for storing some private data after the
1054  *   mempool structure, as is done for rte_mbuf_pool for example.
1055  * @param socket_id
1056  *   The *socket_id* argument is the socket identifier in the case of
1057  *   NUMA. The value can be *SOCKET_ID_ANY* if there is no NUMA
1058  *   constraint for the reserved zone.
1059  * @param flags
1060  *   Flags controlling the behavior of the mempool. See
1061  *   rte_mempool_create() for details.
1062  * @return
1063  *   The pointer to the new allocated mempool, on success. NULL on error
1064  *   with rte_errno set appropriately. See rte_mempool_create() for details.
1065  */
1066 struct rte_mempool *
1067 rte_mempool_create_empty(const char *name, unsigned n, unsigned elt_size,
1068         unsigned cache_size, unsigned private_data_size,
1069         int socket_id, unsigned flags);
1070 /**
1071  * Free a mempool
1072  *
1073  * Unlink the mempool from global list, free the memory chunks, and all
1074  * memory referenced by the mempool. The objects must not be used by
1075  * other cores as they will be freed.
1076  *
1077  * @param mp
1078  *   A pointer to the mempool structure.
1079  */
1080 void
1081 rte_mempool_free(struct rte_mempool *mp);
1082
1083 /**
1084  * Add physically contiguous memory for objects in the pool at init
1085  *
1086  * Add a virtually and physically contiguous memory chunk in the pool
1087  * where objects can be instantiated.
1088  *
1089  * If the given IO address is unknown (iova = RTE_BAD_IOVA),
1090  * the chunk doesn't need to be physically contiguous (only virtually),
1091  * and allocated objects may span two pages.
1092  *
1093  * @param mp
1094  *   A pointer to the mempool structure.
1095  * @param vaddr
1096  *   The virtual address of memory that should be used to store objects.
1097  * @param iova
1098  *   The IO address
1099  * @param len
1100  *   The length of memory in bytes.
1101  * @param free_cb
1102  *   The callback used to free this chunk when destroying the mempool.
1103  * @param opaque
1104  *   An opaque argument passed to free_cb.
1105  * @return
1106  *   The number of objects added on success.
1107  *   On error, the chunk is not added in the memory list of the
1108  *   mempool and a negative errno is returned.
1109  */
1110 int rte_mempool_populate_iova(struct rte_mempool *mp, char *vaddr,
1111         rte_iova_t iova, size_t len, rte_mempool_memchunk_free_cb_t *free_cb,
1112         void *opaque);
1113
1114 /**
1115  * Add virtually contiguous memory for objects in the pool at init
1116  *
1117  * Add a virtually contiguous memory chunk in the pool where objects can
1118  * be instantiated.
1119  *
1120  * @param mp
1121  *   A pointer to the mempool structure.
1122  * @param addr
1123  *   The virtual address of memory that should be used to store objects.
1124  * @param len
1125  *   The length of memory in bytes.
1126  * @param pg_sz
1127  *   The size of memory pages in this virtual area.
1128  * @param free_cb
1129  *   The callback used to free this chunk when destroying the mempool.
1130  * @param opaque
1131  *   An opaque argument passed to free_cb.
1132  * @return
1133  *   The number of objects added on success.
1134  *   On error, the chunk is not added in the memory list of the
1135  *   mempool and a negative errno is returned.
1136  */
1137 int
1138 rte_mempool_populate_virt(struct rte_mempool *mp, char *addr,
1139         size_t len, size_t pg_sz, rte_mempool_memchunk_free_cb_t *free_cb,
1140         void *opaque);
1141
1142 /**
1143  * Add memory for objects in the pool at init
1144  *
1145  * This is the default function used by rte_mempool_create() to populate
1146  * the mempool. It adds memory allocated using rte_memzone_reserve().
1147  *
1148  * @param mp
1149  *   A pointer to the mempool structure.
1150  * @return
1151  *   The number of objects added on success.
1152  *   On error, the chunk is not added in the memory list of the
1153  *   mempool and a negative errno is returned.
1154  */
1155 int rte_mempool_populate_default(struct rte_mempool *mp);
1156
1157 /**
1158  * Add memory from anonymous mapping for objects in the pool at init
1159  *
1160  * This function mmap an anonymous memory zone that is locked in
1161  * memory to store the objects of the mempool.
1162  *
1163  * @param mp
1164  *   A pointer to the mempool structure.
1165  * @return
1166  *   The number of objects added on success.
1167  *   On error, the chunk is not added in the memory list of the
1168  *   mempool and a negative errno is returned.
1169  */
1170 int rte_mempool_populate_anon(struct rte_mempool *mp);
1171
1172 /**
1173  * Call a function for each mempool element
1174  *
1175  * Iterate across all objects attached to a rte_mempool and call the
1176  * callback function on it.
1177  *
1178  * @param mp
1179  *   A pointer to an initialized mempool.
1180  * @param obj_cb
1181  *   A function pointer that is called for each object.
1182  * @param obj_cb_arg
1183  *   An opaque pointer passed to the callback function.
1184  * @return
1185  *   Number of objects iterated.
1186  */
1187 uint32_t rte_mempool_obj_iter(struct rte_mempool *mp,
1188         rte_mempool_obj_cb_t *obj_cb, void *obj_cb_arg);
1189
1190 /**
1191  * Call a function for each mempool memory chunk
1192  *
1193  * Iterate across all memory chunks attached to a rte_mempool and call
1194  * the callback function on it.
1195  *
1196  * @param mp
1197  *   A pointer to an initialized mempool.
1198  * @param mem_cb
1199  *   A function pointer that is called for each memory chunk.
1200  * @param mem_cb_arg
1201  *   An opaque pointer passed to the callback function.
1202  * @return
1203  *   Number of memory chunks iterated.
1204  */
1205 uint32_t rte_mempool_mem_iter(struct rte_mempool *mp,
1206         rte_mempool_mem_cb_t *mem_cb, void *mem_cb_arg);
1207
1208 /**
1209  * Dump the status of the mempool to a file.
1210  *
1211  * @param f
1212  *   A pointer to a file for output
1213  * @param mp
1214  *   A pointer to the mempool structure.
1215  */
1216 void rte_mempool_dump(FILE *f, struct rte_mempool *mp);
1217
1218 /**
1219  * Create a user-owned mempool cache.
1220  *
1221  * This can be used by non-EAL threads to enable caching when they
1222  * interact with a mempool.
1223  *
1224  * @param size
1225  *   The size of the mempool cache. See rte_mempool_create()'s cache_size
1226  *   parameter description for more information. The same limits and
1227  *   considerations apply here too.
1228  * @param socket_id
1229  *   The socket identifier in the case of NUMA. The value can be
1230  *   SOCKET_ID_ANY if there is no NUMA constraint for the reserved zone.
1231  */
1232 struct rte_mempool_cache *
1233 rte_mempool_cache_create(uint32_t size, int socket_id);
1234
1235 /**
1236  * Free a user-owned mempool cache.
1237  *
1238  * @param cache
1239  *   A pointer to the mempool cache.
1240  */
1241 void
1242 rte_mempool_cache_free(struct rte_mempool_cache *cache);
1243
1244 /**
1245  * Get a pointer to the per-lcore default mempool cache.
1246  *
1247  * @param mp
1248  *   A pointer to the mempool structure.
1249  * @param lcore_id
1250  *   The logical core id.
1251  * @return
1252  *   A pointer to the mempool cache or NULL if disabled or non-EAL thread.
1253  */
1254 static __rte_always_inline struct rte_mempool_cache *
1255 rte_mempool_default_cache(struct rte_mempool *mp, unsigned lcore_id)
1256 {
1257         if (mp->cache_size == 0)
1258                 return NULL;
1259
1260         if (lcore_id >= RTE_MAX_LCORE)
1261                 return NULL;
1262
1263         return &mp->local_cache[lcore_id];
1264 }
1265
1266 /**
1267  * Flush a user-owned mempool cache to the specified mempool.
1268  *
1269  * @param cache
1270  *   A pointer to the mempool cache.
1271  * @param mp
1272  *   A pointer to the mempool.
1273  */
1274 static __rte_always_inline void
1275 rte_mempool_cache_flush(struct rte_mempool_cache *cache,
1276                         struct rte_mempool *mp)
1277 {
1278         if (cache == NULL)
1279                 cache = rte_mempool_default_cache(mp, rte_lcore_id());
1280         if (cache == NULL || cache->len == 0)
1281                 return;
1282         rte_mempool_ops_enqueue_bulk(mp, cache->objs, cache->len);
1283         cache->len = 0;
1284 }
1285
1286 /**
1287  * @internal Put several objects back in the mempool; used internally.
1288  * @param mp
1289  *   A pointer to the mempool structure.
1290  * @param obj_table
1291  *   A pointer to a table of void * pointers (objects).
1292  * @param n
1293  *   The number of objects to store back in the mempool, must be strictly
1294  *   positive.
1295  * @param cache
1296  *   A pointer to a mempool cache structure. May be NULL if not needed.
1297  */
1298 static __rte_always_inline void
1299 __mempool_generic_put(struct rte_mempool *mp, void * const *obj_table,
1300                       unsigned int n, struct rte_mempool_cache *cache)
1301 {
1302         void **cache_objs;
1303
1304         /* increment stat now, adding in mempool always success */
1305         __MEMPOOL_STAT_ADD(mp, put, n);
1306
1307         /* No cache provided or if put would overflow mem allocated for cache */
1308         if (unlikely(cache == NULL || n > RTE_MEMPOOL_CACHE_MAX_SIZE))
1309                 goto ring_enqueue;
1310
1311         cache_objs = &cache->objs[cache->len];
1312
1313         /*
1314          * The cache follows the following algorithm
1315          *   1. Add the objects to the cache
1316          *   2. Anything greater than the cache min value (if it crosses the
1317          *   cache flush threshold) is flushed to the ring.
1318          */
1319
1320         /* Add elements back into the cache */
1321         rte_memcpy(&cache_objs[0], obj_table, sizeof(void *) * n);
1322
1323         cache->len += n;
1324
1325         if (cache->len >= cache->flushthresh) {
1326                 rte_mempool_ops_enqueue_bulk(mp, &cache->objs[cache->size],
1327                                 cache->len - cache->size);
1328                 cache->len = cache->size;
1329         }
1330
1331         return;
1332
1333 ring_enqueue:
1334
1335         /* push remaining objects in ring */
1336 #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
1337         if (rte_mempool_ops_enqueue_bulk(mp, obj_table, n) < 0)
1338                 rte_panic("cannot put objects in mempool\n");
1339 #else
1340         rte_mempool_ops_enqueue_bulk(mp, obj_table, n);
1341 #endif
1342 }
1343
1344
1345 /**
1346  * Put several objects back in the mempool.
1347  *
1348  * @param mp
1349  *   A pointer to the mempool structure.
1350  * @param obj_table
1351  *   A pointer to a table of void * pointers (objects).
1352  * @param n
1353  *   The number of objects to add in the mempool from the obj_table.
1354  * @param cache
1355  *   A pointer to a mempool cache structure. May be NULL if not needed.
1356  */
1357 static __rte_always_inline void
1358 rte_mempool_generic_put(struct rte_mempool *mp, void * const *obj_table,
1359                         unsigned int n, struct rte_mempool_cache *cache)
1360 {
1361         __mempool_check_cookies(mp, obj_table, n, 0);
1362         __mempool_generic_put(mp, obj_table, n, cache);
1363 }
1364
1365 /**
1366  * Put several objects back in the mempool.
1367  *
1368  * This function calls the multi-producer or the single-producer
1369  * version depending on the default behavior that was specified at
1370  * mempool creation time (see flags).
1371  *
1372  * @param mp
1373  *   A pointer to the mempool structure.
1374  * @param obj_table
1375  *   A pointer to a table of void * pointers (objects).
1376  * @param n
1377  *   The number of objects to add in the mempool from obj_table.
1378  */
1379 static __rte_always_inline void
1380 rte_mempool_put_bulk(struct rte_mempool *mp, void * const *obj_table,
1381                      unsigned int n)
1382 {
1383         struct rte_mempool_cache *cache;
1384         cache = rte_mempool_default_cache(mp, rte_lcore_id());
1385         rte_mempool_generic_put(mp, obj_table, n, cache);
1386 }
1387
1388 /**
1389  * Put one object back in the mempool.
1390  *
1391  * This function calls the multi-producer or the single-producer
1392  * version depending on the default behavior that was specified at
1393  * mempool creation time (see flags).
1394  *
1395  * @param mp
1396  *   A pointer to the mempool structure.
1397  * @param obj
1398  *   A pointer to the object to be added.
1399  */
1400 static __rte_always_inline void
1401 rte_mempool_put(struct rte_mempool *mp, void *obj)
1402 {
1403         rte_mempool_put_bulk(mp, &obj, 1);
1404 }
1405
1406 /**
1407  * @internal Get several objects from the mempool; used internally.
1408  * @param mp
1409  *   A pointer to the mempool structure.
1410  * @param obj_table
1411  *   A pointer to a table of void * pointers (objects).
1412  * @param n
1413  *   The number of objects to get, must be strictly positive.
1414  * @param cache
1415  *   A pointer to a mempool cache structure. May be NULL if not needed.
1416  * @return
1417  *   - >=0: Success; number of objects supplied.
1418  *   - <0: Error; code of ring dequeue function.
1419  */
1420 static __rte_always_inline int
1421 __mempool_generic_get(struct rte_mempool *mp, void **obj_table,
1422                       unsigned int n, struct rte_mempool_cache *cache)
1423 {
1424         int ret;
1425         uint32_t index, len;
1426         void **cache_objs;
1427
1428         /* No cache provided or cannot be satisfied from cache */
1429         if (unlikely(cache == NULL || n >= cache->size))
1430                 goto ring_dequeue;
1431
1432         cache_objs = cache->objs;
1433
1434         /* Can this be satisfied from the cache? */
1435         if (cache->len < n) {
1436                 /* No. Backfill the cache first, and then fill from it */
1437                 uint32_t req = n + (cache->size - cache->len);
1438
1439                 /* How many do we require i.e. number to fill the cache + the request */
1440                 ret = rte_mempool_ops_dequeue_bulk(mp,
1441                         &cache->objs[cache->len], req);
1442                 if (unlikely(ret < 0)) {
1443                         /*
1444                          * In the off chance that we are buffer constrained,
1445                          * where we are not able to allocate cache + n, go to
1446                          * the ring directly. If that fails, we are truly out of
1447                          * buffers.
1448                          */
1449                         goto ring_dequeue;
1450                 }
1451
1452                 cache->len += req;
1453         }
1454
1455         /* Now fill in the response ... */
1456         for (index = 0, len = cache->len - 1; index < n; ++index, len--, obj_table++)
1457                 *obj_table = cache_objs[len];
1458
1459         cache->len -= n;
1460
1461         __MEMPOOL_STAT_ADD(mp, get_success, n);
1462
1463         return 0;
1464
1465 ring_dequeue:
1466
1467         /* get remaining objects from ring */
1468         ret = rte_mempool_ops_dequeue_bulk(mp, obj_table, n);
1469
1470         if (ret < 0)
1471                 __MEMPOOL_STAT_ADD(mp, get_fail, n);
1472         else
1473                 __MEMPOOL_STAT_ADD(mp, get_success, n);
1474
1475         return ret;
1476 }
1477
1478 /**
1479  * Get several objects from the mempool.
1480  *
1481  * If cache is enabled, objects will be retrieved first from cache,
1482  * subsequently from the common pool. Note that it can return -ENOENT when
1483  * the local cache and common pool are empty, even if cache from other
1484  * lcores are full.
1485  *
1486  * @param mp
1487  *   A pointer to the mempool structure.
1488  * @param obj_table
1489  *   A pointer to a table of void * pointers (objects) that will be filled.
1490  * @param n
1491  *   The number of objects to get from mempool to obj_table.
1492  * @param cache
1493  *   A pointer to a mempool cache structure. May be NULL if not needed.
1494  * @return
1495  *   - 0: Success; objects taken.
1496  *   - -ENOENT: Not enough entries in the mempool; no object is retrieved.
1497  */
1498 static __rte_always_inline int
1499 rte_mempool_generic_get(struct rte_mempool *mp, void **obj_table,
1500                         unsigned int n, struct rte_mempool_cache *cache)
1501 {
1502         int ret;
1503         ret = __mempool_generic_get(mp, obj_table, n, cache);
1504         if (ret == 0)
1505                 __mempool_check_cookies(mp, obj_table, n, 1);
1506         return ret;
1507 }
1508
1509 /**
1510  * Get several objects from the mempool.
1511  *
1512  * This function calls the multi-consumers or the single-consumer
1513  * version, depending on the default behaviour that was specified at
1514  * mempool creation time (see flags).
1515  *
1516  * If cache is enabled, objects will be retrieved first from cache,
1517  * subsequently from the common pool. Note that it can return -ENOENT when
1518  * the local cache and common pool are empty, even if cache from other
1519  * lcores are full.
1520  *
1521  * @param mp
1522  *   A pointer to the mempool structure.
1523  * @param obj_table
1524  *   A pointer to a table of void * pointers (objects) that will be filled.
1525  * @param n
1526  *   The number of objects to get from the mempool to obj_table.
1527  * @return
1528  *   - 0: Success; objects taken
1529  *   - -ENOENT: Not enough entries in the mempool; no object is retrieved.
1530  */
1531 static __rte_always_inline int
1532 rte_mempool_get_bulk(struct rte_mempool *mp, void **obj_table, unsigned int n)
1533 {
1534         struct rte_mempool_cache *cache;
1535         cache = rte_mempool_default_cache(mp, rte_lcore_id());
1536         return rte_mempool_generic_get(mp, obj_table, n, cache);
1537 }
1538
1539 /**
1540  * Get one object from the mempool.
1541  *
1542  * This function calls the multi-consumers or the single-consumer
1543  * version, depending on the default behavior that was specified at
1544  * mempool creation (see flags).
1545  *
1546  * If cache is enabled, objects will be retrieved first from cache,
1547  * subsequently from the common pool. Note that it can return -ENOENT when
1548  * the local cache and common pool are empty, even if cache from other
1549  * lcores are full.
1550  *
1551  * @param mp
1552  *   A pointer to the mempool structure.
1553  * @param obj_p
1554  *   A pointer to a void * pointer (object) that will be filled.
1555  * @return
1556  *   - 0: Success; objects taken.
1557  *   - -ENOENT: Not enough entries in the mempool; no object is retrieved.
1558  */
1559 static __rte_always_inline int
1560 rte_mempool_get(struct rte_mempool *mp, void **obj_p)
1561 {
1562         return rte_mempool_get_bulk(mp, obj_p, 1);
1563 }
1564
1565 /**
1566  * @warning
1567  * @b EXPERIMENTAL: this API may change without prior notice.
1568  *
1569  * Get a contiguous blocks of objects from the mempool.
1570  *
1571  * If cache is enabled, consider to flush it first, to reuse objects
1572  * as soon as possible.
1573  *
1574  * The application should check that the driver supports the operation
1575  * by calling rte_mempool_ops_get_info() and checking that `contig_block_size`
1576  * is not zero.
1577  *
1578  * @param mp
1579  *   A pointer to the mempool structure.
1580  * @param first_obj_table
1581  *   A pointer to a pointer to the first object in each block.
1582  * @param n
1583  *   The number of blocks to get from mempool.
1584  * @return
1585  *   - 0: Success; blocks taken.
1586  *   - -ENOBUFS: Not enough entries in the mempool; no object is retrieved.
1587  *   - -EOPNOTSUPP: The mempool driver does not support block dequeue
1588  */
1589 static __rte_always_inline int
1590 __rte_experimental
1591 rte_mempool_get_contig_blocks(struct rte_mempool *mp,
1592                               void **first_obj_table, unsigned int n)
1593 {
1594         int ret;
1595
1596         ret = rte_mempool_ops_dequeue_contig_blocks(mp, first_obj_table, n);
1597         if (ret == 0) {
1598                 __MEMPOOL_CONTIG_BLOCKS_STAT_ADD(mp, get_success, n);
1599                 __mempool_contig_blocks_check_cookies(mp, first_obj_table, n,
1600                                                       1);
1601         } else {
1602                 __MEMPOOL_CONTIG_BLOCKS_STAT_ADD(mp, get_fail, n);
1603         }
1604
1605         return ret;
1606 }
1607
1608 /**
1609  * Return the number of entries in the mempool.
1610  *
1611  * When cache is enabled, this function has to browse the length of
1612  * all lcores, so it should not be used in a data path, but only for
1613  * debug purposes. User-owned mempool caches are not accounted for.
1614  *
1615  * @param mp
1616  *   A pointer to the mempool structure.
1617  * @return
1618  *   The number of entries in the mempool.
1619  */
1620 unsigned int rte_mempool_avail_count(const struct rte_mempool *mp);
1621
1622 /**
1623  * Return the number of elements which have been allocated from the mempool
1624  *
1625  * When cache is enabled, this function has to browse the length of
1626  * all lcores, so it should not be used in a data path, but only for
1627  * debug purposes.
1628  *
1629  * @param mp
1630  *   A pointer to the mempool structure.
1631  * @return
1632  *   The number of free entries in the mempool.
1633  */
1634 unsigned int
1635 rte_mempool_in_use_count(const struct rte_mempool *mp);
1636
1637 /**
1638  * Test if the mempool is full.
1639  *
1640  * When cache is enabled, this function has to browse the length of all
1641  * lcores, so it should not be used in a data path, but only for debug
1642  * purposes. User-owned mempool caches are not accounted for.
1643  *
1644  * @param mp
1645  *   A pointer to the mempool structure.
1646  * @return
1647  *   - 1: The mempool is full.
1648  *   - 0: The mempool is not full.
1649  */
1650 static inline int
1651 rte_mempool_full(const struct rte_mempool *mp)
1652 {
1653         return !!(rte_mempool_avail_count(mp) == mp->size);
1654 }
1655
1656 /**
1657  * Test if the mempool is empty.
1658  *
1659  * When cache is enabled, this function has to browse the length of all
1660  * lcores, so it should not be used in a data path, but only for debug
1661  * purposes. User-owned mempool caches are not accounted for.
1662  *
1663  * @param mp
1664  *   A pointer to the mempool structure.
1665  * @return
1666  *   - 1: The mempool is empty.
1667  *   - 0: The mempool is not empty.
1668  */
1669 static inline int
1670 rte_mempool_empty(const struct rte_mempool *mp)
1671 {
1672         return !!(rte_mempool_avail_count(mp) == 0);
1673 }
1674
1675 /**
1676  * Return the IO address of elt, which is an element of the pool mp.
1677  *
1678  * @param elt
1679  *   A pointer (virtual address) to the element of the pool.
1680  * @return
1681  *   The IO address of the elt element.
1682  *   If the mempool was created with MEMPOOL_F_NO_IOVA_CONTIG, the
1683  *   returned value is RTE_BAD_IOVA.
1684  */
1685 static inline rte_iova_t
1686 rte_mempool_virt2iova(const void *elt)
1687 {
1688         const struct rte_mempool_objhdr *hdr;
1689         hdr = (const struct rte_mempool_objhdr *)RTE_PTR_SUB(elt,
1690                 sizeof(*hdr));
1691         return hdr->iova;
1692 }
1693
1694 /**
1695  * Check the consistency of mempool objects.
1696  *
1697  * Verify the coherency of fields in the mempool structure. Also check
1698  * that the cookies of mempool objects (even the ones that are not
1699  * present in pool) have a correct value. If not, a panic will occur.
1700  *
1701  * @param mp
1702  *   A pointer to the mempool structure.
1703  */
1704 void rte_mempool_audit(struct rte_mempool *mp);
1705
1706 /**
1707  * Return a pointer to the private data in an mempool structure.
1708  *
1709  * @param mp
1710  *   A pointer to the mempool structure.
1711  * @return
1712  *   A pointer to the private data.
1713  */
1714 static inline void *rte_mempool_get_priv(struct rte_mempool *mp)
1715 {
1716         return (char *)mp +
1717                 MEMPOOL_HEADER_SIZE(mp, mp->cache_size);
1718 }
1719
1720 /**
1721  * Dump the status of all mempools on the console
1722  *
1723  * @param f
1724  *   A pointer to a file for output
1725  */
1726 void rte_mempool_list_dump(FILE *f);
1727
1728 /**
1729  * Search a mempool from its name
1730  *
1731  * @param name
1732  *   The name of the mempool.
1733  * @return
1734  *   The pointer to the mempool matching the name, or NULL if not found.
1735  *   NULL on error
1736  *   with rte_errno set appropriately. Possible rte_errno values include:
1737  *    - ENOENT - required entry not available to return.
1738  *
1739  */
1740 struct rte_mempool *rte_mempool_lookup(const char *name);
1741
1742 /**
1743  * Get the header, trailer and total size of a mempool element.
1744  *
1745  * Given a desired size of the mempool element and mempool flags,
1746  * calculates header, trailer, body and total sizes of the mempool object.
1747  *
1748  * @param elt_size
1749  *   The size of each element, without header and trailer.
1750  * @param flags
1751  *   The flags used for the mempool creation.
1752  *   Consult rte_mempool_create() for more information about possible values.
1753  *   The size of each element.
1754  * @param sz
1755  *   The calculated detailed size the mempool object. May be NULL.
1756  * @return
1757  *   Total size of the mempool object.
1758  */
1759 uint32_t rte_mempool_calc_obj_size(uint32_t elt_size, uint32_t flags,
1760         struct rte_mempool_objsz *sz);
1761
1762 /**
1763  * Walk list of all memory pools
1764  *
1765  * @param func
1766  *   Iterator function
1767  * @param arg
1768  *   Argument passed to iterator
1769  */
1770 void rte_mempool_walk(void (*func)(struct rte_mempool *, void *arg),
1771                       void *arg);
1772
1773 /**
1774  * @warning
1775  * @b EXPERIMENTAL: this API may change without prior notice.
1776  *
1777  * @internal Get page size used for mempool object allocation.
1778  * This function is internal to mempool library and mempool drivers.
1779  */
1780 __rte_experimental
1781 int
1782 rte_mempool_get_page_size(struct rte_mempool *mp, size_t *pg_sz);
1783
1784 #ifdef __cplusplus
1785 }
1786 #endif
1787
1788 #endif /* _RTE_MEMPOOL_H_ */