From: "lihuisong (C)" <lihuisong@huawei.com>
To: Lukas Sismis <sismis@cesnet.cz>, <dev@dpdk.org>
Cc: <stephen@networkplumber.org>, <mb@smartsharesystems.com>,
<anatoly.burakov@intel.com>, <ian.stokes@intel.com>
Subject: Re: [PATCH v3 1/1] net/bonding: make bonding functions stable
Date: Thu, 31 Oct 2024 10:24:20 +0800 [thread overview]
Message-ID: <bdbe91bc-ee4e-d95f-6420-12d86a1881a7@huawei.com> (raw)
In-Reply-To: <20241030154256.379249-1-sismis@cesnet.cz>
Acked-by: Huisong Li <lihuisong@huawei.com>
在 2024/10/30 23:42, Lukas Sismis 写道:
> Remove rte_experimental macros from the stable functions
> as they have been part of the stable API since 23.11.
>
> Signed-off-by: Lukas Sismis <sismis@cesnet.cz>
> ---
> drivers/net/bonding/rte_eth_bond.h | 4 ----
> drivers/net/bonding/rte_eth_bond_8023ad.h | 1 -
> drivers/net/bonding/version.map | 15 +++++----------
> 3 files changed, 5 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/net/bonding/rte_eth_bond.h b/drivers/net/bonding/rte_eth_bond.h
> index e59ff8793e..4f79ff9b85 100644
> --- a/drivers/net/bonding/rte_eth_bond.h
> +++ b/drivers/net/bonding/rte_eth_bond.h
> @@ -125,7 +125,6 @@ rte_eth_bond_free(const char *name);
> * @return
> * 0 on success, negative value otherwise
> */
> -__rte_experimental
> int
> rte_eth_bond_member_add(uint16_t bonding_port_id, uint16_t member_port_id);
>
> @@ -138,7 +137,6 @@ rte_eth_bond_member_add(uint16_t bonding_port_id, uint16_t member_port_id);
> * @return
> * 0 on success, negative value otherwise
> */
> -__rte_experimental
> int
> rte_eth_bond_member_remove(uint16_t bonding_port_id, uint16_t member_port_id);
>
> @@ -199,7 +197,6 @@ rte_eth_bond_primary_get(uint16_t bonding_port_id);
> * Number of members associated with bonding device on success,
> * negative value otherwise
> */
> -__rte_experimental
> int
> rte_eth_bond_members_get(uint16_t bonding_port_id, uint16_t members[],
> uint16_t len);
> @@ -216,7 +213,6 @@ rte_eth_bond_members_get(uint16_t bonding_port_id, uint16_t members[],
> * Number of active members associated with bonding device on success,
> * negative value otherwise
> */
> -__rte_experimental
> int
> rte_eth_bond_active_members_get(uint16_t bonding_port_id, uint16_t members[],
> uint16_t len);
> diff --git a/drivers/net/bonding/rte_eth_bond_8023ad.h b/drivers/net/bonding/rte_eth_bond_8023ad.h
> index b2deb26e2e..5432eafcfe 100644
> --- a/drivers/net/bonding/rte_eth_bond_8023ad.h
> +++ b/drivers/net/bonding/rte_eth_bond_8023ad.h
> @@ -193,7 +193,6 @@ rte_eth_bond_8023ad_setup(uint16_t port_id,
> * -EINVAL if conf is NULL or member id is invalid (not a member of given
> * bonding device or is not inactive).
> */
> -__rte_experimental
> int
> rte_eth_bond_8023ad_member_info(uint16_t port_id, uint16_t member_id,
> struct rte_eth_bond_8023ad_member_info *conf);
> diff --git a/drivers/net/bonding/version.map b/drivers/net/bonding/version.map
> index a309469b1f..eb37dadf76 100644
> --- a/drivers/net/bonding/version.map
> +++ b/drivers/net/bonding/version.map
> @@ -11,12 +11,17 @@ DPDK_25 {
> rte_eth_bond_8023ad_ext_distrib;
> rte_eth_bond_8023ad_ext_distrib_get;
> rte_eth_bond_8023ad_ext_slowtx;
> + rte_eth_bond_8023ad_member_info;
> rte_eth_bond_8023ad_setup;
> + rte_eth_bond_active_members_get;
> rte_eth_bond_create;
> rte_eth_bond_free;
> rte_eth_bond_link_monitoring_set;
> rte_eth_bond_mac_address_reset;
> rte_eth_bond_mac_address_set;
> + rte_eth_bond_member_add;
> + rte_eth_bond_member_remove;
> + rte_eth_bond_members_get;
> rte_eth_bond_mode_get;
> rte_eth_bond_mode_set;
> rte_eth_bond_primary_get;
> @@ -26,13 +31,3 @@ DPDK_25 {
>
> local: *;
> };
> -
> -EXPERIMENTAL {
> - # added in 23.11
> - global:
> - rte_eth_bond_8023ad_member_info;
> - rte_eth_bond_active_members_get;
> - rte_eth_bond_member_add;
> - rte_eth_bond_member_remove;
> - rte_eth_bond_members_get;
> -};
next prev parent reply other threads:[~2024-10-31 2:24 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-29 12:48 [PATCH] net: increase the maximum of RX/TX descriptors Lukas Sismis
2024-10-29 14:37 ` Morten Brørup
2024-10-30 13:58 ` Lukáš Šišmiš
2024-10-30 15:20 ` Stephen Hemminger
2024-10-30 15:40 ` Lukáš Šišmiš
2024-10-30 15:58 ` Bruce Richardson
2024-10-30 16:06 ` Stephen Hemminger
2024-10-30 15:06 ` [PATCH v2 1/2] net/ixgbe: " Lukas Sismis
2024-10-30 15:06 ` [PATCH v2 2/2] net/ice: " Lukas Sismis
2024-10-30 15:42 ` [PATCH v3 1/1] net/bonding: make bonding functions stable Lukas Sismis
2024-10-30 15:42 ` [PATCH v3 1/2] net/ixgbe: increase the maximum of RX/TX descriptors Lukas Sismis
2024-10-30 16:26 ` Morten Brørup
2024-10-30 15:42 ` [PATCH v3 2/2] net/ice: " Lukas Sismis
2024-10-30 16:26 ` Morten Brørup
2024-10-31 2:24 ` lihuisong (C) [this message]
2024-10-29 20:44 [PATCH v3 1/1] net/bonding: make bonding functions stable Lukas Sismis
2024-10-29 22:22 ` Stephen Hemminger
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=bdbe91bc-ee4e-d95f-6420-12d86a1881a7@huawei.com \
--to=lihuisong@huawei.com \
--cc=anatoly.burakov@intel.com \
--cc=dev@dpdk.org \
--cc=ian.stokes@intel.com \
--cc=mb@smartsharesystems.com \
--cc=sismis@cesnet.cz \
--cc=stephen@networkplumber.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).