* [dpdk-dev] [PATCH] net: promote ip6 external headers skip API as stable
@ 2021-09-24 13:01 Olivier Matz
2021-10-02 9:40 ` David Marchand
0 siblings, 1 reply; 4+ messages in thread
From: Olivier Matz @ 2021-09-24 13:01 UTC (permalink / raw)
To: dev; +Cc: Olivier Matz, Ray Kinsella, Didier Pallard
This function is public since commit 8f0e4d6a78a5 ("net: export IPv6
header extensions skip function") (2018), and is used by vmxnet3 driver.
Promote it as stable.
Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
---
lib/net/rte_net.h | 4 ----
lib/net/version.map | 2 +-
2 files changed, 1 insertion(+), 5 deletions(-)
diff --git a/lib/net/rte_net.h b/lib/net/rte_net.h
index 42639bc154..f4460202c0 100644
--- a/lib/net/rte_net.h
+++ b/lib/net/rte_net.h
@@ -34,9 +34,6 @@ struct rte_net_hdr_lens {
* This function skips all IPv6 extensions, returning size of
* complete header including options and final protocol value.
*
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
* @param proto
* Protocol field of IPv6 header.
* @param m
@@ -51,7 +48,6 @@ struct rte_net_hdr_lens {
* Protocol that follows IPv6 header.
* -1 if an error occurs during mbuf parsing.
*/
-__rte_experimental
int
rte_net_skip_ip6_ext(uint16_t proto, const struct rte_mbuf *m, uint32_t *off,
int *frag);
diff --git a/lib/net/version.map b/lib/net/version.map
index 355b7c25b4..a8a2ecf870 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_skip_ip6_ext;
local: *;
};
@@ -14,6 +15,5 @@ EXPERIMENTAL {
global:
rte_net_make_rarp_packet;
- rte_net_skip_ip6_ext;
rte_ether_unformat_addr;
};
--
2.30.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] net: promote ip6 external headers skip API as stable
2021-09-24 13:01 [dpdk-dev] [PATCH] net: promote ip6 external headers skip API as stable Olivier Matz
@ 2021-10-02 9:40 ` David Marchand
2021-10-07 16:25 ` Kinsella, Ray
0 siblings, 1 reply; 4+ messages in thread
From: David Marchand @ 2021-10-02 9:40 UTC (permalink / raw)
To: Olivier Matz; +Cc: dev, Ray Kinsella, Didier Pallard
On Fri, Sep 24, 2021 at 3:02 PM Olivier Matz <olivier.matz@6wind.com> wrote:
>
> This function is public since commit 8f0e4d6a78a5 ("net: export IPv6
> header extensions skip function") (2018), and is used by vmxnet3 driver.
> Promote it as stable.
>
> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
Acked-by: David Marchand <david.marchand@redhat.com>
--
David Marchand
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] net: promote ip6 external headers skip API as stable
2021-10-02 9:40 ` David Marchand
@ 2021-10-07 16:25 ` Kinsella, Ray
2021-10-13 10:57 ` Thomas Monjalon
0 siblings, 1 reply; 4+ messages in thread
From: Kinsella, Ray @ 2021-10-07 16:25 UTC (permalink / raw)
To: David Marchand, Olivier Matz; +Cc: dev, Didier Pallard
On 02/10/2021 10:40, David Marchand wrote:
> On Fri, Sep 24, 2021 at 3:02 PM Olivier Matz <olivier.matz@6wind.com> wrote:
>>
>> This function is public since commit 8f0e4d6a78a5 ("net: export IPv6
>> header extensions skip function") (2018), and is used by vmxnet3 driver.
>> Promote it as stable.
>>
>> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
>
> Acked-by: David Marchand <david.marchand@redhat.com>
>
Acked-by: Ray Kinsella <mdr@ashroe.eu>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] net: promote ip6 external headers skip API as stable
2021-10-07 16:25 ` Kinsella, Ray
@ 2021-10-13 10:57 ` Thomas Monjalon
0 siblings, 0 replies; 4+ messages in thread
From: Thomas Monjalon @ 2021-10-13 10:57 UTC (permalink / raw)
To: David Marchand, Olivier Matz; +Cc: dev, Didier Pallard, Kinsella, Ray
07/10/2021 18:25, Kinsella, Ray:
>
> On 02/10/2021 10:40, David Marchand wrote:
> > On Fri, Sep 24, 2021 at 3:02 PM Olivier Matz <olivier.matz@6wind.com> wrote:
> >>
> >> This function is public since commit 8f0e4d6a78a5 ("net: export IPv6
> >> header extensions skip function") (2018), and is used by vmxnet3 driver.
> >> Promote it as stable.
> >>
> >> Signed-off-by: Olivier Matz <olivier.matz@6wind.com>
> > Acked-by: David Marchand <david.marchand@redhat.com>
> Acked-by: Ray Kinsella <mdr@ashroe.eu>
Rebased and applied, thanks.
It was the last experimental symbol in librte_net,
so I completely removed the EXPERIMENTAL block from the .map file.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2021-10-13 10:57 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-24 13:01 [dpdk-dev] [PATCH] net: promote ip6 external headers skip API as stable Olivier Matz
2021-10-02 9:40 ` David Marchand
2021-10-07 16:25 ` Kinsella, Ray
2021-10-13 10:57 ` Thomas Monjalon
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).