@@ -64,4 +64,6 @@
[suppress_function]
name = rte_dpaa2_mbuf_alloc_bulk
[suppress_function]
- name = rte_dpaa2_bpid_info
+ name_regexp = ^rte_dpaa2_bpid_info
+[suppress_function]
+ name_regexp = ^dpaa
\ No newline at end of file
@@ -160,12 +160,14 @@ struct dpaa_if_stats {
uint64_t tund; /**<Tx Undersized */
};
+__rte_internal
int
dpaa_eth_eventq_attach(const struct rte_eth_dev *dev,
int eth_rx_queue_id,
u16 ch_id,
const struct rte_event_eth_rx_adapter_queue_conf *queue_conf);
+__rte_internal
int
dpaa_eth_eventq_detach(const struct rte_eth_dev *dev,
int eth_rx_queue_id);
@@ -1,9 +1,14 @@
DPDK_20.0 {
global:
- dpaa_eth_eventq_attach;
- dpaa_eth_eventq_detach;
rte_pmd_dpaa_set_tx_loopback;
local: *;
};
+
+INTERNAL {
+ global:
+
+ dpaa_eth_eventq_attach;
+ dpaa_eth_eventq_detach;
+};
This patch moves the internal symbols to INTERNAL sections so that any change in them is not reported as ABI breakage. Signed-off-by: Hemant Agrawal <hemant.agrawal@nxp.com> --- devtools/libabigail.abignore | 4 +++- drivers/net/dpaa/dpaa_ethdev.h | 2 ++ drivers/net/dpaa/rte_pmd_dpaa_version.map | 9 +++++++-- 3 files changed, 12 insertions(+), 3 deletions(-) -- 2.17.1