DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] doc: announce support for MACsec in rte_security
@ 2022-06-28 19:08 Akhil Goyal
  2022-06-29  3:37 ` Hemant Agrawal
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Akhil Goyal @ 2022-06-28 19:08 UTC (permalink / raw)
  To: dev
  Cc: thomas, david.marchand, hemant.agrawal, anoobj,
	konstantin.v.ananyev, ferruh.yigit, andrew.rybchenko,
	ndabilpuram, vattunuru, matan, roy.fan.zhang, jerinj, jiawenwu,
	qiming.yang, Akhil Goyal

MACsec support is planned for DPDK 22.11, which would
result in ABI breakage in some of the rte_security structures.
This patch is to give deprecation notice for the affected structures.

Signed-off-by: Akhil Goyal <gakhil@marvell.com>
---
 doc/guides/rel_notes/deprecation.rst | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 4e5b23c53d..1c3bf54d72 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -116,6 +116,11 @@ Deprecation Notices
   pointer for the private data to the application which can be attached
   to the packet while enqueuing.
 
+* security: MACsec support is planned to be added in DPDK 22.11 which would
+  result in updates to structures ``rte_security_macsec_xform``,
+  ``rte_security_macsec_stats`` and security capability structure
+  ``rte_security_capability`` to accomodate MACsec capabilities.
+
 * metrics: The function ``rte_metrics_init`` will have a non-void return
   in order to notify errors instead of calling ``rte_exit``.
 
-- 
2.25.1


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

* Re: [PATCH] doc: announce support for MACsec in rte_security
  2022-06-28 19:08 [PATCH] doc: announce support for MACsec in rte_security Akhil Goyal
@ 2022-06-29  3:37 ` Hemant Agrawal
  2022-06-29  7:40 ` Zhang, Roy Fan
  2022-07-17  9:56 ` Thomas Monjalon
  2 siblings, 0 replies; 5+ messages in thread
From: Hemant Agrawal @ 2022-06-29  3:37 UTC (permalink / raw)
  To: Akhil Goyal, dev
  Cc: thomas, david.marchand, hemant.agrawal, anoobj,
	konstantin.v.ananyev, ferruh.yigit, andrew.rybchenko,
	ndabilpuram, vattunuru, matan, roy.fan.zhang, jerinj, jiawenwu,
	qiming.yang


On 6/29/2022 12:38 AM, Akhil Goyal wrote:
> MACsec support is planned for DPDK 22.11, which would
> result in ABI breakage in some of the rte_security structures.
> This patch is to give deprecation notice for the affected structures.
>
> Signed-off-by: Akhil Goyal <gakhil@marvell.com>
> ---
>   doc/guides/rel_notes/deprecation.rst | 5 +++++
>   1 file changed, 5 insertions(+)
>
> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> index 4e5b23c53d..1c3bf54d72 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -116,6 +116,11 @@ Deprecation Notices
>     pointer for the private data to the application which can be attached
>     to the packet while enqueuing.
>   
> +* security: MACsec support is planned to be added in DPDK 22.11 which would
> +  result in updates to structures ``rte_security_macsec_xform``,
> +  ``rte_security_macsec_stats`` and security capability structure
> +  ``rte_security_capability`` to accomodate MACsec capabilities.
> +
>   * metrics: The function ``rte_metrics_init`` will have a non-void return
>     in order to notify errors instead of calling ``rte_exit``.
>   
Acked-by:  Hemant Agrawal <hemant.agrawal@nxp.com>

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

* RE: [PATCH] doc: announce support for MACsec in rte_security
  2022-06-28 19:08 [PATCH] doc: announce support for MACsec in rte_security Akhil Goyal
  2022-06-29  3:37 ` Hemant Agrawal
@ 2022-06-29  7:40 ` Zhang, Roy Fan
  2022-07-11 15:00   ` Jerin Jacob
  2022-07-17  9:56 ` Thomas Monjalon
  2 siblings, 1 reply; 5+ messages in thread
From: Zhang, Roy Fan @ 2022-06-29  7:40 UTC (permalink / raw)
  To: Akhil Goyal, dev
  Cc: thomas, david.marchand, hemant.agrawal, anoobj,
	konstantin.v.ananyev, ferruh.yigit, andrew.rybchenko,
	ndabilpuram, vattunuru, matan, jerinj, jiawenwu, Yang, Qiming

> -----Original Message-----
> From: Akhil Goyal <gakhil@marvell.com>
> Sent: Tuesday, June 28, 2022 8:08 PM
> To: dev@dpdk.org
> Cc: thomas@monjalon.net; david.marchand@redhat.com;
> hemant.agrawal@nxp.com; anoobj@marvell.com;
> konstantin.v.ananyev@yandex.ru; ferruh.yigit@xilinx.com;
> andrew.rybchenko@oktetlabs.ru; ndabilpuram@marvell.com;
> vattunuru@marvell.com; matan@nvidia.com; Zhang, Roy Fan
> <roy.fan.zhang@intel.com>; jerinj@marvell.com; jiawenwu@trustnetic.com;
> Yang, Qiming <qiming.yang@intel.com>; Akhil Goyal <gakhil@marvell.com>
> Subject: [PATCH] doc: announce support for MACsec in rte_security
> 
> MACsec support is planned for DPDK 22.11, which would
> result in ABI breakage in some of the rte_security structures.
> This patch is to give deprecation notice for the affected structures.
> 
> Signed-off-by: Akhil Goyal <gakhil@marvell.com>
> ---
>  doc/guides/rel_notes/deprecation.rst | 5 +++++
>  1 file changed, 5 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> index 4e5b23c53d..1c3bf54d72 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -116,6 +116,11 @@ Deprecation Notices
>    pointer for the private data to the application which can be attached
>    to the packet while enqueuing.
> 
> +* security: MACsec support is planned to be added in DPDK 22.11 which
> would
> +  result in updates to structures ``rte_security_macsec_xform``,
> +  ``rte_security_macsec_stats`` and security capability structure
> +  ``rte_security_capability`` to accomodate MACsec capabilities.
> +
>  * metrics: The function ``rte_metrics_init`` will have a non-void return
>    in order to notify errors instead of calling ``rte_exit``.
> 
> --
> 2.25.1
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>

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

