1 /* SPDX-License-Identifier: BSD-3-Clause
5 #ifndef _RTE_MBUF_POOL_OPS_H_
6 #define _RTE_MBUF_POOL_OPS_H_
12 * These APIs are for configuring the mbuf pool ops names to be largely used by
13 * rte_pktmbuf_pool_create(). However, this can also be used to set and inquire
14 * the best mempool ops available.
17 #include <rte_compat.h>
24 * Set the platform supported pktmbuf HW mempool ops name
26 * This function allow the HW to register the actively supported HW mempool
27 * ops_name. Only one HW mempool ops can be registered at any point of time.
32 * - On failure, a negative value.
35 rte_mbuf_set_platform_mempool_ops(const char *ops_name);
38 * Get configured platform supported pktmbuf HW mempool ops name
40 * This function returns the platform supported mempool ops name.
43 * - On success, platform pool ops name.
47 rte_mbuf_platform_mempool_ops(void);
50 * Set the user preferred pktmbuf mempool ops name
52 * This function can be used by the user to configure user preferred
58 * - On failure, a negative value.
61 rte_mbuf_set_user_mempool_ops(const char *ops_name);
64 * Get user preferred pool ops name for mbuf
66 * This function returns the user configured mempool ops name.
69 * - On success, user pool ops name..
73 rte_mbuf_user_mempool_ops(void);
76 * Get the best mempool ops name for pktmbuf.
78 * This function is used to determine the best options for mempool ops for
79 * pktmbuf allocations. Following are the priority order:
80 * 1. User defined, 2. Platform HW supported, 3. Compile time configured.
81 * This function is also used by the rte_pktmbuf_pool_create to get the best
85 * returns preferred mbuf pool ops name
88 rte_mbuf_best_mempool_ops(void);
95 #endif /* _RTE_MBUF_POOL_OPS_H_ */