DPDK  22.11.5
rte_memzone.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4 
5 #ifndef _RTE_MEMZONE_H_
6 #define _RTE_MEMZONE_H_
7 
25 #include <stdio.h>
26 #include <rte_memory.h>
27 #include <rte_common.h>
28 
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32 
33 #define RTE_MEMZONE_2MB 0x00000001
34 #define RTE_MEMZONE_1GB 0x00000002
35 #define RTE_MEMZONE_16MB 0x00000100
36 #define RTE_MEMZONE_16GB 0x00000200
37 #define RTE_MEMZONE_256KB 0x00010000
38 #define RTE_MEMZONE_256MB 0x00020000
39 #define RTE_MEMZONE_512MB 0x00040000
40 #define RTE_MEMZONE_4GB 0x00080000
41 #define RTE_MEMZONE_SIZE_HINT_ONLY 0x00000004
42 #define RTE_MEMZONE_IOVA_CONTIG 0x00100000
48 struct rte_memzone {
49 
50 #define RTE_MEMZONE_NAMESIZE 32
51  char name[RTE_MEMZONE_NAMESIZE];
53  rte_iova_t iova;
54  RTE_STD_C11
55  union {
56  void *addr;
57  uint64_t addr_64;
58  };
59  size_t len;
61  uint64_t hugepage_sz;
63  int32_t socket_id;
65  uint32_t flags;
66 } __rte_packed;
67 
125 const struct rte_memzone *rte_memzone_reserve(const char *name,
126  size_t len, int socket_id,
127  unsigned flags);
128 
190 const struct rte_memzone *rte_memzone_reserve_aligned(const char *name,
191  size_t len, int socket_id,
192  unsigned flags, unsigned align);
193 
261 const struct rte_memzone *rte_memzone_reserve_bounded(const char *name,
262  size_t len, int socket_id,
263  unsigned flags, unsigned align, unsigned bound);
264 
274 int rte_memzone_free(const struct rte_memzone *mz);
275 
287 const struct rte_memzone *rte_memzone_lookup(const char *name);
288 
295 void rte_memzone_dump(FILE *f);
296 
305 void rte_memzone_walk(void (*func)(const struct rte_memzone *, void *arg),
306  void *arg);
307 
308 #ifdef __cplusplus
309 }
310 #endif
311 
312 #endif /* _RTE_MEMZONE_H_ */
#define __rte_packed
Definition: rte_common.h:83
void * addr
Definition: rte_memzone.h:56
uint32_t flags
Definition: rte_memzone.h:65
const struct rte_memzone * rte_memzone_reserve(const char *name, size_t len, int socket_id, unsigned flags)
uint64_t addr_64
Definition: rte_memzone.h:57
size_t len
Definition: rte_memzone.h:59
const struct rte_memzone * rte_memzone_lookup(const char *name)
const struct rte_memzone * rte_memzone_reserve_bounded(const char *name, size_t len, int socket_id, unsigned flags, unsigned align, unsigned bound)
void rte_memzone_walk(void(*func)(const struct rte_memzone *, void *arg), void *arg)
void rte_memzone_dump(FILE *f)
int32_t socket_id
Definition: rte_memzone.h:63
const struct rte_memzone * rte_memzone_reserve_aligned(const char *name, size_t len, int socket_id, unsigned flags, unsigned align)
char name[RTE_MEMZONE_NAMESIZE]
Definition: rte_memzone.h:51
int rte_memzone_free(const struct rte_memzone *mz)
uint64_t hugepage_sz
Definition: rte_memzone.h:61