Branch data Line data Source code
1 : : /* SPDX-License-Identifier: BSD-3-Clause
2 : : * Copyright(c) 2010-2014 Intel Corporation.
3 : : * Copyright(c) 2016 6WIND S.A.
4 : : * Copyright(c) 2022 SmartShare Systems
5 : : */
6 : :
7 : : #include <stdbool.h>
8 : : #include <stdlib.h>
9 : : #include <stdio.h>
10 : : #include <string.h>
11 : : #include <stdint.h>
12 : : #include <unistd.h>
13 : : #include <inttypes.h>
14 : : #include <errno.h>
15 : : #include <sys/queue.h>
16 : :
17 : : #include <rte_common.h>
18 : : #include <rte_log.h>
19 : : #include <rte_debug.h>
20 : : #include <rte_memory.h>
21 : : #include <rte_memzone.h>
22 : : #include <rte_malloc.h>
23 : : #include <rte_eal.h>
24 : : #include <rte_eal_memconfig.h>
25 : : #include <rte_errno.h>
26 : : #include <rte_string_fns.h>
27 : : #include <rte_tailq.h>
28 : : #include <rte_eal_paging.h>
29 : : #include <rte_telemetry.h>
30 : :
31 : : #include "mempool_trace.h"
32 : : #include "rte_mempool.h"
33 : :
34 [ - + ]: 252 : RTE_LOG_REGISTER_DEFAULT(rte_mempool_logtype, INFO);
35 : :
36 : : TAILQ_HEAD(rte_mempool_list, rte_tailq_entry);
37 : :
38 : : static struct rte_tailq_elem rte_mempool_tailq = {
39 : : .name = "RTE_MEMPOOL",
40 : : };
41 [ - + ]: 252 : EAL_REGISTER_TAILQ(rte_mempool_tailq)
42 : :
43 : : TAILQ_HEAD(mempool_callback_tailq, mempool_callback_data);
44 : :
45 : : static struct mempool_callback_tailq callback_tailq =
46 : : TAILQ_HEAD_INITIALIZER(callback_tailq);
47 : :
48 : : /* Invoke all registered mempool event callbacks. */
49 : : static void
50 : : mempool_event_callback_invoke(enum rte_mempool_event event,
51 : : struct rte_mempool *mp);
52 : :
53 : : /* Note: avoid using floating point since that compiler
54 : : * may not think that is constant.
55 : : */
56 : : #define CALC_CACHE_FLUSHTHRESH(c) (((c) * 3) / 2)
57 : :
58 : : #if defined(RTE_ARCH_X86)
59 : : /*
60 : : * return the greatest common divisor between a and b (fast algorithm)
61 : : */
62 : : static unsigned get_gcd(unsigned a, unsigned b)
63 : : {
64 : : unsigned c;
65 : :
66 : 205 : if (0 == a)
67 : : return b;
68 [ + - ]: 205 : if (0 == b)
69 : : return a;
70 : :
71 [ + + ]: 205 : if (a < b) {
72 : : c = a;
73 : : a = b;
74 : : b = c;
75 : : }
76 : :
77 [ + + ]: 542 : while (b != 0) {
78 : 337 : c = a % b;
79 : : a = b;
80 : : b = c;
81 : : }
82 : :
83 : : return a;
84 : : }
85 : :
86 : : /*
87 : : * Depending on memory configuration on x86 arch, objects addresses are spread
88 : : * between channels and ranks in RAM: the pool allocator will add
89 : : * padding between objects. This function return the new size of the
90 : : * object.
91 : : */
92 : : static unsigned int
93 : 121 : arch_mem_object_align(unsigned int obj_size)
94 : : {
95 : : unsigned nrank, nchan;
96 : : unsigned new_obj_size;
97 : :
98 : : /* get number of channels */
99 : 121 : nchan = rte_memory_get_nchannel();
100 [ + - ]: 121 : if (nchan == 0)
101 : : nchan = 4;
102 : :
103 : 121 : nrank = rte_memory_get_nrank();
104 : : if (nrank == 0)
105 : : nrank = 1;
106 : :
107 : : /* process new object size */
108 : 121 : new_obj_size = (obj_size + RTE_MEMPOOL_ALIGN_MASK) / RTE_MEMPOOL_ALIGN;
109 [ + - + + ]: 410 : while (get_gcd(new_obj_size, nrank * nchan) != 1)
110 : 84 : new_obj_size++;
111 : 121 : return new_obj_size * RTE_MEMPOOL_ALIGN;
112 : : }
113 : : #else
114 : : static unsigned int
115 : : arch_mem_object_align(unsigned int obj_size)
116 : : {
117 : : return obj_size;
118 : : }
119 : : #endif
120 : :
121 : : struct pagesz_walk_arg {
122 : : int socket_id;
123 : : size_t min;
124 : : };
125 : :
126 : : static int
127 : 9752 : find_min_pagesz(const struct rte_memseg_list *msl, void *arg)
128 : : {
129 : : struct pagesz_walk_arg *wa = arg;
130 : : bool valid;
131 : :
132 : : /*
133 : : * we need to only look at page sizes available for a particular socket
134 : : * ID. so, we either need an exact match on socket ID (can match both
135 : : * native and external memory), or, if SOCKET_ID_ANY was specified as a
136 : : * socket ID argument, we must only look at native memory and ignore any
137 : : * page sizes associated with external memory.
138 : : */
139 : 9752 : valid = msl->socket_id == wa->socket_id;
140 [ + + - + ]: 9752 : valid |= wa->socket_id == SOCKET_ID_ANY && msl->external == 0;
141 : :
142 [ + + + + ]: 9752 : if (valid && msl->page_sz < wa->min)
143 : 1219 : wa->min = msl->page_sz;
144 : :
145 : 9752 : return 0;
146 : : }
147 : :
148 : : static size_t
149 : 1219 : get_min_page_size(int socket_id)
150 : : {
151 : : struct pagesz_walk_arg wa;
152 : :
153 : 1219 : wa.min = SIZE_MAX;
154 : 1219 : wa.socket_id = socket_id;
155 : :
156 : 1219 : rte_memseg_list_walk(find_min_pagesz, &wa);
157 : :
158 [ - + ]: 1219 : return wa.min == SIZE_MAX ? (size_t) rte_mem_page_size() : wa.min;
159 : : }
160 : :
161 : :
162 : : static void
163 : 44670441 : mempool_add_elem(struct rte_mempool *mp, __rte_unused void *opaque,
164 : : void *obj, rte_iova_t iova)
165 : : {
166 : : struct rte_mempool_objhdr *hdr;
167 : :
168 : : /* set mempool ptr in header */
169 : 44670441 : hdr = RTE_PTR_SUB(obj, sizeof(*hdr));
170 : 44670441 : hdr->mp = mp;
171 : 44670441 : hdr->iova = iova;
172 : 44670441 : STAILQ_INSERT_TAIL(&mp->elt_list, hdr, next);
173 : 44670441 : mp->populated_size++;
174 : :
175 : : #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
176 : : hdr->cookie = RTE_MEMPOOL_HEADER_COOKIE2;
177 : : rte_mempool_get_trailer(obj)->cookie = RTE_MEMPOOL_TRAILER_COOKIE;
178 : : #endif
179 : 44670441 : }
180 : :
181 : : /* call obj_cb() for each mempool element */
182 : : uint32_t
183 : 67 : rte_mempool_obj_iter(struct rte_mempool *mp,
184 : : rte_mempool_obj_cb_t *obj_cb, void *obj_cb_arg)
185 : : {
186 : : struct rte_mempool_objhdr *hdr;
187 : : void *obj;
188 : : unsigned n = 0;
189 : :
190 [ + + ]: 101516 : STAILQ_FOREACH(hdr, &mp->elt_list, next) {
191 : 101449 : obj = (char *)hdr + sizeof(*hdr);
192 : 101449 : obj_cb(mp, obj_cb_arg, obj, n);
193 : 101449 : n++;
194 : : }
195 : :
196 : 67 : return n;
197 : : }
198 : :
199 : : /* call mem_cb() for each mempool memory chunk */
200 : : uint32_t
201 : 1 : rte_mempool_mem_iter(struct rte_mempool *mp,
202 : : rte_mempool_mem_cb_t *mem_cb, void *mem_cb_arg)
203 : : {
204 : : struct rte_mempool_memhdr *hdr;
205 : : unsigned n = 0;
206 : :
207 [ + + ]: 3 : STAILQ_FOREACH(hdr, &mp->mem_list, next) {
208 : 2 : mem_cb(mp, mem_cb_arg, hdr, n);
209 : 2 : n++;
210 : : }
211 : :
212 : 1 : return n;
213 : : }
214 : :
215 : : /* get the header, trailer and total size of a mempool element. */
216 : : uint32_t
217 : 123 : rte_mempool_calc_obj_size(uint32_t elt_size, uint32_t flags,
218 : : struct rte_mempool_objsz *sz)
219 : : {
220 : : struct rte_mempool_objsz lsz;
221 : :
222 [ + - ]: 123 : sz = (sz != NULL) ? sz : &lsz;
223 : :
224 : 123 : sz->header_size = sizeof(struct rte_mempool_objhdr);
225 [ + + ]: 123 : if ((flags & RTE_MEMPOOL_F_NO_CACHE_ALIGN) == 0)
226 : 121 : sz->header_size = RTE_ALIGN_CEIL(sz->header_size,
227 : : RTE_MEMPOOL_ALIGN);
228 : :
229 : : #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
230 : : sz->trailer_size = sizeof(struct rte_mempool_objtlr);
231 : : #else
232 : 123 : sz->trailer_size = 0;
233 : : #endif
234 : :
235 : : /* element size is 8 bytes-aligned at least */
236 : 123 : sz->elt_size = RTE_ALIGN_CEIL(elt_size, sizeof(uint64_t));
237 : :
238 : : /* expand trailer to next cache line */
239 [ + + ]: 123 : if ((flags & RTE_MEMPOOL_F_NO_CACHE_ALIGN) == 0) {
240 : 121 : sz->total_size = sz->header_size + sz->elt_size +
241 : : sz->trailer_size;
242 : 121 : sz->trailer_size += ((RTE_MEMPOOL_ALIGN -
243 : 121 : (sz->total_size & RTE_MEMPOOL_ALIGN_MASK)) &
244 : : RTE_MEMPOOL_ALIGN_MASK);
245 : : }
246 : :
247 : : /*
248 : : * increase trailer to add padding between objects in order to
249 : : * spread them across memory channels/ranks
250 : : */
251 [ + + ]: 123 : if ((flags & RTE_MEMPOOL_F_NO_SPREAD) == 0) {
252 : : unsigned new_size;
253 : 121 : new_size = arch_mem_object_align
254 : 121 : (sz->header_size + sz->elt_size + sz->trailer_size);
255 : 121 : sz->trailer_size = new_size - sz->header_size - sz->elt_size;
256 : : }
257 : :
258 : : /* this is the size of an object, including header and trailer */
259 : 123 : sz->total_size = sz->header_size + sz->elt_size + sz->trailer_size;
260 : :
261 : 123 : return sz->total_size;
262 : : }
263 : :
264 : : /* free a memchunk allocated with rte_memzone_reserve() */
265 : : static void
266 : 100 : rte_mempool_memchunk_mz_free(__rte_unused struct rte_mempool_memhdr *memhdr,
267 : : void *opaque)
268 : : {
269 : : const struct rte_memzone *mz = opaque;
270 : 100 : rte_memzone_free(mz);
271 : 100 : }
272 : :
273 : : /* Free memory chunks used by a mempool. Objects must be in pool */
274 : : static void
275 : 105 : rte_mempool_free_memchunks(struct rte_mempool *mp)
276 : : {
277 : : struct rte_mempool_memhdr *memhdr;
278 : : void *elt;
279 : :
280 [ + + ]: 44663337 : while (!STAILQ_EMPTY(&mp->elt_list)) {
281 : 44663232 : rte_mempool_ops_dequeue_bulk(mp, &elt, 1);
282 : : (void)elt;
283 [ + + ]: 44663232 : STAILQ_REMOVE_HEAD(&mp->elt_list, next);
284 : 44663232 : mp->populated_size--;
285 : : }
286 : :
287 [ + + ]: 1296 : while (!STAILQ_EMPTY(&mp->mem_list)) {
288 : : memhdr = STAILQ_FIRST(&mp->mem_list);
289 [ + + ]: 1191 : STAILQ_REMOVE_HEAD(&mp->mem_list, next);
290 [ + + ]: 1191 : if (memhdr->free_cb != NULL)
291 : 103 : memhdr->free_cb(memhdr, memhdr->opaque);
292 : 1191 : rte_free(memhdr);
293 : 1191 : mp->nb_mem_chunks--;
294 : : }
295 : 105 : }
296 : :
297 : : static int
298 : 1305 : mempool_ops_alloc_once(struct rte_mempool *mp)
299 : : {
300 : : int ret;
301 : :
302 : : /* create the internal ring if not already done */
303 [ + + ]: 1305 : if ((mp->flags & RTE_MEMPOOL_F_POOL_CREATED) == 0) {
304 : 110 : ret = rte_mempool_ops_alloc(mp);
305 [ + - ]: 110 : if (ret != 0)
306 : : return ret;
307 : 110 : mp->flags |= RTE_MEMPOOL_F_POOL_CREATED;
308 : : }
309 : : return 0;
310 : : }
311 : :
312 : : /* Add objects in the pool, using a physically contiguous memory
313 : : * zone. Return the number of objects added, or a negative value
314 : : * on error.
315 : : */
316 : : int
317 : 1197 : rte_mempool_populate_iova(struct rte_mempool *mp, char *vaddr,
318 : : rte_iova_t iova, size_t len, rte_mempool_memchunk_free_cb_t *free_cb,
319 : : void *opaque)
320 : : {
321 : : unsigned i = 0;
322 : : size_t off;
323 : : struct rte_mempool_memhdr *memhdr;
324 : : int ret;
325 : :
326 : 1197 : ret = mempool_ops_alloc_once(mp);
327 [ + - ]: 1197 : if (ret != 0)
328 : : return ret;
329 : :
330 : : /* mempool is already populated */
331 [ + - ]: 1197 : if (mp->populated_size >= mp->size)
332 : : return -ENOSPC;
333 : :
334 : 1197 : memhdr = rte_zmalloc("MEMPOOL_MEMHDR", sizeof(*memhdr), 0);
335 [ + - ]: 1197 : if (memhdr == NULL)
336 : : return -ENOMEM;
337 : :
338 : 1197 : memhdr->mp = mp;
339 : 1197 : memhdr->addr = vaddr;
340 : 1197 : memhdr->iova = iova;
341 : 1197 : memhdr->len = len;
342 : 1197 : memhdr->free_cb = free_cb;
343 : 1197 : memhdr->opaque = opaque;
344 : :
345 [ + + ]: 1197 : if (mp->flags & RTE_MEMPOOL_F_NO_CACHE_ALIGN)
346 : 3 : off = RTE_PTR_ALIGN_CEIL(vaddr, 8) - vaddr;
347 : : else
348 : 1194 : off = RTE_PTR_ALIGN_CEIL(vaddr, RTE_MEMPOOL_ALIGN) - vaddr;
349 : :
350 [ - + ]: 1197 : if (off > len) {
351 : : ret = 0;
352 : 0 : goto fail;
353 : : }
354 : :
355 [ + + ]: 1197 : i = rte_mempool_ops_populate(mp, mp->size - mp->populated_size,
356 : 1197 : (char *)vaddr + off,
357 : : (iova == RTE_BAD_IOVA) ? RTE_BAD_IOVA : (iova + off),
358 : : len - off, mempool_add_elem, NULL);
359 : :
360 : : /* not enough room to store one object */
361 [ - + ]: 1197 : if (i == 0) {
362 : : ret = 0;
363 : 0 : goto fail;
364 : : }
365 : :
366 : 1197 : STAILQ_INSERT_TAIL(&mp->mem_list, memhdr, next);
367 : 1197 : mp->nb_mem_chunks++;
368 : :
369 : : /* Check if at least some objects in the pool are now usable for IO. */
370 [ + + + + ]: 1197 : if (!(mp->flags & RTE_MEMPOOL_F_NO_IOVA_CONTIG) && iova != RTE_BAD_IOVA)
371 : 1194 : mp->flags &= ~RTE_MEMPOOL_F_NON_IO;
372 : :
373 : : /* Report the mempool as ready only when fully populated. */
374 [ + + ]: 1197 : if (mp->populated_size >= mp->size)
375 : 108 : mempool_event_callback_invoke(RTE_MEMPOOL_EVENT_READY, mp);
376 : :
377 : 1197 : rte_mempool_trace_populate_iova(mp, vaddr, iova, len, free_cb, opaque);
378 : 1197 : return i;
379 : :
380 : 0 : fail:
381 : 0 : rte_free(memhdr);
382 : 0 : return ret;
383 : : }
384 : :
385 : : static rte_iova_t
386 : 2193318 : get_iova(void *addr)
387 : : {
388 : : struct rte_memseg *ms;
389 : :
390 : : /* try registered memory first */
391 : 2193318 : ms = rte_mem_virt2memseg(addr, NULL);
392 [ + + - + ]: 2193318 : if (ms == NULL || ms->iova == RTE_BAD_IOVA)
393 : : /* fall back to actual physical address */
394 : 2124 : return rte_mem_virt2iova(addr);
395 : 2191194 : return ms->iova + RTE_PTR_DIFF(addr, ms->addr);
396 : : }
397 : :
398 : : /* Populate the mempool with a virtual area. Return the number of
399 : : * objects added, or a negative value on error.
400 : : */
401 : : int
402 : 108 : rte_mempool_populate_virt(struct rte_mempool *mp, char *addr,
403 : : size_t len, size_t pg_sz, rte_mempool_memchunk_free_cb_t *free_cb,
404 : : void *opaque)
405 : : {
406 : : rte_iova_t iova;
407 : : size_t off, phys_len;
408 : : int ret, cnt = 0;
409 : :
410 [ - + ]: 108 : if (mp->flags & RTE_MEMPOOL_F_NO_IOVA_CONTIG)
411 : 0 : return rte_mempool_populate_iova(mp, addr, RTE_BAD_IOVA,
412 : : len, free_cb, opaque);
413 : :
414 [ + + ]: 1301 : for (off = 0; off < len &&
415 [ + + ]: 1194 : mp->populated_size < mp->size; off += phys_len) {
416 : :
417 : 1193 : iova = get_iova(addr + off);
418 : :
419 : : /* populate with the largest group of contiguous pages */
420 : 1193 : for (phys_len = RTE_MIN(
421 : : (size_t)(RTE_PTR_ALIGN_CEIL(addr + off + 1, pg_sz) -
422 : : (addr + off)),
423 : : len - off);
424 [ + + ]: 2192232 : off + phys_len < len;
425 : 2191039 : phys_len = RTE_MIN(phys_len + pg_sz, len - off)) {
426 : : rte_iova_t iova_tmp;
427 : :
428 : 2192125 : iova_tmp = get_iova(addr + off + phys_len);
429 : :
430 [ + - ]: 2192125 : if (iova_tmp == RTE_BAD_IOVA ||
431 [ + + ]: 2192125 : iova_tmp != iova + phys_len)
432 : : break;
433 : : }
434 : :
435 : 1193 : ret = rte_mempool_populate_iova(mp, addr + off, iova,
436 : : phys_len, free_cb, opaque);
437 [ - + ]: 1193 : if (ret == 0)
438 : 0 : continue;
439 [ - + ]: 1193 : if (ret < 0)
440 : 0 : goto fail;
441 : : /* no need to call the free callback for next chunks */
442 : : free_cb = NULL;
443 : 1193 : cnt += ret;
444 : : }
445 : :
446 : 108 : rte_mempool_trace_populate_virt(mp, addr, len, pg_sz, free_cb, opaque);
447 : 108 : return cnt;
448 : :
449 : : fail:
450 : 0 : rte_mempool_free_memchunks(mp);
451 : 0 : return ret;
452 : : }
453 : :
454 : : /* Get the minimal page size used in a mempool before populating it. */
455 : : int
456 : 1302 : rte_mempool_get_page_size(struct rte_mempool *mp, size_t *pg_sz)
457 : : {
458 : : bool need_iova_contig_obj;
459 : : bool alloc_in_ext_mem;
460 : : int ret;
461 : :
462 : : /* check if we can retrieve a valid socket ID */
463 : 1302 : ret = rte_malloc_heap_socket_is_external(mp->socket_id);
464 [ + - ]: 1302 : if (ret < 0)
465 : : return -EINVAL;
466 : : alloc_in_ext_mem = (ret == 1);
467 : 1302 : need_iova_contig_obj = !(mp->flags & RTE_MEMPOOL_F_NO_IOVA_CONTIG);
468 : :
469 [ + + ]: 1302 : if (!need_iova_contig_obj)
470 : 1 : *pg_sz = 0;
471 [ + + - + ]: 1301 : else if (rte_eal_has_hugepages() || alloc_in_ext_mem)
472 : 1219 : *pg_sz = get_min_page_size(mp->socket_id);
473 : : else
474 : 82 : *pg_sz = rte_mem_page_size();
475 : :
476 [ - + ]: 1302 : rte_mempool_trace_get_page_size(mp, *pg_sz);
477 : 1302 : return 0;
478 : : }
479 : :
480 : : /* Default function to populate the mempool: allocate memory in memzones,
481 : : * and populate them. Return the number of objects added, or a negative
482 : : * value on error.
483 : : */
484 : : int
485 : 105 : rte_mempool_populate_default(struct rte_mempool *mp)
486 : : {
487 : : unsigned int mz_flags = RTE_MEMZONE_1GB|RTE_MEMZONE_SIZE_HINT_ONLY;
488 : : char mz_name[RTE_MEMZONE_NAMESIZE];
489 : : const struct rte_memzone *mz;
490 : : ssize_t mem_size;
491 : : size_t align, pg_sz, pg_shift = 0;
492 : : rte_iova_t iova;
493 : : unsigned mz_id, n;
494 : : int ret;
495 : : bool need_iova_contig_obj;
496 : : size_t max_alloc_size = SIZE_MAX;
497 : :
498 : 105 : ret = mempool_ops_alloc_once(mp);
499 [ + - ]: 105 : if (ret != 0)
500 : : return ret;
501 : :
502 : : /* mempool must not be populated */
503 [ + - ]: 105 : if (mp->nb_mem_chunks != 0)
504 : : return -EEXIST;
505 : :
506 : : /*
507 : : * the following section calculates page shift and page size values.
508 : : *
509 : : * these values impact the result of calc_mem_size operation, which
510 : : * returns the amount of memory that should be allocated to store the
511 : : * desired number of objects. when not zero, it allocates more memory
512 : : * for the padding between objects, to ensure that an object does not
513 : : * cross a page boundary. in other words, page size/shift are to be set
514 : : * to zero if mempool elements won't care about page boundaries.
515 : : * there are several considerations for page size and page shift here.
516 : : *
517 : : * if we don't need our mempools to have physically contiguous objects,
518 : : * then just set page shift and page size to 0, because the user has
519 : : * indicated that there's no need to care about anything.
520 : : *
521 : : * if we do need contiguous objects (if a mempool driver has its
522 : : * own calc_size() method returning min_chunk_size = mem_size),
523 : : * there is also an option to reserve the entire mempool memory
524 : : * as one contiguous block of memory.
525 : : *
526 : : * if we require contiguous objects, but not necessarily the entire
527 : : * mempool reserved space to be contiguous, pg_sz will be != 0,
528 : : * and the default ops->populate() will take care of not placing
529 : : * objects across pages.
530 : : *
531 : : * if our IO addresses are physical, we may get memory from bigger
532 : : * pages, or we might get memory from smaller pages, and how much of it
533 : : * we require depends on whether we want bigger or smaller pages.
534 : : * However, requesting each and every memory size is too much work, so
535 : : * what we'll do instead is walk through the page sizes available, pick
536 : : * the smallest one and set up page shift to match that one. We will be
537 : : * wasting some space this way, but it's much nicer than looping around
538 : : * trying to reserve each and every page size.
539 : : *
540 : : * If we fail to get enough contiguous memory, then we'll go and
541 : : * reserve space in smaller chunks.
542 : : */
543 : :
544 : 105 : need_iova_contig_obj = !(mp->flags & RTE_MEMPOOL_F_NO_IOVA_CONTIG);
545 : 105 : ret = rte_mempool_get_page_size(mp, &pg_sz);
546 [ + - ]: 105 : if (ret < 0)
547 : : return ret;
548 : :
549 [ + - ]: 105 : if (pg_sz != 0)
550 : 105 : pg_shift = rte_bsf32(pg_sz);
551 : :
552 [ + + ]: 210 : for (mz_id = 0, n = mp->size; n > 0; mz_id++, n -= ret) {
553 : : size_t min_chunk_size;
554 : :
555 : 105 : mem_size = rte_mempool_ops_calc_mem_size(
556 : : mp, n, pg_shift, &min_chunk_size, &align);
557 : :
558 [ - + ]: 105 : if (mem_size < 0) {
559 : 0 : ret = mem_size;
560 : 0 : goto fail;
561 : : }
562 : :
563 : : ret = snprintf(mz_name, sizeof(mz_name),
564 [ - + ]: 105 : RTE_MEMPOOL_MZ_FORMAT "_%d", mp->name, mz_id);
565 [ - + ]: 105 : if (ret < 0 || ret >= (int)sizeof(mz_name)) {
566 : : ret = -ENAMETOOLONG;
567 : 0 : goto fail;
568 : : }
569 : :
570 : : /* if we're trying to reserve contiguous memory, add appropriate
571 : : * memzone flag.
572 : : */
573 [ - + ]: 105 : if (min_chunk_size == (size_t)mem_size)
574 : : mz_flags |= RTE_MEMZONE_IOVA_CONTIG;
575 : :
576 : : /* Allocate a memzone, retrying with a smaller area on ENOMEM */
577 : : do {
578 : 105 : mz = rte_memzone_reserve_aligned(mz_name,
579 : 105 : RTE_MIN((size_t)mem_size, max_alloc_size),
580 : : mp->socket_id, mz_flags, align);
581 : :
582 [ - + - - ]: 105 : if (mz != NULL || rte_errno != ENOMEM)
583 : : break;
584 : :
585 : 0 : max_alloc_size = RTE_MIN(max_alloc_size,
586 : : (size_t)mem_size) / 2;
587 [ # # ]: 0 : } while (mz == NULL && max_alloc_size >= min_chunk_size);
588 : :
589 [ - + ]: 105 : if (mz == NULL) {
590 : 0 : ret = -rte_errno;
591 : 0 : goto fail;
592 : : }
593 : :
594 [ + - ]: 105 : if (need_iova_contig_obj)
595 : 105 : iova = mz->iova;
596 : : else
597 : : iova = RTE_BAD_IOVA;
598 : :
599 [ + - - + ]: 105 : if (pg_sz == 0 || (mz_flags & RTE_MEMZONE_IOVA_CONTIG))
600 : 0 : ret = rte_mempool_populate_iova(mp, mz->addr,
601 : 0 : iova, mz->len,
602 : : rte_mempool_memchunk_mz_free,
603 : : (void *)(uintptr_t)mz);
604 : : else
605 : 105 : ret = rte_mempool_populate_virt(mp, mz->addr,
606 : 105 : mz->len, pg_sz,
607 : : rte_mempool_memchunk_mz_free,
608 : : (void *)(uintptr_t)mz);
609 [ + - ]: 105 : if (ret == 0) /* should not happen */
610 : : ret = -ENOBUFS;
611 [ - + ]: 105 : if (ret < 0) {
612 : 0 : rte_memzone_free(mz);
613 : 0 : goto fail;
614 : : }
615 : : }
616 : :
617 : 105 : rte_mempool_trace_populate_default(mp);
618 : 105 : return mp->size;
619 : :
620 : : fail:
621 : 0 : rte_mempool_free_memchunks(mp);
622 : 0 : return ret;
623 : : }
624 : :
625 : : /* return the memory size required for mempool objects in anonymous mem */
626 : : static ssize_t
627 : 6 : get_anon_size(const struct rte_mempool *mp)
628 : : {
629 : : ssize_t size;
630 : : size_t pg_sz, pg_shift;
631 : : size_t min_chunk_size;
632 : : size_t align;
633 : :
634 : 6 : pg_sz = rte_mem_page_size();
635 : 6 : pg_shift = rte_bsf32(pg_sz);
636 : 6 : size = rte_mempool_ops_calc_mem_size(mp, mp->size, pg_shift,
637 : : &min_chunk_size, &align);
638 : :
639 : 6 : return size;
640 : : }
641 : :
642 : : /* unmap a memory zone mapped by rte_mempool_populate_anon() */
643 : : static void
644 : 3 : rte_mempool_memchunk_anon_free(struct rte_mempool_memhdr *memhdr,
645 : : void *opaque)
646 : : {
647 : : ssize_t size;
648 : :
649 : : /*
650 : : * Calculate size since memhdr->len has contiguous chunk length
651 : : * which may be smaller if anon map is split into many contiguous
652 : : * chunks. Result must be the same as we calculated on populate.
653 : : */
654 : 3 : size = get_anon_size(memhdr->mp);
655 [ + - ]: 3 : if (size < 0)
656 : : return;
657 : :
658 : 3 : rte_mem_unmap(opaque, size);
659 : : }
660 : :
661 : : /* populate the mempool with an anonymous mapping */
662 : : int
663 : 4 : rte_mempool_populate_anon(struct rte_mempool *mp)
664 : : {
665 : : ssize_t size;
666 : : int ret;
667 : : char *addr;
668 : :
669 : : /* mempool is already populated, error */
670 [ + + - + ]: 4 : if ((!STAILQ_EMPTY(&mp->mem_list)) || mp->nb_mem_chunks != 0) {
671 : 1 : rte_errno = EINVAL;
672 : 1 : return 0;
673 : : }
674 : :
675 : 3 : ret = mempool_ops_alloc_once(mp);
676 [ - + ]: 3 : if (ret < 0) {
677 : 0 : rte_errno = -ret;
678 : 0 : return 0;
679 : : }
680 : :
681 : 3 : size = get_anon_size(mp);
682 [ - + ]: 3 : if (size < 0) {
683 : 0 : rte_errno = -size;
684 : 0 : return 0;
685 : : }
686 : :
687 : : /* get chunk of virtually continuous memory */
688 : 3 : addr = rte_mem_map(NULL, size, RTE_PROT_READ | RTE_PROT_WRITE,
689 : : RTE_MAP_SHARED | RTE_MAP_ANONYMOUS, -1, 0);
690 [ + - ]: 3 : if (addr == NULL)
691 : : return 0;
692 : : /* can't use MMAP_LOCKED, it does not exist on BSD */
693 [ - + ]: 3 : if (rte_mem_lock(addr, size) < 0) {
694 : 0 : rte_mem_unmap(addr, size);
695 : 0 : return 0;
696 : : }
697 : :
698 : 3 : ret = rte_mempool_populate_virt(mp, addr, size, rte_mem_page_size(),
699 : : rte_mempool_memchunk_anon_free, addr);
700 [ + - ]: 3 : if (ret == 0) /* should not happen */
701 : : ret = -ENOBUFS;
702 [ - + ]: 3 : if (ret < 0) {
703 : 0 : rte_errno = -ret;
704 : 0 : goto fail;
705 : : }
706 : :
707 : 3 : rte_mempool_trace_populate_anon(mp);
708 : 3 : return mp->populated_size;
709 : :
710 : : fail:
711 : 0 : rte_mempool_free_memchunks(mp);
712 : 0 : return 0;
713 : : }
714 : :
715 : : /* free a mempool */
716 : : void
717 : 122 : rte_mempool_free(struct rte_mempool *mp)
718 : : {
719 : : struct rte_mempool_list *mempool_list = NULL;
720 : : struct rte_tailq_entry *te;
721 : :
722 [ + + ]: 122 : if (mp == NULL)
723 : : return;
724 : :
725 : 105 : mempool_list = RTE_TAILQ_CAST(rte_mempool_tailq.head, rte_mempool_list);
726 : 105 : rte_mcfg_tailq_write_lock();
727 : : /* find out tailq entry */
728 [ + - ]: 316 : TAILQ_FOREACH(te, mempool_list, next) {
729 [ + + ]: 316 : if (te->data == (void *)mp)
730 : : break;
731 : : }
732 : :
733 [ + - ]: 105 : if (te != NULL) {
734 [ + + ]: 105 : TAILQ_REMOVE(mempool_list, te, next);
735 : 105 : rte_free(te);
736 : : }
737 : 105 : rte_mcfg_tailq_write_unlock();
738 : :
739 : 105 : mempool_event_callback_invoke(RTE_MEMPOOL_EVENT_DESTROY, mp);
740 : 105 : rte_mempool_trace_free(mp);
741 : 105 : rte_mempool_free_memchunks(mp);
742 : 105 : rte_mempool_ops_free(mp);
743 : 105 : rte_memzone_free(mp->mz);
744 : : }
745 : :
746 : : static void
747 : : mempool_cache_init(struct rte_mempool_cache *cache, uint32_t size)
748 : : {
749 : : /* Check that cache have enough space for flush threshold */
750 : : RTE_BUILD_BUG_ON(CALC_CACHE_FLUSHTHRESH(RTE_MEMPOOL_CACHE_MAX_SIZE) >
751 : : RTE_SIZEOF_FIELD(struct rte_mempool_cache, objs) /
752 : : RTE_SIZEOF_FIELD(struct rte_mempool_cache, objs[0]));
753 : :
754 : 2947 : cache->size = size;
755 : 2947 : cache->flushthresh = CALC_CACHE_FLUSHTHRESH(size);
756 [ - + ]: 3 : cache->len = 0;
757 : : }
758 : :
759 : : /*
760 : : * Create and initialize a cache for objects that are retrieved from and
761 : : * returned to an underlying mempool. This structure is identical to the
762 : : * local_cache[lcore_id] pointed to by the mempool structure.
763 : : */
764 : : struct rte_mempool_cache *
765 : 3 : rte_mempool_cache_create(uint32_t size, int socket_id)
766 : : {
767 : : struct rte_mempool_cache *cache;
768 : :
769 [ - + ]: 3 : if (size == 0 || size > RTE_MEMPOOL_CACHE_MAX_SIZE) {
770 : 0 : rte_errno = EINVAL;
771 : 0 : return NULL;
772 : : }
773 : :
774 : 3 : cache = rte_zmalloc_socket("MEMPOOL_CACHE", sizeof(*cache),
775 : : RTE_CACHE_LINE_SIZE, socket_id);
776 [ - + ]: 3 : if (cache == NULL) {
777 : 0 : RTE_MEMPOOL_LOG(ERR, "Cannot allocate mempool cache.");
778 : 0 : rte_errno = ENOMEM;
779 : 0 : return NULL;
780 : : }
781 : :
782 : : mempool_cache_init(cache, size);
783 : :
784 : 3 : rte_mempool_trace_cache_create(size, socket_id, cache);
785 : 3 : return cache;
786 : : }
787 : :
788 : : /*
789 : : * Free a cache. It's the responsibility of the user to make sure that any
790 : : * remaining objects in the cache are flushed to the corresponding
791 : : * mempool.
792 : : */
793 : : void
794 [ - + ]: 3 : rte_mempool_cache_free(struct rte_mempool_cache *cache)
795 : : {
796 : 3 : rte_mempool_trace_cache_free(cache);
797 : 3 : rte_free(cache);
798 : 3 : }
799 : :
800 : : /* create an empty mempool */
801 : : struct rte_mempool *
802 : 124 : rte_mempool_create_empty(const char *name, unsigned n, unsigned elt_size,
803 : : unsigned cache_size, unsigned private_data_size,
804 : : int socket_id, unsigned flags)
805 : : {
806 : : char mz_name[RTE_MEMZONE_NAMESIZE];
807 : : struct rte_mempool_list *mempool_list;
808 : : struct rte_mempool *mp = NULL;
809 : : struct rte_tailq_entry *te = NULL;
810 : : const struct rte_memzone *mz = NULL;
811 : : size_t mempool_size;
812 : : unsigned int mz_flags = RTE_MEMZONE_1GB|RTE_MEMZONE_SIZE_HINT_ONLY;
813 : : struct rte_mempool_objsz objsz;
814 : : unsigned lcore_id;
815 : : int ret;
816 : :
817 : : /* compilation-time checks */
818 : : RTE_BUILD_BUG_ON((sizeof(struct rte_mempool) &
819 : : RTE_CACHE_LINE_MASK) != 0);
820 : : RTE_BUILD_BUG_ON((sizeof(struct rte_mempool_cache) &
821 : : RTE_CACHE_LINE_MASK) != 0);
822 : : #ifdef RTE_LIBRTE_MEMPOOL_STATS
823 : : RTE_BUILD_BUG_ON((sizeof(struct rte_mempool_debug_stats) &
824 : : RTE_CACHE_LINE_MASK) != 0);
825 : : RTE_BUILD_BUG_ON((offsetof(struct rte_mempool, stats) &
826 : : RTE_CACHE_LINE_MASK) != 0);
827 : : #endif
828 : :
829 : 124 : mempool_list = RTE_TAILQ_CAST(rte_mempool_tailq.head, rte_mempool_list);
830 : :
831 : : /* asked for zero items */
832 [ - + ]: 124 : if (n == 0) {
833 : 0 : rte_errno = EINVAL;
834 : 0 : return NULL;
835 : : }
836 : :
837 : : /* asked cache too big */
838 [ + + ]: 124 : if (cache_size > RTE_MEMPOOL_CACHE_MAX_SIZE ||
839 [ - + ]: 123 : CALC_CACHE_FLUSHTHRESH(cache_size) > n) {
840 : 1 : rte_errno = EINVAL;
841 : 1 : return NULL;
842 : : }
843 : :
844 : : /* enforce only user flags are passed by the application */
845 [ + + ]: 123 : if ((flags & ~RTE_MEMPOOL_VALID_USER_FLAGS) != 0) {
846 : 1 : rte_errno = EINVAL;
847 : 1 : return NULL;
848 : : }
849 : :
850 : : /*
851 : : * No objects in the pool can be used for IO until it's populated
852 : : * with at least some objects with valid IOVA.
853 : : */
854 : 122 : flags |= RTE_MEMPOOL_F_NON_IO;
855 : :
856 : : /* "no cache align" imply "no spread" */
857 [ + + ]: 122 : if (flags & RTE_MEMPOOL_F_NO_CACHE_ALIGN)
858 : 2 : flags |= RTE_MEMPOOL_F_NO_SPREAD;
859 : :
860 : : /* calculate mempool object sizes. */
861 [ - + ]: 122 : if (!rte_mempool_calc_obj_size(elt_size, flags, &objsz)) {
862 : 0 : rte_errno = EINVAL;
863 : 0 : return NULL;
864 : : }
865 : :
866 : 123 : rte_mcfg_mempool_write_lock();
867 : :
868 : : /*
869 : : * reserve a memory zone for this mempool: private data is
870 : : * cache-aligned
871 : : */
872 : 123 : private_data_size = (private_data_size +
873 : : RTE_MEMPOOL_ALIGN_MASK) & (~RTE_MEMPOOL_ALIGN_MASK);
874 : :
875 : :
876 : : /* try to allocate tailq entry */
877 : 123 : te = rte_zmalloc("MEMPOOL_TAILQ_ENTRY", sizeof(*te), 0);
878 [ - + ]: 123 : if (te == NULL) {
879 : 0 : RTE_MEMPOOL_LOG(ERR, "Cannot allocate tailq entry!");
880 : 0 : goto exit_unlock;
881 : : }
882 : :
883 [ + + ]: 123 : mempool_size = RTE_MEMPOOL_HEADER_SIZE(mp, cache_size);
884 : 123 : mempool_size += private_data_size;
885 [ - + ]: 123 : mempool_size = RTE_ALIGN_CEIL(mempool_size, RTE_MEMPOOL_ALIGN);
886 : :
887 : : ret = snprintf(mz_name, sizeof(mz_name), RTE_MEMPOOL_MZ_FORMAT, name);
888 [ - + ]: 123 : if (ret < 0 || ret >= (int)sizeof(mz_name)) {
889 : 0 : rte_errno = ENAMETOOLONG;
890 : 0 : goto exit_unlock;
891 : : }
892 : :
893 : 123 : mz = rte_memzone_reserve(mz_name, mempool_size, socket_id, mz_flags);
894 [ + + ]: 123 : if (mz == NULL)
895 : 13 : goto exit_unlock;
896 : :
897 : : /* init the mempool structure */
898 [ - + ]: 110 : mp = mz->addr;
899 : : memset(mp, 0, RTE_MEMPOOL_HEADER_SIZE(mp, cache_size));
900 [ - + ]: 110 : ret = strlcpy(mp->name, name, sizeof(mp->name));
901 [ - + ]: 110 : if (ret < 0 || ret >= (int)sizeof(mp->name)) {
902 : 0 : rte_errno = ENAMETOOLONG;
903 : 0 : goto exit_unlock;
904 : : }
905 : 110 : mp->mz = mz;
906 : 110 : mp->size = n;
907 : 110 : mp->flags = flags;
908 : 110 : mp->socket_id = socket_id;
909 : 110 : mp->elt_size = objsz.elt_size;
910 : 110 : mp->header_size = objsz.header_size;
911 : 110 : mp->trailer_size = objsz.trailer_size;
912 : : /* Size of default caches, zero means disabled. */
913 : 110 : mp->cache_size = cache_size;
914 : 110 : mp->private_data_size = private_data_size;
915 : 110 : STAILQ_INIT(&mp->elt_list);
916 : 110 : STAILQ_INIT(&mp->mem_list);
917 : :
918 : : /*
919 : : * Since we have 4 combinations of the SP/SC/MP/MC examine the flags to
920 : : * set the correct index into the table of ops structs.
921 : : */
922 [ + + ]: 110 : if ((flags & RTE_MEMPOOL_F_SP_PUT) && (flags & RTE_MEMPOOL_F_SC_GET))
923 : 1 : ret = rte_mempool_set_ops_byname(mp, "ring_sp_sc", NULL);
924 [ + + ]: 109 : else if (flags & RTE_MEMPOOL_F_SP_PUT)
925 : 1 : ret = rte_mempool_set_ops_byname(mp, "ring_sp_mc", NULL);
926 [ - + ]: 108 : else if (flags & RTE_MEMPOOL_F_SC_GET)
927 : 0 : ret = rte_mempool_set_ops_byname(mp, "ring_mp_sc", NULL);
928 : : else
929 : 108 : ret = rte_mempool_set_ops_byname(mp, "ring_mp_mc", NULL);
930 : :
931 [ - + ]: 110 : if (ret) {
932 : 0 : rte_errno = -ret;
933 : 0 : goto exit_unlock;
934 : : }
935 : :
936 : : /*
937 : : * local_cache pointer is set even if cache_size is zero.
938 : : * The local_cache points to just past the elt_pa[] array.
939 : : */
940 : 110 : mp->local_cache = (struct rte_mempool_cache *)
941 : 110 : RTE_PTR_ADD(mp, RTE_MEMPOOL_HEADER_SIZE(mp, 0));
942 : :
943 : : /* Init all default caches. */
944 [ + + ]: 110 : if (cache_size != 0) {
945 [ + + ]: 2967 : for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++)
946 : 2944 : mempool_cache_init(&mp->local_cache[lcore_id],
947 : : cache_size);
948 : : }
949 : :
950 : 110 : te->data = mp;
951 : :
952 : 110 : rte_mcfg_tailq_write_lock();
953 : 110 : TAILQ_INSERT_TAIL(mempool_list, te, next);
954 : 110 : rte_mcfg_tailq_write_unlock();
955 : 110 : rte_mcfg_mempool_write_unlock();
956 : :
957 : 110 : rte_mempool_trace_create_empty(name, n, elt_size, cache_size,
958 : : private_data_size, flags, mp);
959 : 110 : return mp;
960 : :
961 : 13 : exit_unlock:
962 : 13 : rte_mcfg_mempool_write_unlock();
963 : 13 : rte_free(te);
964 : 13 : rte_mempool_free(mp);
965 : 13 : return NULL;
966 : : }
967 : :
968 : : /* create the mempool */
969 : : struct rte_mempool *
970 : 91 : rte_mempool_create(const char *name, unsigned n, unsigned elt_size,
971 : : unsigned cache_size, unsigned private_data_size,
972 : : rte_mempool_ctor_t *mp_init, void *mp_init_arg,
973 : : rte_mempool_obj_cb_t *obj_init, void *obj_init_arg,
974 : : int socket_id, unsigned flags)
975 : : {
976 : : struct rte_mempool *mp;
977 : :
978 : 91 : mp = rte_mempool_create_empty(name, n, elt_size, cache_size,
979 : : private_data_size, socket_id, flags);
980 [ + + ]: 91 : if (mp == NULL)
981 : : return NULL;
982 : :
983 : : /* call the mempool priv initializer */
984 [ + + ]: 76 : if (mp_init)
985 : 1 : mp_init(mp, mp_init_arg);
986 : :
987 [ - + ]: 76 : if (rte_mempool_populate_default(mp) < 0)
988 : 0 : goto fail;
989 : :
990 : : /* call the object initializers */
991 [ + + ]: 76 : if (obj_init)
992 : 40 : rte_mempool_obj_iter(mp, obj_init, obj_init_arg);
993 : :
994 : 76 : rte_mempool_trace_create(name, n, elt_size, cache_size,
995 : : private_data_size, mp_init, mp_init_arg, obj_init,
996 : : obj_init_arg, flags, mp);
997 : 76 : return mp;
998 : :
999 : : fail:
1000 : 0 : rte_mempool_free(mp);
1001 : 0 : return NULL;
1002 : : }
1003 : :
1004 : : /* Return the number of entries in the mempool */
1005 : : unsigned int
1006 : 610 : rte_mempool_avail_count(const struct rte_mempool *mp)
1007 : : {
1008 : : unsigned count;
1009 : : unsigned lcore_id;
1010 : :
1011 : 610 : count = rte_mempool_ops_get_count(mp);
1012 : :
1013 [ + + ]: 610 : if (mp->cache_size == 0)
1014 : : return count;
1015 : :
1016 [ + + ]: 56115 : for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++)
1017 : 55680 : count += mp->local_cache[lcore_id].len;
1018 : :
1019 : : /*
1020 : : * due to race condition (access to len is not locked), the
1021 : : * total can be greater than size... so fix the result
1022 : : */
1023 : 435 : if (count > mp->size)
1024 : : return mp->size;
1025 : : return count;
1026 : : }
1027 : :
1028 : : /* return the number of entries allocated from the mempool */
1029 : : unsigned int
1030 : 23 : rte_mempool_in_use_count(const struct rte_mempool *mp)
1031 : : {
1032 : 23 : return mp->size - rte_mempool_avail_count(mp);
1033 : : }
1034 : :
1035 : : /* dump the cache status */
1036 : : static unsigned
1037 : 40 : rte_mempool_dump_cache(FILE *f, const struct rte_mempool *mp)
1038 : : {
1039 : : unsigned lcore_id;
1040 : : unsigned count = 0;
1041 : : unsigned cache_count;
1042 : :
1043 : : fprintf(f, " internal cache infos:\n");
1044 : 40 : fprintf(f, " cache_size=%"PRIu32"\n", mp->cache_size);
1045 : :
1046 [ + + ]: 40 : if (mp->cache_size == 0)
1047 : : return count;
1048 : :
1049 [ + + ]: 3225 : for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1050 : 3200 : cache_count = mp->local_cache[lcore_id].len;
1051 : : fprintf(f, " cache_count[%u]=%"PRIu32"\n",
1052 : : lcore_id, cache_count);
1053 : 3200 : count += cache_count;
1054 : : }
1055 : : fprintf(f, " total_cache_count=%u\n", count);
1056 : 25 : return count;
1057 : : }
1058 : :
1059 : : /* check and update cookies or panic (internal) */
1060 : 0 : void rte_mempool_check_cookies(const struct rte_mempool *mp,
1061 : : void * const *obj_table_const, unsigned n, int free)
1062 : : {
1063 : : #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
1064 : : struct rte_mempool_objhdr *hdr;
1065 : : struct rte_mempool_objtlr *tlr;
1066 : : uint64_t cookie;
1067 : : void *tmp;
1068 : : void *obj;
1069 : : void **obj_table;
1070 : :
1071 : : /* Force to drop the "const" attribute. This is done only when
1072 : : * DEBUG is enabled */
1073 : : tmp = (void *)(uintptr_t)obj_table_const;
1074 : : obj_table = tmp;
1075 : :
1076 : : while (n--) {
1077 : : obj = obj_table[n];
1078 : :
1079 : : if (rte_mempool_from_obj(obj) != mp)
1080 : : rte_panic("MEMPOOL: object is owned by another "
1081 : : "mempool\n");
1082 : :
1083 : : hdr = rte_mempool_get_header(obj);
1084 : : cookie = hdr->cookie;
1085 : :
1086 : : if (free == 0) {
1087 : : if (cookie != RTE_MEMPOOL_HEADER_COOKIE1) {
1088 : : RTE_MEMPOOL_LOG(CRIT,
1089 : : "obj=%p, mempool=%p, cookie=%" PRIx64,
1090 : : obj, (const void *) mp, cookie);
1091 : : rte_panic("MEMPOOL: bad header cookie (put)\n");
1092 : : }
1093 : : hdr->cookie = RTE_MEMPOOL_HEADER_COOKIE2;
1094 : : } else if (free == 1) {
1095 : : if (cookie != RTE_MEMPOOL_HEADER_COOKIE2) {
1096 : : RTE_MEMPOOL_LOG(CRIT,
1097 : : "obj=%p, mempool=%p, cookie=%" PRIx64,
1098 : : obj, (const void *) mp, cookie);
1099 : : rte_panic("MEMPOOL: bad header cookie (get)\n");
1100 : : }
1101 : : hdr->cookie = RTE_MEMPOOL_HEADER_COOKIE1;
1102 : : } else if (free == 2) {
1103 : : if (cookie != RTE_MEMPOOL_HEADER_COOKIE1 &&
1104 : : cookie != RTE_MEMPOOL_HEADER_COOKIE2) {
1105 : : RTE_MEMPOOL_LOG(CRIT,
1106 : : "obj=%p, mempool=%p, cookie=%" PRIx64,
1107 : : obj, (const void *) mp, cookie);
1108 : : rte_panic("MEMPOOL: bad header cookie (audit)\n");
1109 : : }
1110 : : }
1111 : : tlr = rte_mempool_get_trailer(obj);
1112 : : cookie = tlr->cookie;
1113 : : if (cookie != RTE_MEMPOOL_TRAILER_COOKIE) {
1114 : : RTE_MEMPOOL_LOG(CRIT,
1115 : : "obj=%p, mempool=%p, cookie=%" PRIx64,
1116 : : obj, (const void *) mp, cookie);
1117 : : rte_panic("MEMPOOL: bad trailer cookie\n");
1118 : : }
1119 : : }
1120 : : #else
1121 : : RTE_SET_USED(mp);
1122 : : RTE_SET_USED(obj_table_const);
1123 : : RTE_SET_USED(n);
1124 : : RTE_SET_USED(free);
1125 : : #endif
1126 : 0 : }
1127 : :
1128 : : void
1129 : 0 : rte_mempool_contig_blocks_check_cookies(const struct rte_mempool *mp,
1130 : : void * const *first_obj_table_const, unsigned int n, int free)
1131 : : {
1132 : : #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
1133 : : struct rte_mempool_info info;
1134 : : const size_t total_elt_sz =
1135 : : mp->header_size + mp->elt_size + mp->trailer_size;
1136 : : unsigned int i, j;
1137 : :
1138 : : rte_mempool_ops_get_info(mp, &info);
1139 : :
1140 : : for (i = 0; i < n; ++i) {
1141 : : void *first_obj = first_obj_table_const[i];
1142 : :
1143 : : for (j = 0; j < info.contig_block_size; ++j) {
1144 : : void *obj;
1145 : :
1146 : : obj = (void *)((uintptr_t)first_obj + j * total_elt_sz);
1147 : : rte_mempool_check_cookies(mp, &obj, 1, free);
1148 : : }
1149 : : }
1150 : : #else
1151 : : RTE_SET_USED(mp);
1152 : : RTE_SET_USED(first_obj_table_const);
1153 : : RTE_SET_USED(n);
1154 : : RTE_SET_USED(free);
1155 : : #endif
1156 : 0 : }
1157 : :
1158 : : #ifdef RTE_LIBRTE_MEMPOOL_DEBUG
1159 : : static void
1160 : : mempool_obj_audit(struct rte_mempool *mp, __rte_unused void *opaque,
1161 : : void *obj, __rte_unused unsigned idx)
1162 : : {
1163 : : RTE_MEMPOOL_CHECK_COOKIES(mp, &obj, 1, 2);
1164 : : }
1165 : :
1166 : : static void
1167 : : mempool_audit_cookies(struct rte_mempool *mp)
1168 : : {
1169 : : unsigned num;
1170 : :
1171 : : num = rte_mempool_obj_iter(mp, mempool_obj_audit, NULL);
1172 : : if (num != mp->size) {
1173 : : rte_panic("rte_mempool_obj_iter(mempool=%p, size=%u) "
1174 : : "iterated only over %u elements\n",
1175 : : mp, mp->size, num);
1176 : : }
1177 : : }
1178 : : #else
1179 : : #define mempool_audit_cookies(mp) do {} while(0)
1180 : : #endif
1181 : :
1182 : : /* check cookies before and after objects */
1183 : : static void
1184 : 40 : mempool_audit_cache(const struct rte_mempool *mp)
1185 : : {
1186 : : /* check cache size consistency */
1187 : : unsigned lcore_id;
1188 : :
1189 [ + + ]: 40 : if (mp->cache_size == 0)
1190 : : return;
1191 : :
1192 [ + + ]: 3225 : for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1193 : : const struct rte_mempool_cache *cache;
1194 : 3200 : cache = &mp->local_cache[lcore_id];
1195 [ - + ]: 3200 : if (cache->len > RTE_DIM(cache->objs)) {
1196 : 0 : RTE_MEMPOOL_LOG(CRIT, "badness on cache[%u]",
1197 : : lcore_id);
1198 : 0 : rte_panic("MEMPOOL: invalid cache len\n");
1199 : : }
1200 : : }
1201 : : }
1202 : :
1203 : : /* check the consistency of mempool (size, cookies, ...) */
1204 : : void
1205 : 40 : rte_mempool_audit(struct rte_mempool *mp)
1206 : : {
1207 : 40 : mempool_audit_cache(mp);
1208 : : mempool_audit_cookies(mp);
1209 : :
1210 : : /* For case where mempool DEBUG is not set, and cache size is 0 */
1211 : : RTE_SET_USED(mp);
1212 : 40 : }
1213 : :
1214 : : /* dump the status of the mempool on the console */
1215 : : void
1216 : 40 : rte_mempool_dump(FILE *f, struct rte_mempool *mp)
1217 : : {
1218 : : #ifdef RTE_LIBRTE_MEMPOOL_STATS
1219 : : struct rte_mempool_info info;
1220 : : struct rte_mempool_debug_stats sum;
1221 : : unsigned lcore_id;
1222 : : #endif
1223 : : struct rte_mempool_memhdr *memhdr;
1224 : : struct rte_mempool_ops *ops;
1225 : : unsigned common_count;
1226 : : unsigned cache_count;
1227 : : size_t mem_len = 0;
1228 : :
1229 : : RTE_ASSERT(f != NULL);
1230 : : RTE_ASSERT(mp != NULL);
1231 : :
1232 : 40 : fprintf(f, "mempool <%s>@%p\n", mp->name, mp);
1233 : 40 : fprintf(f, " flags=%x\n", mp->flags);
1234 : 40 : fprintf(f, " socket_id=%d\n", mp->socket_id);
1235 : 40 : fprintf(f, " pool=%p\n", mp->pool_data);
1236 : 40 : fprintf(f, " iova=0x%" PRIx64 "\n", mp->mz->iova);
1237 : 40 : fprintf(f, " nb_mem_chunks=%u\n", mp->nb_mem_chunks);
1238 : 40 : fprintf(f, " size=%"PRIu32"\n", mp->size);
1239 : 40 : fprintf(f, " populated_size=%"PRIu32"\n", mp->populated_size);
1240 : 40 : fprintf(f, " header_size=%"PRIu32"\n", mp->header_size);
1241 : 40 : fprintf(f, " elt_size=%"PRIu32"\n", mp->elt_size);
1242 : 40 : fprintf(f, " trailer_size=%"PRIu32"\n", mp->trailer_size);
1243 : 40 : fprintf(f, " total_obj_size=%"PRIu32"\n",
1244 : 40 : mp->header_size + mp->elt_size + mp->trailer_size);
1245 : :
1246 : 40 : fprintf(f, " private_data_size=%"PRIu32"\n", mp->private_data_size);
1247 : :
1248 : 40 : fprintf(f, " ops_index=%d\n", mp->ops_index);
1249 [ - + ]: 40 : ops = rte_mempool_get_ops(mp->ops_index);
1250 : 40 : fprintf(f, " ops_name: <%s>\n", (ops != NULL) ? ops->name : "NA");
1251 : :
1252 [ + + ]: 2209 : STAILQ_FOREACH(memhdr, &mp->mem_list, next) {
1253 : 2169 : fprintf(f, " memory chunk at %p, addr=%p, iova=0x%" PRIx64 ", len=%zu\n",
1254 : : memhdr, memhdr->addr, memhdr->iova, memhdr->len);
1255 : 2169 : mem_len += memhdr->len;
1256 : : }
1257 [ + - ]: 40 : if (mem_len != 0) {
1258 : 40 : fprintf(f, " avg bytes/object=%#Lf\n",
1259 : 40 : (long double)mem_len / mp->size);
1260 : : }
1261 : :
1262 : 40 : cache_count = rte_mempool_dump_cache(f, mp);
1263 : 40 : common_count = rte_mempool_ops_get_count(mp);
1264 [ - + ]: 40 : if ((cache_count + common_count) > mp->size)
1265 : 0 : common_count = mp->size - cache_count;
1266 : : fprintf(f, " common_pool_count=%u\n", common_count);
1267 : :
1268 : : /* sum and dump statistics */
1269 : : #ifdef RTE_LIBRTE_MEMPOOL_STATS
1270 : : rte_mempool_ops_get_info(mp, &info);
1271 : : memset(&sum, 0, sizeof(sum));
1272 : : for (lcore_id = 0; lcore_id < RTE_MAX_LCORE + 1; lcore_id++) {
1273 : : sum.put_bulk += mp->stats[lcore_id].put_bulk;
1274 : : sum.put_objs += mp->stats[lcore_id].put_objs;
1275 : : sum.put_common_pool_bulk += mp->stats[lcore_id].put_common_pool_bulk;
1276 : : sum.put_common_pool_objs += mp->stats[lcore_id].put_common_pool_objs;
1277 : : sum.get_common_pool_bulk += mp->stats[lcore_id].get_common_pool_bulk;
1278 : : sum.get_common_pool_objs += mp->stats[lcore_id].get_common_pool_objs;
1279 : : sum.get_success_bulk += mp->stats[lcore_id].get_success_bulk;
1280 : : sum.get_success_objs += mp->stats[lcore_id].get_success_objs;
1281 : : sum.get_fail_bulk += mp->stats[lcore_id].get_fail_bulk;
1282 : : sum.get_fail_objs += mp->stats[lcore_id].get_fail_objs;
1283 : : sum.get_success_blks += mp->stats[lcore_id].get_success_blks;
1284 : : sum.get_fail_blks += mp->stats[lcore_id].get_fail_blks;
1285 : : }
1286 : : if (mp->cache_size != 0) {
1287 : : /* Add the statistics stored in the mempool caches. */
1288 : : for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++) {
1289 : : sum.put_bulk += mp->local_cache[lcore_id].stats.put_bulk;
1290 : : sum.put_objs += mp->local_cache[lcore_id].stats.put_objs;
1291 : : sum.get_success_bulk += mp->local_cache[lcore_id].stats.get_success_bulk;
1292 : : sum.get_success_objs += mp->local_cache[lcore_id].stats.get_success_objs;
1293 : : }
1294 : : }
1295 : : fprintf(f, " stats:\n");
1296 : : fprintf(f, " put_bulk=%"PRIu64"\n", sum.put_bulk);
1297 : : fprintf(f, " put_objs=%"PRIu64"\n", sum.put_objs);
1298 : : fprintf(f, " put_common_pool_bulk=%"PRIu64"\n", sum.put_common_pool_bulk);
1299 : : fprintf(f, " put_common_pool_objs=%"PRIu64"\n", sum.put_common_pool_objs);
1300 : : fprintf(f, " get_common_pool_bulk=%"PRIu64"\n", sum.get_common_pool_bulk);
1301 : : fprintf(f, " get_common_pool_objs=%"PRIu64"\n", sum.get_common_pool_objs);
1302 : : fprintf(f, " get_success_bulk=%"PRIu64"\n", sum.get_success_bulk);
1303 : : fprintf(f, " get_success_objs=%"PRIu64"\n", sum.get_success_objs);
1304 : : fprintf(f, " get_fail_bulk=%"PRIu64"\n", sum.get_fail_bulk);
1305 : : fprintf(f, " get_fail_objs=%"PRIu64"\n", sum.get_fail_objs);
1306 : : if (info.contig_block_size > 0) {
1307 : : fprintf(f, " get_success_blks=%"PRIu64"\n",
1308 : : sum.get_success_blks);
1309 : : fprintf(f, " get_fail_blks=%"PRIu64"\n", sum.get_fail_blks);
1310 : : }
1311 : : #else
1312 : : fprintf(f, " no statistics available\n");
1313 : : #endif
1314 : :
1315 : 40 : rte_mempool_audit(mp);
1316 : 40 : }
1317 : :
1318 : : /* dump the status of all mempools on the console */
1319 : : void
1320 : 2 : rte_mempool_list_dump(FILE *f)
1321 : : {
1322 : : struct rte_mempool *mp = NULL;
1323 : : struct rte_tailq_entry *te;
1324 : : struct rte_mempool_list *mempool_list;
1325 : :
1326 : 2 : mempool_list = RTE_TAILQ_CAST(rte_mempool_tailq.head, rte_mempool_list);
1327 : :
1328 : 2 : rte_mcfg_mempool_read_lock();
1329 : :
1330 [ + + ]: 16 : TAILQ_FOREACH(te, mempool_list, next) {
1331 : 14 : mp = (struct rte_mempool *) te->data;
1332 : 14 : rte_mempool_dump(f, mp);
1333 : : }
1334 : :
1335 : 2 : rte_mcfg_mempool_read_unlock();
1336 : 2 : }
1337 : :
1338 : : /* search a mempool from its name */
1339 : : struct rte_mempool *
1340 : 107 : rte_mempool_lookup(const char *name)
1341 : : {
1342 : : struct rte_mempool *mp = NULL;
1343 : : struct rte_tailq_entry *te;
1344 : : struct rte_mempool_list *mempool_list;
1345 : :
1346 : 107 : mempool_list = RTE_TAILQ_CAST(rte_mempool_tailq.head, rte_mempool_list);
1347 : :
1348 : 107 : rte_mcfg_mempool_read_lock();
1349 : :
1350 [ + + ]: 1325 : TAILQ_FOREACH(te, mempool_list, next) {
1351 : 1318 : mp = (struct rte_mempool *) te->data;
1352 [ + + ]: 1318 : if (strncmp(name, mp->name, RTE_MEMPOOL_NAMESIZE) == 0)
1353 : : break;
1354 : : }
1355 : :
1356 : 107 : rte_mcfg_mempool_read_unlock();
1357 : :
1358 [ + + ]: 107 : if (te == NULL) {
1359 : 7 : rte_errno = ENOENT;
1360 : 7 : return NULL;
1361 : : }
1362 : :
1363 : : return mp;
1364 : : }
1365 : :
1366 : 1 : void rte_mempool_walk(void (*func)(struct rte_mempool *, void *),
1367 : : void *arg)
1368 : : {
1369 : : struct rte_tailq_entry *te = NULL;
1370 : : struct rte_mempool_list *mempool_list;
1371 : : void *tmp_te;
1372 : :
1373 : 1 : mempool_list = RTE_TAILQ_CAST(rte_mempool_tailq.head, rte_mempool_list);
1374 : :
1375 : 1 : rte_mcfg_mempool_read_lock();
1376 : :
1377 [ + + ]: 8 : RTE_TAILQ_FOREACH_SAFE(te, mempool_list, next, tmp_te) {
1378 : 7 : (*func)((struct rte_mempool *) te->data, arg);
1379 : : }
1380 : :
1381 : 1 : rte_mcfg_mempool_read_unlock();
1382 : 1 : }
1383 : :
1384 : 3 : int rte_mempool_get_mem_range(const struct rte_mempool *mp,
1385 : : struct rte_mempool_mem_range_info *mem_range)
1386 : : {
1387 : : void *address_low = (void *)UINTPTR_MAX;
1388 : : void *address_high = 0;
1389 : : size_t address_diff = 0;
1390 : : size_t total_size = 0;
1391 : : struct rte_mempool_memhdr *hdr;
1392 : :
1393 [ + + ]: 3 : if (mp == NULL || mem_range == NULL)
1394 : : return -EINVAL;
1395 : :
1396 : : /* go through memory chunks and find the lowest and highest addresses */
1397 [ + + ]: 4 : STAILQ_FOREACH(hdr, &mp->mem_list, next) {
1398 : 2 : if (address_low > hdr->addr)
1399 : : address_low = hdr->addr;
1400 : 2 : if (address_high < RTE_PTR_ADD(hdr->addr, hdr->len))
1401 : : address_high = RTE_PTR_ADD(hdr->addr, hdr->len);
1402 : 2 : total_size += hdr->len;
1403 : : }
1404 : :
1405 : : /* check if mempool was not populated yet (no memory chunks) */
1406 [ + - ]: 2 : if (address_low == (void *)UINTPTR_MAX)
1407 : : return -EINVAL;
1408 : :
1409 : 2 : address_diff = (size_t)RTE_PTR_DIFF(address_high, address_low);
1410 : :
1411 : 2 : mem_range->start = address_low;
1412 : 2 : mem_range->length = address_diff;
1413 : 2 : mem_range->is_contiguous = (total_size == address_diff) ? true : false;
1414 : :
1415 : 2 : return 0;
1416 : : }
1417 : :
1418 : 3 : size_t rte_mempool_get_obj_alignment(const struct rte_mempool *mp)
1419 : : {
1420 [ + + ]: 3 : if (mp == NULL)
1421 : : return 0;
1422 : :
1423 [ + + ]: 2 : if (mp->flags & RTE_MEMPOOL_F_NO_CACHE_ALIGN)
1424 : : return sizeof(uint64_t);
1425 : : else
1426 : 1 : return RTE_MEMPOOL_ALIGN;
1427 : : }
1428 : :
1429 : : struct mempool_callback_data {
1430 : : TAILQ_ENTRY(mempool_callback_data) callbacks;
1431 : : rte_mempool_event_callback *func;
1432 : : void *user_data;
1433 : : };
1434 : :
1435 : : static void
1436 : 213 : mempool_event_callback_invoke(enum rte_mempool_event event,
1437 : : struct rte_mempool *mp)
1438 : : {
1439 : : struct mempool_callback_data *cb;
1440 : : void *tmp_te;
1441 : :
1442 : 213 : rte_mcfg_tailq_read_lock();
1443 [ + + ]: 235 : RTE_TAILQ_FOREACH_SAFE(cb, &callback_tailq, callbacks, tmp_te) {
1444 : 22 : rte_mcfg_tailq_read_unlock();
1445 : 22 : cb->func(event, mp, cb->user_data);
1446 : 22 : rte_mcfg_tailq_read_lock();
1447 : : }
1448 : 213 : rte_mcfg_tailq_read_unlock();
1449 : 213 : }
1450 : :
1451 : : int
1452 : 10 : rte_mempool_event_callback_register(rte_mempool_event_callback *func,
1453 : : void *user_data)
1454 : : {
1455 : : struct mempool_callback_data *cb;
1456 : : int ret;
1457 : :
1458 [ - + ]: 10 : if (func == NULL) {
1459 : 0 : rte_errno = EINVAL;
1460 : 0 : return -rte_errno;
1461 : : }
1462 : :
1463 : 10 : rte_mcfg_tailq_write_lock();
1464 [ + + ]: 19 : TAILQ_FOREACH(cb, &callback_tailq, callbacks) {
1465 [ + + + + ]: 10 : if (cb->func == func && cb->user_data == user_data) {
1466 : : ret = -EEXIST;
1467 : 1 : goto exit;
1468 : : }
1469 : : }
1470 : :
1471 : 9 : cb = calloc(1, sizeof(*cb));
1472 [ - + ]: 9 : if (cb == NULL) {
1473 : 0 : RTE_MEMPOOL_LOG(ERR, "Cannot allocate event callback!");
1474 : : ret = -ENOMEM;
1475 : 0 : goto exit;
1476 : : }
1477 : :
1478 : 9 : cb->func = func;
1479 : 9 : cb->user_data = user_data;
1480 : 9 : TAILQ_INSERT_TAIL(&callback_tailq, cb, callbacks);
1481 : : ret = 0;
1482 : :
1483 : 10 : exit:
1484 : 10 : rte_mcfg_tailq_write_unlock();
1485 : 10 : rte_errno = -ret;
1486 : 10 : return ret;
1487 : : }
1488 : :
1489 : : int
1490 : 17 : rte_mempool_event_callback_unregister(rte_mempool_event_callback *func,
1491 : : void *user_data)
1492 : : {
1493 : : struct mempool_callback_data *cb;
1494 : : int ret = -ENOENT;
1495 : :
1496 : 17 : rte_mcfg_tailq_write_lock();
1497 [ + + ]: 31 : TAILQ_FOREACH(cb, &callback_tailq, callbacks) {
1498 [ + + + + ]: 23 : if (cb->func == func && cb->user_data == user_data) {
1499 [ + + ]: 9 : TAILQ_REMOVE(&callback_tailq, cb, callbacks);
1500 : : ret = 0;
1501 : : break;
1502 : : }
1503 : : }
1504 : 17 : rte_mcfg_tailq_write_unlock();
1505 : :
1506 : : if (ret == 0)
1507 : 9 : free(cb);
1508 : 17 : rte_errno = -ret;
1509 : 17 : return ret;
1510 : : }
1511 : :
1512 : : static void
1513 : 0 : mempool_list_cb(struct rte_mempool *mp, void *arg)
1514 : : {
1515 : : struct rte_tel_data *d = (struct rte_tel_data *)arg;
1516 : :
1517 : 0 : rte_tel_data_add_array_string(d, mp->name);
1518 : 0 : }
1519 : :
1520 : : static int
1521 : 0 : mempool_handle_list(const char *cmd __rte_unused,
1522 : : const char *params __rte_unused, struct rte_tel_data *d)
1523 : : {
1524 : 0 : rte_tel_data_start_array(d, RTE_TEL_STRING_VAL);
1525 : 0 : rte_mempool_walk(mempool_list_cb, d);
1526 : 0 : return 0;
1527 : : }
1528 : :
1529 : : struct mempool_info_cb_arg {
1530 : : char *pool_name;
1531 : : struct rte_tel_data *d;
1532 : : };
1533 : :
1534 : : static void
1535 : 0 : mempool_info_cb(struct rte_mempool *mp, void *arg)
1536 : : {
1537 : : struct mempool_info_cb_arg *info = (struct mempool_info_cb_arg *)arg;
1538 : : const struct rte_memzone *mz;
1539 : : uint64_t cache_count, common_count;
1540 : :
1541 [ # # ]: 0 : if (strncmp(mp->name, info->pool_name, RTE_MEMZONE_NAMESIZE))
1542 : : return;
1543 : :
1544 : 0 : rte_tel_data_add_dict_string(info->d, "name", mp->name);
1545 : 0 : rte_tel_data_add_dict_uint(info->d, "pool_id", mp->pool_id);
1546 : 0 : rte_tel_data_add_dict_uint(info->d, "flags", mp->flags);
1547 : 0 : rte_tel_data_add_dict_int(info->d, "socket_id", mp->socket_id);
1548 : 0 : rte_tel_data_add_dict_uint(info->d, "size", mp->size);
1549 : 0 : rte_tel_data_add_dict_uint(info->d, "cache_size", mp->cache_size);
1550 : 0 : rte_tel_data_add_dict_uint(info->d, "elt_size", mp->elt_size);
1551 : 0 : rte_tel_data_add_dict_uint(info->d, "header_size", mp->header_size);
1552 : 0 : rte_tel_data_add_dict_uint(info->d, "trailer_size", mp->trailer_size);
1553 : 0 : rte_tel_data_add_dict_uint(info->d, "private_data_size",
1554 : 0 : mp->private_data_size);
1555 : 0 : rte_tel_data_add_dict_int(info->d, "ops_index", mp->ops_index);
1556 : 0 : rte_tel_data_add_dict_uint(info->d, "populated_size",
1557 : 0 : mp->populated_size);
1558 : :
1559 : : cache_count = 0;
1560 [ # # ]: 0 : if (mp->cache_size > 0) {
1561 : : int lcore_id;
1562 [ # # ]: 0 : for (lcore_id = 0; lcore_id < RTE_MAX_LCORE; lcore_id++)
1563 : 0 : cache_count += mp->local_cache[lcore_id].len;
1564 : : }
1565 : 0 : rte_tel_data_add_dict_uint(info->d, "total_cache_count", cache_count);
1566 : 0 : common_count = rte_mempool_ops_get_count(mp);
1567 [ # # ]: 0 : if ((cache_count + common_count) > mp->size)
1568 : 0 : common_count = mp->size - cache_count;
1569 : 0 : rte_tel_data_add_dict_uint(info->d, "common_pool_count", common_count);
1570 : :
1571 : 0 : mz = mp->mz;
1572 : 0 : rte_tel_data_add_dict_string(info->d, "mz_name", mz->name);
1573 : 0 : rte_tel_data_add_dict_uint(info->d, "mz_len", mz->len);
1574 : 0 : rte_tel_data_add_dict_uint(info->d, "mz_hugepage_sz",
1575 : 0 : mz->hugepage_sz);
1576 : 0 : rte_tel_data_add_dict_int(info->d, "mz_socket_id", mz->socket_id);
1577 : 0 : rte_tel_data_add_dict_uint(info->d, "mz_flags", mz->flags);
1578 : : }
1579 : :
1580 : : static int
1581 : 0 : mempool_handle_info(const char *cmd __rte_unused, const char *params,
1582 : : struct rte_tel_data *d)
1583 : : {
1584 : : struct mempool_info_cb_arg mp_arg;
1585 : : char name[RTE_MEMZONE_NAMESIZE];
1586 : :
1587 [ # # # # ]: 0 : if (!params || strlen(params) == 0)
1588 : : return -EINVAL;
1589 : :
1590 : : rte_strlcpy(name, params, RTE_MEMZONE_NAMESIZE);
1591 : :
1592 : 0 : rte_tel_data_start_dict(d);
1593 : 0 : mp_arg.pool_name = name;
1594 : 0 : mp_arg.d = d;
1595 : 0 : rte_mempool_walk(mempool_info_cb, &mp_arg);
1596 : :
1597 : 0 : return 0;
1598 : : }
1599 : :
1600 : 252 : RTE_INIT(mempool_init_telemetry)
1601 : : {
1602 : 252 : rte_telemetry_register_cmd("/mempool/list", mempool_handle_list,
1603 : : "Returns list of available mempool. Takes no parameters");
1604 : 252 : rte_telemetry_register_cmd("/mempool/info", mempool_handle_info,
1605 : : "Returns mempool info. Parameters: pool_name");
1606 : 252 : }
|