* Allocate memory on specified heap. */
| 81 | * Allocate memory on specified heap. |
| 82 | */ |
| 83 | void * |
| 84 | rte_malloc_socket(const char *type, size_t size, unsigned int align, |
| 85 | int socket_arg) |
| 86 | { |
| 87 | return malloc_socket(type, size, align, socket_arg, true); |
| 88 | } |
| 89 | |
| 90 | void * |
| 91 | eal_malloc_no_trace(const char *type, size_t size, unsigned int align) |