MCPcopy Create free account
hub / github.com/F-Stack/f-stack / rte_malloc

Function rte_malloc

dpdk/lib/eal/common/rte_malloc.c:99–103  ·  view source on GitHub ↗

* Allocate memory on default heap. */

Source from the content-addressed store, hash-verified

97 * Allocate memory on default heap.
98 */
99void *
100rte_malloc(const char *type, size_t size, unsigned align)
101{
102 return rte_malloc_socket(type, size, align, SOCKET_ID_ANY);
103}
104
105/*
106 * Allocate zero'd memory on specified heap.

Callers 15

sysctlFunction · 0.85
bridge_interfacesFunction · 0.85
rte_lpm6_createFunction · 0.85
ff_dpdk_runFunction · 0.85
pcap_source_loadFunction · 0.85
rte_lpm6_createFunction · 0.85
rte_hash_createFunction · 0.85
virtio_dev_extbuf_allocFunction · 0.85

Calls 1

rte_malloc_socketFunction · 0.85