* Combines the semantics of mlx4_mallocv() with those of rte_zmalloc(). * * @see mlx4_mallocv() * @see rte_zmalloc() */
| 148 | * @see rte_zmalloc() |
| 149 | */ |
| 150 | size_t |
| 151 | mlx4_zmallocv(const char *type, const struct mlx4_malloc_vec *vec, |
| 152 | unsigned int cnt) |
| 153 | { |
| 154 | return mlx4_mallocv_inline(type, vec, cnt, 1, SOCKET_ID_ANY); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * Socket-aware version of mlx4_mallocv(). |
no test coverage detected