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