numam-dpdk/lib/librte_ip_frag/rte_ip_frag_version.map
Bruce Richardson 45a5f79886 ip_frag: rename map file to standardized name
The filenames of the linker map files for DPDK libraries, all follow a
standard format: rte_<libname>_version.map. The ip_frag version, however,
was missing an underscore in the name, so was non-standard. By changing
this, we no longer need the build system to explicitly be given the name of
the mapfile, as it can determine it from the directory/library name.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>
2017-08-31 23:02:57 +02:00

21 lines
321 B
Plaintext

DPDK_2.0 {
global:
rte_ip_frag_free_death_row;
rte_ip_frag_table_create;
rte_ip_frag_table_statistics_dump;
rte_ipv4_frag_reassemble_packet;
rte_ipv4_fragment_packet;
rte_ipv6_frag_reassemble_packet;
rte_ipv6_fragment_packet;
local: *;
};
DPDK_17.08 {
global:
rte_ip_frag_table_destroy;
} DPDK_2.0;