1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2018 Intel Corporation
5 #ifndef _INCLUDE_MEMPOOL_H_
6 #define _INCLUDE_MEMPOOL_H_
11 #include <rte_mempool.h>
16 TAILQ_ENTRY(mempool) node;
18 struct rte_mempool *m;
22 TAILQ_HEAD(mempool_list, mempool);
28 mempool_find(const char *name);
30 struct mempool_params {
38 mempool_create(const char *name, struct mempool_params *params);
40 #endif /* _INCLUDE_MEMPOOL_H_ */