DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] common/octeontx2: update version map
@ 2020-02-10 10:27 Anoob Joseph
  2020-02-11 14:04 ` David Marchand
  0 siblings, 1 reply; 2+ messages in thread
From: Anoob Joseph @ 2020-02-10 10:27 UTC (permalink / raw)
  To: Akhil Goyal, Jerin Jacob, Thomas Monjalon
  Cc: Anoob Joseph, Narayana Prasad, dev

Move symbols added in 20.02 release to DPDK_20.0.1 ABI.

Fixes: d06551535a09 ("common/octeontx2: add security capability routine")
Fixes: 3fe4d07d1678 ("crypto/octeontx2: enable CPT to share QP with ethdev")
Fixes: f44e71637755 ("net/octeontx2: add security session operations")

Signed-off-by: Anoob Joseph <anoobj@marvell.com>
---
 .../common/octeontx2/rte_common_octeontx2_version.map   | 17 +++++++++++------
 1 file changed, 11 insertions(+), 6 deletions(-)

diff --git a/drivers/common/octeontx2/rte_common_octeontx2_version.map b/drivers/common/octeontx2/rte_common_octeontx2_version.map
index 19a7b19..a25fc69 100644
--- a/drivers/common/octeontx2/rte_common_octeontx2_version.map
+++ b/drivers/common/octeontx2/rte_common_octeontx2_version.map
@@ -5,7 +5,6 @@ DPDK_20.0 {
 	otx2_dev_fini;
 	otx2_dev_priv_init;
 	otx2_disable_irqs;
-	otx2_eth_dev_is_sec_capable;
 	otx2_intra_dev_get_cfg;
 	otx2_logtype_base;
 	otx2_logtype_dpi;
@@ -28,11 +27,6 @@ DPDK_20.0 {
 	otx2_npa_pf_func_get;
 	otx2_npa_set_defaults;
 	otx2_register_irq;
-	otx2_sec_idev_cfg_init;
-	otx2_sec_idev_tx_cpt_qp_add;
-	otx2_sec_idev_tx_cpt_qp_remove;
-	otx2_sec_idev_tx_cpt_qp_get;
-	otx2_sec_idev_tx_cpt_qp_put;
 	otx2_sso_pf_func_get;
 	otx2_sso_pf_func_set;
 	otx2_unregister_irq;
@@ -40,6 +34,17 @@ DPDK_20.0 {
 	local: *;
 };
 
+DPDK_20.0.1 {
+	global:
+
+	otx2_eth_dev_is_sec_capable;
+	otx2_sec_idev_cfg_init;
+	otx2_sec_idev_tx_cpt_qp_add;
+	otx2_sec_idev_tx_cpt_qp_remove;
+	otx2_sec_idev_tx_cpt_qp_get;
+	otx2_sec_idev_tx_cpt_qp_put;
+};
+
 EXPERIMENTAL {
 	global:
 
-- 
2.7.4


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dpdk-dev] [PATCH] common/octeontx2: update version map
  2020-02-10 10:27 [dpdk-dev] [PATCH] common/octeontx2: update version map Anoob Joseph
@ 2020-02-11 14:04 ` David Marchand
  0 siblings, 0 replies; 2+ messages in thread
From: David Marchand @ 2020-02-11 14:04 UTC (permalink / raw)
  To: Anoob Joseph
  Cc: Akhil Goyal, Jerin Jacob, Thomas Monjalon, Narayana Prasad, dev

On Mon, Feb 10, 2020 at 11:28 AM Anoob Joseph <anoobj@marvell.com> wrote:
>
> Move symbols added in 20.02 release to DPDK_20.0.1 ABI.
>
> Fixes: d06551535a09 ("common/octeontx2: add security capability routine")
> Fixes: 3fe4d07d1678 ("crypto/octeontx2: enable CPT to share QP with ethdev")
> Fixes: f44e71637755 ("net/octeontx2: add security session operations")
>
> Signed-off-by: Anoob Joseph <anoobj@marvell.com>

Small fix below.
Acked-by: David Marchand <david.marchand@redhat.com>


> ---
>  .../common/octeontx2/rte_common_octeontx2_version.map   | 17 +++++++++++------
>  1 file changed, 11 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/common/octeontx2/rte_common_octeontx2_version.map b/drivers/common/octeontx2/rte_common_octeontx2_version.map
> index 19a7b19..a25fc69 100644
> --- a/drivers/common/octeontx2/rte_common_octeontx2_version.map
> +++ b/drivers/common/octeontx2/rte_common_octeontx2_version.map
> @@ -5,7 +5,6 @@ DPDK_20.0 {
>         otx2_dev_fini;
>         otx2_dev_priv_init;
>         otx2_disable_irqs;
> -       otx2_eth_dev_is_sec_capable;
>         otx2_intra_dev_get_cfg;
>         otx2_logtype_base;
>         otx2_logtype_dpi;
> @@ -28,11 +27,6 @@ DPDK_20.0 {
>         otx2_npa_pf_func_get;
>         otx2_npa_set_defaults;
>         otx2_register_irq;
> -       otx2_sec_idev_cfg_init;
> -       otx2_sec_idev_tx_cpt_qp_add;
> -       otx2_sec_idev_tx_cpt_qp_remove;
> -       otx2_sec_idev_tx_cpt_qp_get;
> -       otx2_sec_idev_tx_cpt_qp_put;
>         otx2_sso_pf_func_get;
>         otx2_sso_pf_func_set;
>         otx2_unregister_irq;
> @@ -40,6 +34,17 @@ DPDK_20.0 {
>         local: *;
>  };
>
> +DPDK_20.0.1 {
> +       global:
> +
> +       otx2_eth_dev_is_sec_capable;
> +       otx2_sec_idev_cfg_init;
> +       otx2_sec_idev_tx_cpt_qp_add;
> +       otx2_sec_idev_tx_cpt_qp_remove;
> +       otx2_sec_idev_tx_cpt_qp_get;
> +       otx2_sec_idev_tx_cpt_qp_put;
> +};
> +

DPDK_20.0.1 must inherit from DPDK_20.0 node.
I fixed it.

Applied, thanks.


--
David Marchand


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-02-11 14:05 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-02-10 10:27 [dpdk-dev] [PATCH] common/octeontx2: update version map Anoob Joseph
2020-02-11 14:04 ` David Marchand

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).