DPDK
2.0.0
|
#include <rte_memzone.h>
Data Fields | |
char | name [RTE_MEMZONE_NAMESIZE] |
phys_addr_t | phys_addr |
size_t | len |
uint64_t | hugepage_sz |
int32_t | socket_id |
uint32_t | flags |
void * | addr |
uint64_t | addr_64 |
A structure describing a memzone, which is a contiguous portion of physical memory identified by a name.
void* addr |
Start virtual address.
uint64_t addr_64 |
Makes sure addr is always 64-bits
uint32_t flags |
Characteristics of this memzone.
uint64_t hugepage_sz |
The page size of underlying memory
size_t len |
Length of the memzone.
char name[RTE_MEMZONE_NAMESIZE] |
Name of the memory zone.
phys_addr_t phys_addr |
Start physical address.
int32_t socket_id |
NUMA socket ID.