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