numam-dpdk/lib/librte_mbuf/rte_mbuf_version.map
Olivier Matz 5d4955d3e3 mbuf: add functions to dump offload flags
The functions rte_get_rx_ol_flag_name() and rte_get_tx_ol_flag_name()
can dump one flag, or set of flag that are part of the same mask (ex:
PKT_TX_UDP_CKSUM, part of PKT_TX_L4_MASK). But they are not designed to
dump the list of flags contained in mbuf->ol_flags.

This commit introduce new functions to do that. Similarly to the packet
type dump functions, the goal is to factorize the code that could be
used in several applications and reduce the risk of desynchronization
between the flags and the dump functions.

Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
2016-10-12 18:08:40 +02:00

38 lines
576 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;
} DPDK_2.0;
DPDK_16.11 {
global:
__rte_pktmbuf_read;
rte_get_ptype_inner_l2_name;
rte_get_ptype_inner_l3_name;
rte_get_ptype_inner_l4_name;
rte_get_ptype_l2_name;
rte_get_ptype_l3_name;
rte_get_ptype_l4_name;
rte_get_ptype_name;
rte_get_ptype_tunnel_name;
rte_get_rx_ol_flag_list;
rte_get_tx_ol_flag_list;
} DPDK_2.1;