* Re: [PATCH] doc: announce support for MACsec in rte_security
  2022-06-29  7:40 ` Zhang, Roy Fan
@ 2022-07-11 15:00   ` Jerin Jacob
  0 siblings, 0 replies; 5+ messages in thread
From: Jerin Jacob @ 2022-07-11 15:00 UTC (permalink / raw)
  To: Zhang, Roy Fan
  Cc: Akhil Goyal, dev, thomas, david.marchand, hemant.agrawal, anoobj,
	konstantin.v.ananyev, ferruh.yigit, andrew.rybchenko,
	ndabilpuram, vattunuru, matan, jerinj, jiawenwu, Yang, Qiming

On Wed, Jun 29, 2022 at 1:10 PM Zhang, Roy Fan <roy.fan.zhang@intel.com> wrote:
>
> > -----Original Message-----
> > From: Akhil Goyal <gakhil@marvell.com>
> > Sent: Tuesday, June 28, 2022 8:08 PM
> > To: dev@dpdk.org
> > Cc: thomas@monjalon.net; david.marchand@redhat.com;
> > hemant.agrawal@nxp.com; anoobj@marvell.com;
> > konstantin.v.ananyev@yandex.ru; ferruh.yigit@xilinx.com;
> > andrew.rybchenko@oktetlabs.ru; ndabilpuram@marvell.com;
> > vattunuru@marvell.com; matan@nvidia.com; Zhang, Roy Fan
> > <roy.fan.zhang@intel.com>; jerinj@marvell.com; jiawenwu@trustnetic.com;
> > Yang, Qiming <qiming.yang@intel.com>; Akhil Goyal <gakhil@marvell.com>
> > Subject: [PATCH] doc: announce support for MACsec in rte_security
> >
> > MACsec support is planned for DPDK 22.11, which would
> > result in ABI breakage in some of the rte_security structures.
> > This patch is to give deprecation notice for the affected structures.
> >
> > Signed-off-by: Akhil Goyal <gakhil@marvell.com>
> > ---
> >  doc/guides/rel_notes/deprecation.rst | 5 +++++
> >  1 file changed, 5 insertions(+)
> >
> > diff --git a/doc/guides/rel_notes/deprecation.rst
> > b/doc/guides/rel_notes/deprecation.rst
> > index 4e5b23c53d..1c3bf54d72 100644
> > --- a/doc/guides/rel_notes/deprecation.rst
> > +++ b/doc/guides/rel_notes/deprecation.rst
> > @@ -116,6 +116,11 @@ Deprecation Notices
> >    pointer for the private data to the application which can be attached
> >    to the packet while enqueuing.
> >
> > +* security: MACsec support is planned to be added in DPDK 22.11 which
> > would
> > +  result in updates to structures ``rte_security_macsec_xform``,
> > +  ``rte_security_macsec_stats`` and security capability structure
> > +  ``rte_security_capability`` to accomodate MACsec capabilities.
> > +
> >  * metrics: The function ``rte_metrics_init`` will have a non-void return
> >    in order to notify errors instead of calling ``rte_exit``.
> >
> > --
> > 2.25.1
> Acked-by: Fan Zhang <roy.fan.zhang@intel.com>

Acked-by: Jerin Jacob <jerinj@marvell.com>

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

* Re: [PATCH] doc: announce support for MACsec in rte_security
  2022-06-28 19:08 [PATCH] doc: announce support for MACsec in rte_security Akhil Goyal
  2022-06-29  3:37 ` Hemant Agrawal
  2022-06-29  7:40 ` Zhang, Roy Fan
@ 2022-07-17  9:56 ` Thomas Monjalon
  2 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2022-07-17  9:56 UTC (permalink / raw)
  To: Akhil Goyal
  Cc: dev, david.marchand, hemant.agrawal, anoobj,
	konstantin.v.ananyev, ferruh.yigit, andrew.rybchenko,
	ndabilpuram, vattunuru, matan, roy.fan.zhang, jerinj, jiawenwu,
	qiming.yang

28/06/2022 21:08, Akhil Goyal:
> MACsec support is planned for DPDK 22.11, which would
> result in ABI breakage in some of the rte_security structures.
> This patch is to give deprecation notice for the affected structures.
> 
> Signed-off-by: Akhil Goyal <gakhil@marvell.com>

    Acked-by: Hemant Agrawal <hemant.agrawal@nxp.com>
    Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
    Acked-by: Jerin Jacob <jerinj@marvell.com>

Applied, thanks.



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

end of thread, other threads:[~2022-07-17  9:56 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-28 19:08 [PATCH] doc: announce support for MACsec in rte_security Akhil Goyal
2022-06-29  3:37 ` Hemant Agrawal
2022-06-29  7:40 ` Zhang, Roy Fan
2022-07-11 15:00   ` Jerin Jacob
2022-07-17  9:56 ` 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).