All of lore.kernel.org
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: announce IPsec xform struct changes
@ 2021-08-03  6:48 Anoob Joseph
  2021-08-04 17:01 ` Akhil Goyal
  0 siblings, 1 reply; 5+ messages in thread
From: Anoob Joseph @ 2021-08-03  6:48 UTC (permalink / raw)
  To: Akhil Goyal, Declan Doherty, Fan Zhang, Konstantin Ananyev
  Cc: Anoob Joseph, Jerin Jacob, Archana Muniganti, Tejasree Kondoj,
	Hemant Agrawal, Radu Nicolau, dev

IPsec xform struct would be updated to include IPsec SA lifetime
configuration. The existing member 'esn_soft_limit' would only track
ESN. And as sequence number control is getting introduced,
'esn_soft_limit' may not indicate the number of packets processed.
Replace that with a new structure to cover all lifetime cases with
support for specifying both soft and hard lifetimes.

ESN control introduced by: http://patches.dpdk.org/project/dpdk/patch/20210713133542.3550525-4-radu.nicolau@intel.com/

Signed-off-by: Anoob Joseph <anoobj@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 6a35c76..7dbc088 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -151,3 +151,8 @@ Deprecation Notices
 * security: The functions ``rte_security_set_pkt_metadata`` and
   ``rte_security_get_userdata`` will be made inline functions and additional
   flags will be added in structure ``rte_security_ctx`` in DPDK 21.11.
+
+* security: The IPsec configuration structure
+  ``struct rte_security_ipsec_xform`` will be updated with new members to allow
+  SA lifetime configuration. A new structure would be introduced to replace the
+  current member, ``esn_soft_limit``.
-- 
2.7.4


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

* Re: [dpdk-dev] [PATCH] doc: announce IPsec xform struct changes
  2021-08-03  6:48 [dpdk-dev] [PATCH] doc: announce IPsec xform struct changes Anoob Joseph
@ 2021-08-04 17:01 ` Akhil Goyal
  2021-08-04 17:35   ` Ananyev, Konstantin
  0 siblings, 1 reply; 5+ messages in thread
From: Akhil Goyal @ 2021-08-04 17:01 UTC (permalink / raw)
  To: Anoob Joseph, Declan Doherty, Fan Zhang, Konstantin Ananyev,
	Hemant Agrawal
  Cc: Anoob Joseph, Jerin Jacob Kollanukkaran, Archana Muniganti,
	Tejasree Kondoj, Radu Nicolau, dev

> IPsec xform struct would be updated to include IPsec SA lifetime
> configuration. The existing member 'esn_soft_limit' would only track
> ESN. And as sequence number control is getting introduced,
> 'esn_soft_limit' may not indicate the number of packets processed.
> Replace that with a new structure to cover all lifetime cases with
> support for specifying both soft and hard lifetimes.
> 
> ESN control introduced by:
> http://patches.dpdk.org/project/dpdk/patch/20210713133542.3550525-4-
> radu.nicolau@intel.com/
> 
> Signed-off-by: Anoob Joseph <anoobj@marvell.com>
> ---
Acked-by: Akhil Goyal <gakhil@marvell.com>

@Konstantin Ananyev, @Hemant Agrawal: Could you please Ack.

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

* Re: [dpdk-dev] [PATCH] doc: announce IPsec xform struct changes
  2021-08-04 17:01 ` Akhil Goyal
@ 2021-08-04 17:35   ` Ananyev, Konstantin
  2021-08-07 13:32     ` Jerin Jacob
  0 siblings, 1 reply; 5+ messages in thread
From: Ananyev, Konstantin @ 2021-08-04 17:35 UTC (permalink / raw)
  To: Akhil Goyal, Anoob Joseph, Doherty, Declan, Zhang, Roy Fan,
	Hemant Agrawal
  Cc: Anoob Joseph, Jerin Jacob Kollanukkaran, Archana Muniganti,
	Tejasree Kondoj, Nicolau, Radu, dev



