From: Xiao Wang Date: Wed, 8 Sep 2021 10:59:15 +0000 (+0800) Subject: net: promote make rarp packet function to stable X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=20ab35d032a25e40e81c9ad27470cc0d31a74a3b;p=dpdk.git net: promote make rarp packet function to stable rte_net_make_rarp_packet was introduced in version v18.02, there was no change in this public API since then, and it's still being used by vhost lib and virtio driver, so promote it as stable ABI. Signed-off-by: Xiao Wang Acked-by: Stephen Hemminger Acked-by: Chenbo Xia Acked-by: Olivier Matz --- diff --git a/lib/net/rte_arp.h b/lib/net/rte_arp.h index feb0eb3e49..076c8ab314 100644 --- a/lib/net/rte_arp.h +++ b/lib/net/rte_arp.h @@ -50,9 +50,6 @@ struct rte_arp_hdr { } __rte_packed __rte_aligned(2); /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice - * * Make a RARP packet based on MAC addr. * * @param mpool @@ -63,7 +60,6 @@ struct rte_arp_hdr { * @return * - RARP packet pointer on success, or NULL on error */ -__rte_experimental struct rte_mbuf * rte_net_make_rarp_packet(struct rte_mempool *mpool, const struct rte_ether_addr *mac); diff --git a/lib/net/version.map b/lib/net/version.map index 355b7c25b4..7584018d58 100644 --- a/lib/net/version.map +++ b/lib/net/version.map @@ -6,6 +6,7 @@ DPDK_22 { rte_net_crc_calc; rte_net_crc_set_alg; rte_net_get_ptype; + rte_net_make_rarp_packet; local: *; }; @@ -13,7 +14,6 @@ DPDK_22 { EXPERIMENTAL { global: - rte_net_make_rarp_packet; rte_net_skip_ip6_ext; rte_ether_unformat_addr; };