From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CDEEBA04B1; Wed, 9 Sep 2020 15:02:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 374331C0D9; Wed, 9 Sep 2020 15:02:42 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 687511B9B7 for ; Wed, 9 Sep 2020 15:02:38 +0200 (CEST) IronPort-SDR: bYAERBNORKdpxGjd58fRKfaIMGifj8bgOS381iI+kbxmVHHsPSBuOrotGJTCfRm2oihuRACptZ jJM6T5AFC2dA== X-IronPort-AV: E=McAfee;i="6000,8403,9738"; a="146038594" X-IronPort-AV: E=Sophos;i="5.76,409,1592895600"; d="scan'208";a="146038594" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 09 Sep 2020 06:02:12 -0700 IronPort-SDR: Jdk7CD1cWnmsqnad4j2nJZqU03JYX5GpCr3ZdVLmbcaQSqKvHyIJ4zaHbrsungAkbux3QDM09E O6cEvs2O4duw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,409,1592895600"; d="scan'208";a="341567106" Received: from silpixa00399752.ir.intel.com (HELO silpixa00399752.ger.corp.intel.com) ([10.237.222.180]) by FMSMGA003.fm.intel.com with ESMTP; 09 Sep 2020 06:02:09 -0700 From: Ferruh Yigit To: dev@dpdk.org, Ray Kinsella , Neil Horman , John McNamara , Marko Kovacevic , Thomas Monjalon , Andrew Rybchenko , Ori Kam Cc: Ferruh Yigit , David Marchand Date: Wed, 9 Sep 2020 14:01:45 +0100 Message-Id: <20200909130148.1756518-4-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200909130148.1756518-1-ferruh.yigit@intel.com> References: <20200824094021.2323605-1-ferruh.yigit@intel.com> <20200909130148.1756518-1-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v4 4/7] ethdev: mark internal functions X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Some ethdev functions are for drivers only, not for applications. Since we have '__rte_internal' tag available now, marking internal functions with it and moving functions to INTERNAL section in linker script. This is also good for documenting the internal functions. Some internal APIs seems marked as experimental, but it doesn't make sense to have internals APIs as experimental, updating their tag and doxygen comments. Signed-off-by: Ferruh Yigit Acked-by: Andrew Rybchenko Acked-by: David Marchand --- Cc: David Marchand v3: * release note updated --- doc/guides/rel_notes/deprecation.rst | 6 ----- doc/guides/rel_notes/release_20_11.rst | 2 ++ lib/librte_ethdev/rte_ethdev.h | 3 +-- lib/librte_ethdev/rte_ethdev_driver.h | 33 ++++++++++-------------- lib/librte_ethdev/rte_ethdev_version.map | 30 ++++++++++----------- lib/librte_ethdev/rte_flow_driver.h | 4 +-- 6 files changed, 31 insertions(+), 47 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 8770c87006..6c82db2961 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -225,12 +225,6 @@ Deprecation Notices following the IPv6 header, as proposed in RFC https://mails.dpdk.org/archives/dev/2020-August/177257.html. -* ethdev: Some internal APIs for driver usage are exported in the .map file. - Now DPDK has ``__rte_internal`` marker so we can mark internal APIs and move - them to the INTERNAL block in .map. Although these APIs are internal it will - break the ABI checks, that is why change is planned for 20.11. - The list of internal APIs are mainly ones listed in ``rte_ethdev_driver.h``. - * traffic manager: All traffic manager API's in ``rte_tm.h`` were mistakenly made ABI stable in the v19.11 release. The TM maintainer and other contributors have agreed to keep the TM APIs as experimental in expectation of additional spec diff --git a/doc/guides/rel_notes/release_20_11.rst b/doc/guides/rel_notes/release_20_11.rst index 9b5bfcfae8..f8c3521b3f 100644 --- a/doc/guides/rel_notes/release_20_11.rst +++ b/doc/guides/rel_notes/release_20_11.rst @@ -113,6 +113,8 @@ ABI Changes * ``struct eth_dev_ops`` is no more accessible by applications, which was already internal data structure. + * ``ethdev`` internal functions are marked with ``__rte_internal`` tag. + Known Issues ------------ diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h index b6f26a513b..e7733d828b 100644 --- a/lib/librte_ethdev/rte_ethdev.h +++ b/lib/librte_ethdev/rte_ethdev.h @@ -1724,8 +1724,7 @@ rte_eth_find_next_of(uint16_t port_id_start, */ __rte_experimental uint16_t -rte_eth_find_next_sibling(uint16_t port_id_start, - uint16_t ref_port_id); +rte_eth_find_next_sibling(uint16_t port_id_start, uint16_t ref_port_id); /** * Macro to iterate over all ethdev ports sharing the same rte_device diff --git a/lib/librte_ethdev/rte_ethdev_driver.h b/lib/librte_ethdev/rte_ethdev_driver.h index b006cbbe92..3d1bc33272 100644 --- a/lib/librte_ethdev/rte_ethdev_driver.h +++ b/lib/librte_ethdev/rte_ethdev_driver.h @@ -759,6 +759,7 @@ int rte_eth_dev_is_tx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id); * @return * - The pointer to the ethdev slot, on success. NULL on error */ +__rte_internal struct rte_eth_dev *rte_eth_dev_allocated(const char *name); /** @@ -770,6 +771,7 @@ struct rte_eth_dev *rte_eth_dev_allocated(const char *name); * @return * - Slot in the rte_dev_devices array for a new device; */ +__rte_internal struct rte_eth_dev *rte_eth_dev_allocate(const char *name); /** @@ -783,6 +785,7 @@ struct rte_eth_dev *rte_eth_dev_allocate(const char *name); * device. * - Error: Null pointer. */ +__rte_internal struct rte_eth_dev *rte_eth_dev_attach_secondary(const char *name); /** @@ -801,6 +804,7 @@ struct rte_eth_dev *rte_eth_dev_attach_secondary(const char *name); * @return * - 0 on success, negative on error */ +__rte_internal int rte_eth_dev_release_port(struct rte_eth_dev *eth_dev); /** @@ -814,6 +818,7 @@ int rte_eth_dev_release_port(struct rte_eth_dev *eth_dev); * @return * void */ +__rte_internal void _rte_eth_dev_reset(struct rte_eth_dev *dev); /** @@ -833,6 +838,7 @@ void _rte_eth_dev_reset(struct rte_eth_dev *dev); * @return * int */ +__rte_internal int _rte_eth_dev_callback_process(struct rte_eth_dev *dev, enum rte_eth_event_type event, void *ret_param); @@ -848,6 +854,7 @@ int _rte_eth_dev_callback_process(struct rte_eth_dev *dev, * @param dev * New ethdev port. */ +__rte_internal void rte_eth_dev_probing_finish(struct rte_eth_dev *dev); /** @@ -869,6 +876,7 @@ void rte_eth_dev_probing_finish(struct rte_eth_dev *dev); * @param socket_id * The *socket_id* argument is the socket identifier in case of NUMA. */ +__rte_internal const struct rte_memzone * rte_eth_dma_zone_reserve(const struct rte_eth_dev *eth_dev, const char *name, uint16_t queue_id, size_t size, @@ -955,9 +963,6 @@ rte_eth_linkstatus_get(const struct rte_eth_dev *dev, } /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Allocate an unique switch domain identifier. * * A pool of switch domain identifiers which can be allocated on request. This @@ -971,14 +976,11 @@ rte_eth_linkstatus_get(const struct rte_eth_dev *dev, * @return * Negative errno value on error, 0 on success. */ -__rte_experimental +__rte_internal int rte_eth_switch_domain_alloc(uint16_t *domain_id); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * Free switch domain. * * Return a switch domain identifier to the pool of free identifiers after it is @@ -990,7 +992,7 @@ rte_eth_switch_domain_alloc(uint16_t *domain_id); * @return * Negative errno value on error, 0 on success. */ -__rte_experimental +__rte_internal int rte_eth_switch_domain_free(uint16_t domain_id); @@ -1007,9 +1009,6 @@ struct rte_eth_devargs { }; /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * PMD helper function to parse ethdev arguments * * @param devargs @@ -1020,7 +1019,7 @@ struct rte_eth_devargs { * @return * Negative errno value on error, 0 on success. */ -__rte_experimental +__rte_internal int rte_eth_devargs_parse(const char *devargs, struct rte_eth_devargs *eth_devargs); @@ -1030,9 +1029,6 @@ typedef int (*ethdev_bus_specific_init)(struct rte_eth_dev *ethdev, void *bus_specific_init_params); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * PMD helper function for the creation of a new ethdev ports. * * @param device @@ -1053,7 +1049,7 @@ typedef int (*ethdev_bus_specific_init)(struct rte_eth_dev *ethdev, * @return * Negative errno value on error, 0 on success. */ -__rte_experimental +__rte_internal int rte_eth_dev_create(struct rte_device *device, const char *name, size_t priv_data_size, @@ -1064,9 +1060,6 @@ rte_eth_dev_create(struct rte_device *device, const char *name, typedef int (*ethdev_uninit_t)(struct rte_eth_dev *ethdev); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice. - * * PMD helper function for cleaning up the resources of a ethdev port on it's * destruction. * @@ -1078,7 +1071,7 @@ typedef int (*ethdev_uninit_t)(struct rte_eth_dev *ethdev); * @return * Negative errno value on error, 0 on success. */ -__rte_experimental +__rte_internal int rte_eth_dev_destroy(struct rte_eth_dev *ethdev, ethdev_uninit_t ethdev_uninit); diff --git a/lib/librte_ethdev/rte_ethdev_version.map b/lib/librte_ethdev/rte_ethdev_version.map index 8d9d6b1c67..6a84f3d76d 100644 --- a/lib/librte_ethdev/rte_ethdev_version.map +++ b/lib/librte_ethdev/rte_ethdev_version.map @@ -1,8 +1,6 @@ DPDK_21 { global: - _rte_eth_dev_callback_process; - _rte_eth_dev_reset; rte_eth_add_first_rx_callback; rte_eth_add_rx_callback; rte_eth_add_tx_callback; @@ -10,9 +8,6 @@ DPDK_21 { rte_eth_allmulticast_enable; rte_eth_allmulticast_get; rte_eth_dev_adjust_nb_rx_tx_desc; - rte_eth_dev_allocate; - rte_eth_dev_allocated; - rte_eth_dev_attach_secondary; rte_eth_dev_callback_register; rte_eth_dev_callback_unregister; rte_eth_dev_close; @@ -44,8 +39,6 @@ DPDK_21 { rte_eth_dev_mac_addr_remove; rte_eth_dev_pool_ops_supported; rte_eth_dev_priority_flow_ctrl_set; - rte_eth_dev_probing_finish; - rte_eth_dev_release_port; rte_eth_dev_reset; rte_eth_dev_rss_hash_conf_get; rte_eth_dev_rss_hash_update; @@ -81,7 +74,6 @@ DPDK_21 { rte_eth_dev_udp_tunnel_port_delete; rte_eth_dev_vlan_filter; rte_eth_devices; - rte_eth_dma_zone_reserve; rte_eth_find_next; rte_eth_find_next_owned_by; rte_eth_iterator_cleanup; @@ -195,16 +187,8 @@ EXPERIMENTAL { rte_eth_dev_owner_unset; # added in 18.05 - rte_eth_dev_create; - rte_eth_dev_destroy; rte_eth_dev_get_module_eeprom; rte_eth_dev_get_module_info; - rte_eth_devargs_parse; - rte_eth_switch_domain_alloc; - rte_eth_switch_domain_free; - - # added in 18.08 - rte_flow_expand_rss; # added in 18.11 rte_eth_dev_rx_intr_ctl_q_get_fd; @@ -246,5 +230,19 @@ EXPERIMENTAL { INTERNAL { global: + _rte_eth_dev_callback_process; + _rte_eth_dev_reset; + rte_eth_dev_allocate; + rte_eth_dev_allocated; + rte_eth_dev_attach_secondary; + rte_eth_dev_create; + rte_eth_dev_destroy; + rte_eth_dev_probing_finish; + rte_eth_dev_release_port; + rte_eth_devargs_parse; rte_eth_dma_zone_free; + rte_eth_dma_zone_reserve; + rte_eth_switch_domain_alloc; + rte_eth_switch_domain_free; + rte_flow_expand_rss; }; diff --git a/lib/librte_ethdev/rte_flow_driver.h b/lib/librte_ethdev/rte_flow_driver.h index 997598db11..3ee871d3eb 100644 --- a/lib/librte_ethdev/rte_flow_driver.h +++ b/lib/librte_ethdev/rte_flow_driver.h @@ -161,8 +161,6 @@ struct rte_flow_expand_rss { * Expand RSS flows into several possible flows according to the RSS hash * fields requested and the driver capabilities. * - * @b EXPERIMENTAL: this API may change without prior notice - * * @param[out] buf * Buffer to store the result expansion. * @param[in] size @@ -183,7 +181,7 @@ struct rte_flow_expand_rss { * * -E2BIG: graph-depth @p graph is too deep. */ -__rte_experimental +__rte_internal int rte_flow_expand_rss(struct rte_flow_expand_rss *buf, size_t size, const struct rte_flow_item *pattern, uint64_t types, -- 2.26.2