| rte_memory.h(3) | Library Functions Manual | rte_memory.h(3) |
rte_memory.h
#include <stdint.h>
#include <stddef.h>
#include <stdio.h>
#include <rte_bitops.h>
#include <rte_common.h>
#include <rte_config.h>
#include <rte_eal_memconfig.h>
#include <rte_fbarray.h>
struct rte_memseg
struct rte_memseg_list
#define SOCKET_ID_ANY -1
#define RTE_MEMSEG_FLAG_DO_NOT_FREE RTE_BIT32(0)
#define RTE_MEMSEG_FLAG_DIRTY RTE_BIT32(1)
#define RTE_MEM_EVENT_CALLBACK_NAME_LEN 64
#define RTE_MEM_ALLOC_VALIDATOR_NAME_LEN 64
typedef int(* rte_memseg_walk_t) (const struct
rte_memseg_list *msl, const struct rte_memseg *ms, void *arg)
typedef int(* rte_memseg_contig_walk_t) (const struct
rte_memseg_list *msl, const struct rte_memseg *ms, size_t len,
void *arg)
typedef int(* rte_memseg_list_walk_t) (const struct
rte_memseg_list *msl, void *arg)
typedef void(* rte_mem_event_callback_t) (enum
rte_mem_event event_type, const void *addr, size_t len, void *arg)
typedef int(* rte_mem_alloc_validator_t) (int socket_id, size_t
cur_limit, size_t new_len)
enum rte_mem_event { RTE_MEM_EVENT_ALLOC = 0,
RTE_MEM_EVENT_FREE }
int rte_mem_lock_page (const void *virt)
phys_addr_t rte_mem_virt2phy (const void *virt)
rte_iova_t rte_mem_virt2iova (const void *virt)
void * rte_mem_iova2virt (rte_iova_t iova)
struct rte_memseg * rte_mem_virt2memseg (const void *virt, const
struct rte_memseg_list *msl)
struct rte_memseg_list * rte_mem_virt2memseg_list (const void
*virt)
int rte_memseg_walk (rte_memseg_walk_t func, void *arg)
int rte_memseg_contig_walk (rte_memseg_contig_walk_t func, void
*arg)
int rte_memseg_list_walk (rte_memseg_list_walk_t func, void
*arg) __rte_locks_excluded(rte_mcfg_mem_get_lock())
int rte_memseg_walk_thread_unsafe (rte_memseg_walk_t func, void
*arg)
int rte_memseg_contig_walk_thread_unsafe
(rte_memseg_contig_walk_t func, void *arg)
int rte_memseg_list_walk_thread_unsafe (rte_memseg_list_walk_t
func, void *arg)
int rte_memseg_get_fd (const struct rte_memseg *ms)
int rte_memseg_get_fd_thread_unsafe (const struct rte_memseg
*ms)
int rte_memseg_get_fd_offset (const struct rte_memseg *ms,
size_t *offset)
int rte_memseg_get_fd_offset_thread_unsafe (const struct
rte_memseg *ms, size_t *offset)
int rte_extmem_register (void *va_addr, size_t len, rte_iova_t
iova_addrs[], unsigned int n_pages, size_t page_sz)
int rte_extmem_unregister (void *va_addr, size_t len)
int rte_extmem_attach (void *va_addr, size_t len)
int rte_extmem_detach (void *va_addr, size_t len)
void rte_dump_physmem_layout (FILE *f)
uint64_t rte_eal_get_physmem_size (void)
unsigned rte_memory_get_nchannel (void)
unsigned rte_memory_get_nrank (void)
int rte_mem_check_dma_mask (uint8_t maskbits)
int rte_mem_check_dma_mask_thread_unsafe (uint8_t maskbits)
void rte_mem_set_dma_mask (uint8_t maskbits)
int rte_eal_using_phys_addrs (void)
int rte_mem_event_callback_register (const char *name,
rte_mem_event_callback_t clb, void *arg)
int rte_mem_event_callback_unregister (const char *name, void *arg)
int rte_mem_alloc_validator_register (const char *name,
rte_mem_alloc_validator_t clb, int socket_id, size_t limit)
Register validator callback for memory allocations. int
rte_mem_alloc_validator_unregister (const char *name, int socket_id)
Unregister validator callback for memory allocations.
Memory-related RTE API.
Definition in file rte_memory.h.
Any NUMA socket.
Definition at line 39 of file rte_memory.h.
Prevent this segment from being freed back to the OS.
Definition at line 42 of file rte_memory.h.
This segment is not filled with zeros.
Definition at line 44 of file rte_memory.h.
maximum length of callback name
Definition at line 610 of file rte_memory.h.
maximum length of alloc validator name
Definition at line 666 of file rte_memory.h.
Memseg walk function prototype.
Returning 0 will continue walk Returning 1 will stop the walk Returning -1 will stop the walk and report error
Definition at line 167 of file rte_memory.h.
Memseg contig walk function prototype. This will trigger a callback on every VA-contiguous area starting at memseg ms, so total valid VA space at each callback call will be [ms->addr, ms->addr + len).
Returning 0 will continue walk Returning 1 will stop the walk Returning -1 will stop the walk and report error
Definition at line 179 of file rte_memory.h.
Memseg list walk function prototype. This will trigger a callback on every allocated memseg list.
Returning 0 will continue walk Returning 1 will stop the walk Returning -1 will stop the walk and report error
Definition at line 190 of file rte_memory.h.
Function typedef used to register callbacks for memory events.
Definition at line 615 of file rte_memory.h.
Function typedef used to register memory allocation validation callbacks.
Returning 0 will allow allocation attempt to continue. Returning -1 will prevent allocation from succeeding.
Definition at line 673 of file rte_memory.h.
Enum indicating which kind of memory event has happened. Used by callbacks to distinguish between memory allocations and deallocations.
Enumerator
Definition at line 605 of file rte_memory.h.
Lock page in physical memory and prevent from swapping.
Parameters
Returns
Get physical address of any mapped virtual address in the current process. It is found by browsing the /proc/self/pagemap special file. The page must be locked.
Parameters
Returns
Get IO virtual address of any mapped virtual address in the current process.
Note
Parameters
Returns
Get virtual memory address corresponding to iova address.
Note
Parameters
Returns
Get memseg to which a particular virtual address belongs.
Parameters
Returns
Get memseg list corresponding to virtual memory address.
Parameters
Returns
Walk list of all memsegs.
Note
This function will also walk through externally allocated segments. It is up to the user to decide whether to skip through these segments.
Parameters
Returns
Walk each VA-contiguous area.
Note
This function will also walk through externally allocated segments. It is up to the user to decide whether to skip through these segments.
Parameters
Returns
Walk each allocated memseg list.
Note
This function will also walk through externally allocated segments. It is up to the user to decide whether to skip through these segments.
Parameters
Returns
Walk list of all memsegs without performing any locking.
Note
Parameters
Returns
Walk each VA-contiguous area without performing any locking.
Note
Parameters
Returns
Walk each allocated memseg list without performing any locking.
Note
Parameters
Returns
Return file descriptor associated with a particular memseg (if available).
Note
This returns an internal file descriptor. Performing any operations on this file descriptor is inherently dangerous, so it should be treated as read-only for all intents and purposes.
Parameters
Returns
Return file descriptor associated with a particular memseg (if available).
Note
This returns an internal file descriptor. Performing any operations on this file descriptor is inherently dangerous, so it should be treated as read-only for all intents and purposes.
Parameters
Returns
Get offset into segment file descriptor associated with a particular memseg (if available).
Note
Parameters
Returns
Get offset into segment file descriptor associated with a particular memseg (if available).
Note
Parameters
Returns
Register external memory chunk with DPDK.
Note
This API will not perform any DMA mapping. It is expected that user will do that themselves.
Before accessing this memory in other processes, it needs to be attached in each of those processes by calling rte_extmem_attach in each other process.
Parameters
Returns
Unregister external memory chunk with DPDK.
Note
This API will not perform any DMA unmapping. It is expected that user will do that themselves.
Before calling this function, all other processes must call rte_extmem_detach to detach from the memory area.
Parameters
Returns
Attach to external memory chunk registered in another process.
Note
This API will not perform any DMA mapping. It is expected that user will do that themselves.
Parameters
Returns
Detach from external memory chunk registered in another process.
Note
This API will not perform any DMA unmapping. It is expected that user will do that themselves.
Parameters
Returns
Dump the physical memory layout to a file.
Note
Parameters
Get the total amount of available physical memory.
Note
Returns
Get the number of memory channels.
Returns
Get the number of memory ranks.
Returns
Check if all currently allocated memory segments are compliant with supplied DMA address width.
Parameters
Check if all currently allocated memory segments are compliant with supplied DMA address width. This function will use rte_memseg_walk_thread_unsafe instead of rte_memseg_walk implying memory_hotplug_lock will not be acquired avoiding deadlock during memory initialization.
This function is just for EAL core memory internal use. Drivers should use the previous rte_mem_check_dma_mask.
Parameters
Set dma mask to use once memory initialization is done. Previous functions rte_mem_check_dma_mask and rte_mem_check_dma_mask_thread_unsafe can not be used safely until memory has been initialized.
Drivers based on uio will not load unless physical addresses are obtainable. It is only possible to get physical addresses when running as a privileged user.
Returns
Function used to register callbacks for memory events.
Note
mem event callbacks not being supported is an expected error condition, so user code needs to handle this situation. In these cases, return value will be -1, and rte_errno will be set to ENOTSUP.
Parameters
Returns
Function used to unregister callbacks for memory events.
Parameters
Returns
Register validator callback for memory allocations. Callbacks registered by this function will be called right before memory allocator is about to trigger allocation of more pages from the system if said allocation will bring total memory usage above specified limit on specified socket. User will be able to cancel pending allocation if callback returns -1.
Note
validator callbacks not being supported is an expected error condition, so user code needs to handle this situation. In these cases, return value will be -1, and rte_errno will be set to ENOTSUP.
Parameters
Returns
Unregister validator callback for memory allocations.
Parameters
Returns
Generated automatically by Doxygen for DPDK from the source code.
| Version 24.11.3 | DPDK |