DPDK  22.07.0
rte_malloc.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2019 Intel Corporation
3  */
4 
5 #ifndef _RTE_MALLOC_H_
6 #define _RTE_MALLOC_H_
7 
14 #include <stdio.h>
15 #include <stddef.h>
16 #include <rte_compat.h>
17 #include <rte_memory.h>
18 
19 #ifdef __cplusplus
20 extern "C" {
21 #endif
22 
30  unsigned free_count;
31  unsigned alloc_count;
33 };
34 
56 void *
57 rte_malloc(const char *type, size_t size, unsigned align)
59 
83 void *
84 rte_zmalloc(const char *type, size_t size, unsigned align)
86 
110 void *
111 rte_calloc(const char *type, size_t num, size_t size, unsigned align)
112  __rte_alloc_size(2, 3);
113 
134 void *
135 rte_realloc(void *ptr, size_t size, unsigned int align)
136  __rte_alloc_size(2);
137 
160 void *
161 rte_realloc_socket(void *ptr, size_t size, unsigned int align, int socket)
162  __rte_alloc_size(2);
163 
187 void *
188 rte_malloc_socket(const char *type, size_t size, unsigned align, int socket)
189  __rte_alloc_size(2);
190 
216 void *
217 rte_zmalloc_socket(const char *type, size_t size, unsigned align, int socket)
218  __rte_alloc_size(2);
219 
245 void *
246 rte_calloc_socket(const char *type, size_t num, size_t size, unsigned align, int socket)
247  __rte_alloc_size(2, 3);
248 
261 void
262 rte_free(void *ptr);
263 
281 int
282 rte_malloc_validate(const void *ptr, size_t *size);
283 
298 int
299 rte_malloc_get_socket_stats(int socket,
300  struct rte_malloc_socket_stats *socket_stats);
301 
341 int
342 rte_malloc_heap_memory_add(const char *heap_name, void *va_addr, size_t len,
343  rte_iova_t iova_addrs[], unsigned int n_pages, size_t page_sz);
344 
372 int
373 rte_malloc_heap_memory_remove(const char *heap_name, void *va_addr, size_t len);
374 
396 int
397 rte_malloc_heap_memory_attach(const char *heap_name, void *va_addr, size_t len);
398 
420 int
421 rte_malloc_heap_memory_detach(const char *heap_name, void *va_addr, size_t len);
422 
439 int
440 rte_malloc_heap_create(const char *heap_name);
441 
462 int
463 rte_malloc_heap_destroy(const char *heap_name);
464 
476 int
477 rte_malloc_heap_get_socket(const char *name);
478 
491 int
493 
509 void
510 rte_malloc_dump_stats(FILE *f, const char *type);
511 
521 void
522 rte_malloc_dump_heaps(FILE *f);
523 
537 __rte_deprecated
538 int
539 rte_malloc_set_limit(const char *type, size_t max);
540 
552 rte_malloc_virt2iova(const void *addr);
553 
554 #ifdef __cplusplus
555 }
556 #endif
557 
558 #endif /* _RTE_MALLOC_H_ */
int rte_malloc_heap_socket_is_external(int socket_id)
int rte_malloc_heap_destroy(const char *heap_name)
int rte_malloc_heap_memory_attach(const char *heap_name, void *va_addr, size_t len)
void * rte_calloc_socket(const char *type, size_t num, size_t size, unsigned align, int socket) __rte_alloc_size(2
uint64_t rte_iova_t
Definition: rte_common.h:463
void * rte_calloc(const char *type, size_t num, size_t size, unsigned align) __rte_alloc_size(2
void * rte_zmalloc(const char *type, size_t size, unsigned align) __rte_alloc_size(2)
void void * rte_realloc(void *ptr, size_t size, unsigned int align) __rte_alloc_size(2)
__rte_deprecated int rte_malloc_set_limit(const char *type, size_t max)
#define __rte_alloc_size(...)
Definition: rte_common.h:164
int rte_malloc_heap_memory_remove(const char *heap_name, void *va_addr, size_t len)
void * rte_realloc_socket(void *ptr, size_t size, unsigned int align, int socket) __rte_alloc_size(2)
int rte_malloc_heap_create(const char *heap_name)
int rte_malloc_heap_get_socket(const char *name)
int rte_malloc_validate(const void *ptr, size_t *size)
int rte_malloc_heap_memory_add(const char *heap_name, void *va_addr, size_t len, rte_iova_t iova_addrs[], unsigned int n_pages, size_t page_sz)
void * rte_zmalloc_socket(const char *type, size_t size, unsigned align, int socket) __rte_alloc_size(2)
void void rte_free(void *ptr)
int rte_malloc_heap_memory_detach(const char *heap_name, void *va_addr, size_t len)
void * rte_malloc(const char *type, size_t size, unsigned align) __rte_alloc_size(2)
void * rte_malloc_socket(const char *type, size_t size, unsigned align, int socket) __rte_alloc_size(2)
rte_iova_t rte_malloc_virt2iova(const void *addr)
int rte_malloc_get_socket_stats(int socket, struct rte_malloc_socket_stats *socket_stats)
void rte_malloc_dump_heaps(FILE *f)
void rte_malloc_dump_stats(FILE *f, const char *type)