[dpdk-dev] [PATCH v2] power: remove duplicated symbols from map file
From: Ferruh Yigit <hidden>
Date: 2021-02-25 10:54:59
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
This is causing build error, like: https://travis-ci.com/github/ovsrobot/dpdk/jobs/482121104 Also '@internal' marker removed from doxygen comment, since public API should not be internal. Experimental tag removed from 'rte_power_guest_channel_send_msg()' Fixes: 4d3892dcd77b ("power: make channel message functions public") Cc: stable@dpdk.org Signed-off-by: Ferruh Yigit <redacted> --- Cc: Aaron Conole <aconole@redhat.com> Cc: Bruce Richardson <redacted> Cc: David Marchand <redacted> Cc: Anatoly Burakov <redacted> Cc: Juraj Linkeš <redacted> v2: * Keep old symbols, remove the ones added in 21.02 --- lib/librte_power/rte_power_guest_channel.h | 8 -------- lib/librte_power/version.map | 2 -- 2 files changed, 10 deletions(-)
diff --git a/lib/librte_power/rte_power_guest_channel.h b/lib/librte_power/rte_power_guest_channel.h
index ed4fbfdcd38a..b5de1bd24318 100644
--- a/lib/librte_power/rte_power_guest_channel.h
+++ b/lib/librte_power/rte_power_guest_channel.h@@ -119,11 +119,6 @@ struct rte_power_channel_packet_caps_list { }; /** - * @internal - * - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Send a message contained in pkt over the Virtio-Serial to the host endpoint. * * @param pkt
@@ -136,13 +131,10 @@ struct rte_power_channel_packet_caps_list { * - 0 on success. * - Negative on error. */ -__rte_experimental int rte_power_guest_channel_send_msg(struct rte_power_channel_packet *pkt, unsigned int lcore_id); /** - * @internal - * * @warning * @b EXPERIMENTAL: this API may change without prior notice. *
diff --git a/lib/librte_power/version.map b/lib/librte_power/version.map
index 3ba9390241d2..b004e3e4a9c1 100644
--- a/lib/librte_power/version.map
+++ b/lib/librte_power/version.map@@ -38,6 +38,4 @@ EXPERIMENTAL { # added in 21.02 rte_power_ethdev_pmgmt_queue_disable; rte_power_ethdev_pmgmt_queue_enable; - rte_power_guest_channel_receive_msg; - rte_power_guest_channel_send_msg; };
--
2.29.2