xref: /dpdk/app/graph/mempool_priv.h (revision 0f32dac4bbf74761972249090523f4581ca13126)
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2023 Marvell.
3  */
4 
5 #ifndef APP_GRAPH_MEMPOOL_PRIV_H
6 #define APP_GRAPH_MEMPOOL_PRIV_H
7 
8 #include "mempool.h"
9 
10 struct mempools {
11 	struct mempool_config config[RTE_MAX_ETHPORTS];
12 	struct rte_mempool *mp[RTE_MAX_ETHPORTS];
13 	uint8_t	nb_pools;
14 };
15 
16 #endif
17