> > IPsec xform struct would be updated to include IPsec SA lifetime
> > configuration. The existing member 'esn_soft_limit' would only track
> > ESN. And as sequence number control is getting introduced,
> > 'esn_soft_limit' may not indicate the number of packets processed.
> > Replace that with a new structure to cover all lifetime cases with
> > support for specifying both soft and hard lifetimes.
> >
> > ESN control introduced by:
> > http://patches.dpdk.org/project/dpdk/patch/20210713133542.3550525-4-
> > radu.nicolau@intel.com/
> >
> > Signed-off-by: Anoob Joseph <anoobj@marvell.com>
> > ---
> Acked-by: Akhil Goyal <gakhil@marvell.com>
> 

Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

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

* Re: [dpdk-dev] [PATCH] doc: announce IPsec xform struct changes
  2021-08-04 17:35   ` Ananyev, Konstantin
@ 2021-08-07 13:32     ` Jerin Jacob
  2021-08-07 17:13       ` Thomas Monjalon
  0 siblings, 1 reply; 5+ messages in thread
From: Jerin Jacob @ 2021-08-07 13:32 UTC (permalink / raw)
  To: Ananyev, Konstantin
  Cc: Akhil Goyal, Anoob Joseph, Doherty, Declan, Zhang, Roy Fan,
	Hemant Agrawal, Jerin Jacob Kollanukkaran, Archana Muniganti,
	Tejasree Kondoj, Nicolau, Radu, dev

On Wed, Aug 4, 2021 at 11:05 PM Ananyev, Konstantin
<konstantin.ananyev@intel.com> wrote:
>
>
>
> > > IPsec xform struct would be updated to include IPsec SA lifetime
> > > configuration. The existing member 'esn_soft_limit' would only track
> > > ESN. And as sequence number control is getting introduced,
> > > 'esn_soft_limit' may not indicate the number of packets processed.
> > > Replace that with a new structure to cover all lifetime cases with
> > > support for specifying both soft and hard lifetimes.
> > >
> > > ESN control introduced by:
> > > http://patches.dpdk.org/project/dpdk/patch/20210713133542.3550525-4-
> > > radu.nicolau@intel.com/
> > >
> > > Signed-off-by: Anoob Joseph <anoobj@marvell.com>
> > > ---
> > Acked-by: Akhil Goyal <gakhil@marvell.com>
> >
>
> Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

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

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

* Re: [dpdk-dev] [PATCH] doc: announce IPsec xform struct changes
  2021-08-07 13:32     ` Jerin Jacob
@ 2021-08-07 17:13       ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2021-08-07 17:13 UTC (permalink / raw)
  To: Anoob Joseph
  Cc: Ananyev, Konstantin, dev, Akhil Goyal, Doherty, Declan, Zhang,
	Roy Fan, Hemant Agrawal, Jerin Jacob Kollanukkaran,
	Archana Muniganti, Tejasree Kondoj, Nicolau, Radu, dev,
	Jerin Jacob

> > > > IPsec xform struct would be updated to include IPsec SA lifetime
> > > > configuration. The existing member 'esn_soft_limit' would only track
> > > > ESN. And as sequence number control is getting introduced,
> > > > 'esn_soft_limit' may not indicate the number of packets processed.
> > > > Replace that with a new structure to cover all lifetime cases with
> > > > support for specifying both soft and hard lifetimes.
> > > >
> > > > ESN control introduced by:
> > > > http://patches.dpdk.org/project/dpdk/patch/20210713133542.3550525-4-
> > > > radu.nicolau@intel.com/
> > > >
> > > > Signed-off-by: Anoob Joseph <anoobj@marvell.com>
> > > Acked-by: Akhil Goyal <gakhil@marvell.com>
> > Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>
> Acked-by: Jerin Jacob <jerinj@marvell.com>

That's a lot of acks from Marvell but looks OK.

Applied, thanks.



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

end of thread, other threads:[~2021-08-07 17:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-03  6:48 [dpdk-dev] [PATCH] doc: announce IPsec xform struct changes Anoob Joseph
2021-08-04 17:01 ` Akhil Goyal
2021-08-04 17:35   ` Ananyev, Konstantin
2021-08-07 13:32     ` Jerin Jacob
2021-08-07 17:13       ` Thomas Monjalon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.