Add a new wrapper to rte_mempool_create() to simplify the creation of a packet mbuf pool. This wrapper can be used if there is no specific mempool flags, and no specific mbuf or pool constructor function, which is most of the use cases. Signed-off-by: Olivier Matz <olivier.matz@6wind.com> Acked-by: Neil Horman <nhorman@tuxdriver.com> Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
22 lines
284 B
Plaintext
22 lines
284 B
Plaintext
DPDK_2.0 {
|
|
global:
|
|
|
|
rte_ctrlmbuf_init;
|
|
rte_get_rx_ol_flag_name;
|
|
rte_get_tx_ol_flag_name;
|
|
rte_mbuf_sanity_check;
|
|
rte_pktmbuf_dump;
|
|
rte_pktmbuf_init;
|
|
rte_pktmbuf_pool_init;
|
|
|
|
local: *;
|
|
};
|
|
|
|
DPDK_2.1 {
|
|
global:
|
|
|
|
rte_pktmbuf_pool_create;
|
|
|
|
local: *;
|
|
} DPDK_2.0;
|