From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0342CA034F for ; Thu, 25 Feb 2021 11:54:56 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D98C54067B; Thu, 25 Feb 2021 11:54:56 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id DA3D54067B; Thu, 25 Feb 2021 11:54:54 +0100 (CET) IronPort-SDR: sqRz3bSiy4WP5Y6ni1k5nY4H5eCD6b/2MSvMcagn5NAaPN0KKYBnM/YQxNnqOqExqgxAibQs27 DzHR4uLTdymg== X-IronPort-AV: E=McAfee;i="6000,8403,9905"; a="249544730" X-IronPort-AV: E=Sophos;i="5.81,205,1610438400"; d="scan'208";a="249544730" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Feb 2021 02:54:53 -0800 IronPort-SDR: TPH5XJndXfyes7dh0CcH+zeed1fALmYxYVH3ZikX3EZ91puF1vNtsrPLM9h+gshSc1NkfM8TkR hpHeUJHYAFlg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.81,205,1610438400"; d="scan'208";a="404224956" Received: from silpixa00399752.ir.intel.com (HELO silpixa00399752.ger.corp.intel.com) ([10.237.222.27]) by orsmga008.jf.intel.com with ESMTP; 25 Feb 2021 02:54:51 -0800 From: Ferruh Yigit To: David Hunt , Ray Kinsella , Neil Horman , Bruce Richardson , Anatoly Burakov Cc: Ferruh Yigit , dev@dpdk.org, stable@dpdk.org, Aaron Conole , David Marchand , =?UTF-8?q?Juraj=20Linke=C5=A1?= Date: Thu, 25 Feb 2021 10:54:49 +0000 Message-Id: <20210225105449.4111878-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.29.2 In-Reply-To: <20210224145434.3108928-1-ferruh.yigit@intel.com> References: <20210224145434.3108928-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [dpdk-stable] [PATCH v2] power: remove duplicated symbols from map file X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" 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 --- Cc: Aaron Conole Cc: Bruce Richardson Cc: David Marchand Cc: Anatoly Burakov Cc: Juraj Linkeš 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