numam-dpdk/lib/dmadev/version.map
David Marchand 223e0f7244 dmadev: remove symbol versioning for inline helpers
Inline helpers have no global symbols in shared libraries.
There is no reason to ask for versioning (plus this library would not
build on Windows).

Fixes: 91e581e5c9 ("dmadev: add data plane API")
Fixes: ea8cf0f853 ("dmadev: add burst capacity API")

Signed-off-by: David Marchand <david.marchand@redhat.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
2021-10-22 22:40:59 +02:00

32 lines
435 B
Plaintext

EXPERIMENTAL {
global:
rte_dma_close;
rte_dma_configure;
rte_dma_count_avail;
rte_dma_dev_max;
rte_dma_dump;
rte_dma_get_dev_id_by_name;
rte_dma_info_get;
rte_dma_is_valid;
rte_dma_next_dev;
rte_dma_start;
rte_dma_stats_get;
rte_dma_stats_reset;
rte_dma_stop;
rte_dma_vchan_setup;
rte_dma_vchan_status;
local: *;
};
INTERNAL {
global:
rte_dma_fp_objs;
rte_dma_pmd_allocate;
rte_dma_pmd_release;
local: *;
};