DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] doc: add cryptodev xform deprecation notice
@ 2019-02-08 11:17 Fan Zhang
  2019-02-28 10:08 ` Akhil Goyal
  2019-03-01 10:46 ` [dpdk-dev] [PATCH v2] " Fan Zhang
  0 siblings, 2 replies; 20+ messages in thread
From: Fan Zhang @ 2019-02-08 11:17 UTC (permalink / raw)
  To: dev; +Cc: roy.fan.zhang

This patch adds the deprecation notice of changing Cryptodev
symmetric xform structure for DPDK 19.05.

Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
---
 doc/guides/rel_notes/deprecation.rst | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 1b4fcb7e6..5166d6eb5 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -75,3 +75,9 @@ Deprecation Notices
 
 * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
   changed from 0.49.0 to 0.52.0.
+
+* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
+  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
+  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data`` in
+  19.05. The structure ``rte_table_action_sym_crypto_params`` in pipeline
+  library will be updated accordingly.
-- 
2.14.5

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

* Re: [dpdk-dev] [PATCH] doc: add cryptodev xform deprecation notice
  2019-02-08 11:17 [dpdk-dev] [PATCH] doc: add cryptodev xform deprecation notice Fan Zhang
@ 2019-02-28 10:08 ` Akhil Goyal
  2019-02-28 11:27   ` Zhang, Roy Fan
  2019-03-01 10:46 ` [dpdk-dev] [PATCH v2] " Fan Zhang
  1 sibling, 1 reply; 20+ messages in thread
From: Akhil Goyal @ 2019-02-28 10:08 UTC (permalink / raw)
  To: Fan Zhang, dev

Hi Fan,

On 2/8/2019 4:47 PM, Fan Zhang wrote:
> This patch adds the deprecation notice of changing Cryptodev
> symmetric xform structure for DPDK 19.05.
It would be better if a need of this change is explained in the 
description of the patch and I believe the change will be accepted for 
19.08 release and not 19.05.
>
> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
> ---
>   doc/guides/rel_notes/deprecation.rst | 6 ++++++
>   1 file changed, 6 insertions(+)
>
> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> index 1b4fcb7e6..5166d6eb5 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -75,3 +75,9 @@ Deprecation Notices
>   
>   * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>     changed from 0.49.0 to 0.52.0.
> +
> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data`` in
> +  19.05. The structure ``rte_table_action_sym_crypto_params`` in pipeline
> +  library will be updated accordingly.


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

* Re: [dpdk-dev] [PATCH] doc: add cryptodev xform deprecation notice
  2019-02-28 10:08 ` Akhil Goyal
@ 2019-02-28 11:27   ` Zhang, Roy Fan
  0 siblings, 0 replies; 20+ messages in thread
From: Zhang, Roy Fan @ 2019-02-28 11:27 UTC (permalink / raw)
  To: Akhil Goyal, dev; +Cc: Yigit, Ferruh

Hi,

The reason of this change is for a more formal API for cryptodev. Since the
key is for creating session and not meant to be modified by the driver.

The patch is finished I am doing some last checks. Is there any reason to
delay the patch for 19.08?

Regards,
Fan

> -----Original Message-----
> From: Akhil Goyal [mailto:akhil.goyal@nxp.com]
> Sent: Thursday, February 28, 2019 10:08 AM
> To: Zhang, Roy Fan <roy.fan.zhang@intel.com>; dev@dpdk.org
> Subject: Re: [dpdk-dev] [PATCH] doc: add cryptodev xform deprecation
> notice
> 
> Hi Fan,
> 
> On 2/8/2019 4:47 PM, Fan Zhang wrote:
> > This patch adds the deprecation notice of changing Cryptodev symmetric
> > xform structure for DPDK 19.05.
> It would be better if a need of this change is explained in the description of
> the patch and I believe the change will be accepted for
> 19.08 release and not 19.05.
> >
> > Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
> > ---
> >   doc/guides/rel_notes/deprecation.rst | 6 ++++++
> >   1 file changed, 6 insertions(+)
> >
> > diff --git a/doc/guides/rel_notes/deprecation.rst
> > b/doc/guides/rel_notes/deprecation.rst
> > index 1b4fcb7e6..5166d6eb5 100644
> > --- a/doc/guides/rel_notes/deprecation.rst
> > +++ b/doc/guides/rel_notes/deprecation.rst
> > @@ -75,3 +75,9 @@ Deprecation Notices
> >
> >   * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version
> will be
> >     changed from 0.49.0 to 0.52.0.
> > +
> > +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the
> > +xforms
> > +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``,
> > +and
> > +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t
> > +*data`` in
> > +  19.05. The structure ``rte_table_action_sym_crypto_params`` in
> > +pipeline
> > +  library will be updated accordingly.


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

* [dpdk-dev] [PATCH v2] doc: add cryptodev xform deprecation notice
  2019-02-08 11:17 [dpdk-dev] [PATCH] doc: add cryptodev xform deprecation notice Fan Zhang
  2019-02-28 10:08 ` Akhil Goyal
@ 2019-03-01 10:46 ` Fan Zhang
  2019-03-22 16:34   ` [dpdk-dev] [PATCH v3] " Fan Zhang
  1 sibling, 1 reply; 20+ messages in thread
From: Fan Zhang @ 2019-03-01 10:46 UTC (permalink / raw)
  To: dev; +Cc: akhil.goyal, roy.fan.zhang

This patch adds the deprecation notice of changing Cryptodev
symmetric xform structure. The proposed change is to making
key pointers in the crypto xforms (cipher, auth, aead) to
indicate neither the library or the drivers will not change
the content of the key buffer.

Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
---
v2:
- updated description to the patch.

 doc/guides/rel_notes/deprecation.rst | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 1b4fcb7e6..5166d6eb5 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -75,3 +75,9 @@ Deprecation Notices
 
 * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
   changed from 0.49.0 to 0.52.0.
+
+* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
+  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
+  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data`` in
+  19.05. The structure ``rte_table_action_sym_crypto_params`` in pipeline
+  library will be updated accordingly.
-- 
2.14.5

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

* [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-01 10:46 ` [dpdk-dev] [PATCH v2] " Fan Zhang
@ 2019-03-22 16:34   ` Fan Zhang
  2019-03-22 16:34     ` Fan Zhang
                       ` (3 more replies)
  0 siblings, 4 replies; 20+ messages in thread
From: Fan Zhang @ 2019-03-22 16:34 UTC (permalink / raw)
  To: dev
  Cc: akhil.goyal, roy.fan.zhang, arkadiuszx.kusztal,
	pablo.de.lara.guarch, declan.doherty, fiona.trahe

This patch adds the deprecation notice of changing Cryptodev
symmetric xform structure. The proposed change is to making
key pointers in the crypto xforms (cipher, auth, aead) to
indicate neither the library or the drivers will not change
the content of the key buffer.

Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
---
v3:
- Removed target release.

v2:
- Added description.

 doc/guides/rel_notes/deprecation.rst | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 1b4fcb7e6..f35ac5b96 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -75,3 +75,7 @@ Deprecation Notices
 
 * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
   changed from 0.49.0 to 0.52.0.
+
+* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
+  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
+  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
-- 
2.14.5

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

* [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-22 16:34   ` [dpdk-dev] [PATCH v3] " Fan Zhang
@ 2019-03-22 16:34     ` Fan Zhang
  2019-03-29 13:59     ` Akhil Goyal
                       ` (2 subsequent siblings)
  3 siblings, 0 replies; 20+ messages in thread
From: Fan Zhang @ 2019-03-22 16:34 UTC (permalink / raw)
  To: dev
  Cc: akhil.goyal, roy.fan.zhang, arkadiuszx.kusztal,
	pablo.de.lara.guarch, declan.doherty, fiona.trahe

This patch adds the deprecation notice of changing Cryptodev
symmetric xform structure. The proposed change is to making
key pointers in the crypto xforms (cipher, auth, aead) to
indicate neither the library or the drivers will not change
the content of the key buffer.

Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
---
v3:
- Removed target release.

v2:
- Added description.

 doc/guides/rel_notes/deprecation.rst | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
index 1b4fcb7e6..f35ac5b96 100644
--- a/doc/guides/rel_notes/deprecation.rst
+++ b/doc/guides/rel_notes/deprecation.rst
@@ -75,3 +75,7 @@ Deprecation Notices
 
 * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
   changed from 0.49.0 to 0.52.0.
+
+* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
+  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
+  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
-- 
2.14.5


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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-22 16:34   ` [dpdk-dev] [PATCH v3] " Fan Zhang
  2019-03-22 16:34     ` Fan Zhang
@ 2019-03-29 13:59     ` Akhil Goyal
  2019-03-29 13:59       ` Akhil Goyal
  2019-03-29 14:15       ` Akhil Goyal
  2019-04-01 16:29     ` Trahe, Fiona
  2019-04-03  9:11     ` Anoob Joseph
  3 siblings, 2 replies; 20+ messages in thread
From: Akhil Goyal @ 2019-03-29 13:59 UTC (permalink / raw)
  To: Fan Zhang, dev
  Cc: arkadiuszx.kusztal, pablo.de.lara.guarch, declan.doherty, fiona.trahe



On 3/22/2019 10:04 PM, Fan Zhang wrote:
> This patch adds the deprecation notice of changing Cryptodev
> symmetric xform structure. The proposed change is to making
> key pointers in the crypto xforms (cipher, auth, aead) to
> indicate neither the library or the drivers will not change
> the content of the key buffer.
>
> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
> ---
> v3:
> - Removed target release.
>
> v2:
> - Added description.
>
>   doc/guides/rel_notes/deprecation.rst | 4 ++++
>   1 file changed, 4 insertions(+)
>
> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> index 1b4fcb7e6..f35ac5b96 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -75,3 +75,7 @@ Deprecation Notices
>   
>   * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>     changed from 0.49.0 to 0.52.0.
> +
> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
Acked-by: Akhil Goyal <akhil.goyal@nxp.com>

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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 13:59     ` Akhil Goyal
@ 2019-03-29 13:59       ` Akhil Goyal
  2019-03-29 14:15       ` Akhil Goyal
  1 sibling, 0 replies; 20+ messages in thread
From: Akhil Goyal @ 2019-03-29 13:59 UTC (permalink / raw)
  To: Fan Zhang, dev
  Cc: arkadiuszx.kusztal, pablo.de.lara.guarch, declan.doherty, fiona.trahe



On 3/22/2019 10:04 PM, Fan Zhang wrote:
> This patch adds the deprecation notice of changing Cryptodev
> symmetric xform structure. The proposed change is to making
> key pointers in the crypto xforms (cipher, auth, aead) to
> indicate neither the library or the drivers will not change
> the content of the key buffer.
>
> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
> ---
> v3:
> - Removed target release.
>
> v2:
> - Added description.
>
>   doc/guides/rel_notes/deprecation.rst | 4 ++++
>   1 file changed, 4 insertions(+)
>
> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> index 1b4fcb7e6..f35ac5b96 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -75,3 +75,7 @@ Deprecation Notices
>   
>   * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>     changed from 0.49.0 to 0.52.0.
> +
> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
Acked-by: Akhil Goyal <akhil.goyal@nxp.com>

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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 13:59     ` Akhil Goyal
  2019-03-29 13:59       ` Akhil Goyal
@ 2019-03-29 14:15       ` Akhil Goyal
  2019-03-29 14:15         ` Akhil Goyal
  2019-03-29 15:49         ` Akhil Goyal
  1 sibling, 2 replies; 20+ messages in thread
From: Akhil Goyal @ 2019-03-29 14:15 UTC (permalink / raw)
  To: Fan Zhang, dev, Thomas Monjalon
  Cc: arkadiuszx.kusztal, pablo.de.lara.guarch, declan.doherty, fiona.trahe



On 3/29/2019 7:29 PM, Akhil Goyal wrote:
>
> On 3/22/2019 10:04 PM, Fan Zhang wrote:
>> This patch adds the deprecation notice of changing Cryptodev
>> symmetric xform structure. The proposed change is to making
>> key pointers in the crypto xforms (cipher, auth, aead) to
>> indicate neither the library or the drivers will not change
>> the content of the key buffer.
>>
>> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
>> ---
>> v3:
>> - Removed target release.
>>
>> v2:
>> - Added description.
>>
>>    doc/guides/rel_notes/deprecation.rst | 4 ++++
>>    1 file changed, 4 insertions(+)
>>
>> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
>> index 1b4fcb7e6..f35ac5b96 100644
>> --- a/doc/guides/rel_notes/deprecation.rst
>> +++ b/doc/guides/rel_notes/deprecation.rst
>> @@ -75,3 +75,7 @@ Deprecation Notices
>>    
>>    * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>>      changed from 0.49.0 to 0.52.0.
>> +
>> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
>> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
>> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
delegated to master.
should be applied along with
http://patches.dpdk.org/patch/51395/



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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 14:15       ` Akhil Goyal
@ 2019-03-29 14:15         ` Akhil Goyal
  2019-03-29 15:49         ` Akhil Goyal
  1 sibling, 0 replies; 20+ messages in thread
From: Akhil Goyal @ 2019-03-29 14:15 UTC (permalink / raw)
  To: Fan Zhang, dev, Thomas Monjalon
  Cc: arkadiuszx.kusztal, pablo.de.lara.guarch, declan.doherty, fiona.trahe



On 3/29/2019 7:29 PM, Akhil Goyal wrote:
>
> On 3/22/2019 10:04 PM, Fan Zhang wrote:
>> This patch adds the deprecation notice of changing Cryptodev
>> symmetric xform structure. The proposed change is to making
>> key pointers in the crypto xforms (cipher, auth, aead) to
>> indicate neither the library or the drivers will not change
>> the content of the key buffer.
>>
>> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
>> ---
>> v3:
>> - Removed target release.
>>
>> v2:
>> - Added description.
>>
>>    doc/guides/rel_notes/deprecation.rst | 4 ++++
>>    1 file changed, 4 insertions(+)
>>
>> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
>> index 1b4fcb7e6..f35ac5b96 100644
>> --- a/doc/guides/rel_notes/deprecation.rst
>> +++ b/doc/guides/rel_notes/deprecation.rst
>> @@ -75,3 +75,7 @@ Deprecation Notices
>>    
>>    * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>>      changed from 0.49.0 to 0.52.0.
>> +
>> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
>> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
>> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
delegated to master.
should be applied along with
http://patches.dpdk.org/patch/51395/



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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 14:15       ` Akhil Goyal
  2019-03-29 14:15         ` Akhil Goyal
@ 2019-03-29 15:49         ` Akhil Goyal
  2019-03-29 15:49           ` Akhil Goyal
  2019-03-29 15:59           ` Akhil Goyal
  1 sibling, 2 replies; 20+ messages in thread
From: Akhil Goyal @ 2019-03-29 15:49 UTC (permalink / raw)
  To: Fan Zhang, dev, Thomas Monjalon
  Cc: arkadiuszx.kusztal, pablo.de.lara.guarch, declan.doherty, fiona.trahe



On 3/29/2019 7:45 PM, Akhil Goyal wrote:
>
> On 3/29/2019 7:29 PM, Akhil Goyal wrote:
>> On 3/22/2019 10:04 PM, Fan Zhang wrote:
>>> This patch adds the deprecation notice of changing Cryptodev
>>> symmetric xform structure. The proposed change is to making
>>> key pointers in the crypto xforms (cipher, auth, aead) to
>>> indicate neither the library or the drivers will not change
>>> the content of the key buffer.
>>>
>>> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
>>> ---
>>> v3:
>>> - Removed target release.
>>>
>>> v2:
>>> - Added description.
>>>
>>>     doc/guides/rel_notes/deprecation.rst | 4 ++++
>>>     1 file changed, 4 insertions(+)
>>>
>>> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
>>> index 1b4fcb7e6..f35ac5b96 100644
>>> --- a/doc/guides/rel_notes/deprecation.rst
>>> +++ b/doc/guides/rel_notes/deprecation.rst
>>> @@ -75,3 +75,7 @@ Deprecation Notices
>>>     
>>>     * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>>>       changed from 0.49.0 to 0.52.0.
>>> +
>>> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
>>> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
>>> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
>> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
> delegated to master.
> should be applied along with
> http://patches.dpdk.org/patch/51395/
>
Applied to dpdk-next-crypto
Thanks.


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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 15:49         ` Akhil Goyal
@ 2019-03-29 15:49           ` Akhil Goyal
  2019-03-29 15:59           ` Akhil Goyal
  1 sibling, 0 replies; 20+ messages in thread
From: Akhil Goyal @ 2019-03-29 15:49 UTC (permalink / raw)
  To: Fan Zhang, dev, Thomas Monjalon
  Cc: arkadiuszx.kusztal, pablo.de.lara.guarch, declan.doherty, fiona.trahe



On 3/29/2019 7:45 PM, Akhil Goyal wrote:
>
> On 3/29/2019 7:29 PM, Akhil Goyal wrote:
>> On 3/22/2019 10:04 PM, Fan Zhang wrote:
>>> This patch adds the deprecation notice of changing Cryptodev
>>> symmetric xform structure. The proposed change is to making
>>> key pointers in the crypto xforms (cipher, auth, aead) to
>>> indicate neither the library or the drivers will not change
>>> the content of the key buffer.
>>>
>>> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
>>> ---
>>> v3:
>>> - Removed target release.
>>>
>>> v2:
>>> - Added description.
>>>
>>>     doc/guides/rel_notes/deprecation.rst | 4 ++++
>>>     1 file changed, 4 insertions(+)
>>>
>>> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
>>> index 1b4fcb7e6..f35ac5b96 100644
>>> --- a/doc/guides/rel_notes/deprecation.rst
>>> +++ b/doc/guides/rel_notes/deprecation.rst
>>> @@ -75,3 +75,7 @@ Deprecation Notices
>>>     
>>>     * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>>>       changed from 0.49.0 to 0.52.0.
>>> +
>>> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
>>> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
>>> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
>> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
> delegated to master.
> should be applied along with
> http://patches.dpdk.org/patch/51395/
>
Applied to dpdk-next-crypto
Thanks.


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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 15:49         ` Akhil Goyal
  2019-03-29 15:49           ` Akhil Goyal
@ 2019-03-29 15:59           ` Akhil Goyal
  2019-03-29 15:59             ` Akhil Goyal
  2019-03-29 19:56             ` Thomas Monjalon
  1 sibling, 2 replies; 20+ messages in thread
From: Akhil Goyal @ 2019-03-29 15:59 UTC (permalink / raw)
  To: Fan Zhang, dev, Thomas Monjalon
  Cc: arkadiuszx.kusztal, pablo.de.lara.guarch, declan.doherty, fiona.trahe



On 3/29/2019 9:19 PM, Akhil Goyal wrote:
>
> On 3/29/2019 7:45 PM, Akhil Goyal wrote:
>> On 3/29/2019 7:29 PM, Akhil Goyal wrote:
>>> On 3/22/2019 10:04 PM, Fan Zhang wrote:
>>>> This patch adds the deprecation notice of changing Cryptodev
>>>> symmetric xform structure. The proposed change is to making
>>>> key pointers in the crypto xforms (cipher, auth, aead) to
>>>> indicate neither the library or the drivers will not change
>>>> the content of the key buffer.
>>>>
>>>> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
>>>> ---
>>>> v3:
>>>> - Removed target release.
>>>>
>>>> v2:
>>>> - Added description.
>>>>
>>>>      doc/guides/rel_notes/deprecation.rst | 4 ++++
>>>>      1 file changed, 4 insertions(+)
>>>>
>>>> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
>>>> index 1b4fcb7e6..f35ac5b96 100644
>>>> --- a/doc/guides/rel_notes/deprecation.rst
>>>> +++ b/doc/guides/rel_notes/deprecation.rst
>>>> @@ -75,3 +75,7 @@ Deprecation Notices
>>>>      
>>>>      * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>>>>        changed from 0.49.0 to 0.52.0.
>>>> +
>>>> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
>>>> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
>>>> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
>>> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
>> delegated to master.
>> should be applied along with
>> http://patches.dpdk.org/patch/51395/
>>
> Applied to dpdk-next-crypto
> Thanks.
>
This patch is proposing that there will be change in the xform 
structure(API breakage) and the change is happening in the same release. 
I suppose this is not allowed.

@Thomas: Could you please suggest if the deprecation notice should be 
added in this release and the changes in the next release?

As of now not taking this patch and the proposed changes in the drivers 
in RC1.

-Akhil

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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 15:59           ` Akhil Goyal
@ 2019-03-29 15:59             ` Akhil Goyal
  2019-03-29 19:56             ` Thomas Monjalon
  1 sibling, 0 replies; 20+ messages in thread
From: Akhil Goyal @ 2019-03-29 15:59 UTC (permalink / raw)
  To: Fan Zhang, dev, Thomas Monjalon
  Cc: arkadiuszx.kusztal, pablo.de.lara.guarch, declan.doherty, fiona.trahe



On 3/29/2019 9:19 PM, Akhil Goyal wrote:
>
> On 3/29/2019 7:45 PM, Akhil Goyal wrote:
>> On 3/29/2019 7:29 PM, Akhil Goyal wrote:
>>> On 3/22/2019 10:04 PM, Fan Zhang wrote:
>>>> This patch adds the deprecation notice of changing Cryptodev
>>>> symmetric xform structure. The proposed change is to making
>>>> key pointers in the crypto xforms (cipher, auth, aead) to
>>>> indicate neither the library or the drivers will not change
>>>> the content of the key buffer.
>>>>
>>>> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
>>>> ---
>>>> v3:
>>>> - Removed target release.
>>>>
>>>> v2:
>>>> - Added description.
>>>>
>>>>      doc/guides/rel_notes/deprecation.rst | 4 ++++
>>>>      1 file changed, 4 insertions(+)
>>>>
>>>> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
>>>> index 1b4fcb7e6..f35ac5b96 100644
>>>> --- a/doc/guides/rel_notes/deprecation.rst
>>>> +++ b/doc/guides/rel_notes/deprecation.rst
>>>> @@ -75,3 +75,7 @@ Deprecation Notices
>>>>      
>>>>      * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
>>>>        changed from 0.49.0 to 0.52.0.
>>>> +
>>>> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
>>>> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
>>>> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
>>> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
>> delegated to master.
>> should be applied along with
>> http://patches.dpdk.org/patch/51395/
>>
> Applied to dpdk-next-crypto
> Thanks.
>
This patch is proposing that there will be change in the xform 
structure(API breakage) and the change is happening in the same release. 
I suppose this is not allowed.

@Thomas: Could you please suggest if the deprecation notice should be 
added in this release and the changes in the next release?

As of now not taking this patch and the proposed changes in the drivers 
in RC1.

-Akhil

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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 15:59           ` Akhil Goyal
  2019-03-29 15:59             ` Akhil Goyal
@ 2019-03-29 19:56             ` Thomas Monjalon
  2019-03-29 19:56               ` Thomas Monjalon
  1 sibling, 1 reply; 20+ messages in thread
From: Thomas Monjalon @ 2019-03-29 19:56 UTC (permalink / raw)
  To: Akhil Goyal
  Cc: Fan Zhang, dev, arkadiuszx.kusztal, pablo.de.lara.guarch,
	declan.doherty, fiona.trahe

29/03/2019 16:59, Akhil Goyal:
> 
> On 3/29/2019 9:19 PM, Akhil Goyal wrote:
> >
> > On 3/29/2019 7:45 PM, Akhil Goyal wrote:
> >> On 3/29/2019 7:29 PM, Akhil Goyal wrote:
> >>> On 3/22/2019 10:04 PM, Fan Zhang wrote:
> >>>> This patch adds the deprecation notice of changing Cryptodev
> >>>> symmetric xform structure. The proposed change is to making
> >>>> key pointers in the crypto xforms (cipher, auth, aead) to
> >>>> indicate neither the library or the drivers will not change
> >>>> the content of the key buffer.
> >>>>
> >>>> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
> >>>> ---
> >>>> v3:
> >>>> - Removed target release.
> >>>>
> >>>> v2:
> >>>> - Added description.
> >>>>
> >>>>      doc/guides/rel_notes/deprecation.rst | 4 ++++
> >>>>      1 file changed, 4 insertions(+)
> >>>>
> >>>> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> >>>> index 1b4fcb7e6..f35ac5b96 100644
> >>>> --- a/doc/guides/rel_notes/deprecation.rst
> >>>> +++ b/doc/guides/rel_notes/deprecation.rst
> >>>> @@ -75,3 +75,7 @@ Deprecation Notices
> >>>>      
> >>>>      * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
> >>>>        changed from 0.49.0 to 0.52.0.
> >>>> +
> >>>> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
> >>>> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
> >>>> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
> >>> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
> >> delegated to master.
> >> should be applied along with
> >> http://patches.dpdk.org/patch/51395/
> >>
> > Applied to dpdk-next-crypto
> > Thanks.
> >
> This patch is proposing that there will be change in the xform 
> structure(API breakage) and the change is happening in the same release. 
> I suppose this is not allowed.
> 
> @Thomas: Could you please suggest if the deprecation notice should be 
> added in this release and the changes in the next release?

First of all, we must avoid breaking API.
If it is not avoidable, we must announce it and do the change in
the next release.

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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-29 19:56             ` Thomas Monjalon
@ 2019-03-29 19:56               ` Thomas Monjalon
  0 siblings, 0 replies; 20+ messages in thread
From: Thomas Monjalon @ 2019-03-29 19:56 UTC (permalink / raw)
  To: Akhil Goyal
  Cc: Fan Zhang, dev, arkadiuszx.kusztal, pablo.de.lara.guarch,
	declan.doherty, fiona.trahe

29/03/2019 16:59, Akhil Goyal:
> 
> On 3/29/2019 9:19 PM, Akhil Goyal wrote:
> >
> > On 3/29/2019 7:45 PM, Akhil Goyal wrote:
> >> On 3/29/2019 7:29 PM, Akhil Goyal wrote:
> >>> On 3/22/2019 10:04 PM, Fan Zhang wrote:
> >>>> This patch adds the deprecation notice of changing Cryptodev
> >>>> symmetric xform structure. The proposed change is to making
> >>>> key pointers in the crypto xforms (cipher, auth, aead) to
> >>>> indicate neither the library or the drivers will not change
> >>>> the content of the key buffer.
> >>>>
> >>>> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
> >>>> ---
> >>>> v3:
> >>>> - Removed target release.
> >>>>
> >>>> v2:
> >>>> - Added description.
> >>>>
> >>>>      doc/guides/rel_notes/deprecation.rst | 4 ++++
> >>>>      1 file changed, 4 insertions(+)
> >>>>
> >>>> diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst
> >>>> index 1b4fcb7e6..f35ac5b96 100644
> >>>> --- a/doc/guides/rel_notes/deprecation.rst
> >>>> +++ b/doc/guides/rel_notes/deprecation.rst
> >>>> @@ -75,3 +75,7 @@ Deprecation Notices
> >>>>      
> >>>>      * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will be
> >>>>        changed from 0.49.0 to 0.52.0.
> >>>> +
> >>>> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the xforms
> >>>> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``, and
> >>>> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
> >>> Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
> >> delegated to master.
> >> should be applied along with
> >> http://patches.dpdk.org/patch/51395/
> >>
> > Applied to dpdk-next-crypto
> > Thanks.
> >
> This patch is proposing that there will be change in the xform 
> structure(API breakage) and the change is happening in the same release. 
> I suppose this is not allowed.
> 
> @Thomas: Could you please suggest if the deprecation notice should be 
> added in this release and the changes in the next release?

First of all, we must avoid breaking API.
If it is not avoidable, we must announce it and do the change in
the next release.



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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-22 16:34   ` [dpdk-dev] [PATCH v3] " Fan Zhang
  2019-03-22 16:34     ` Fan Zhang
  2019-03-29 13:59     ` Akhil Goyal
@ 2019-04-01 16:29     ` Trahe, Fiona
  2019-04-01 16:29       ` Trahe, Fiona
  2019-04-03  9:11     ` Anoob Joseph
  3 siblings, 1 reply; 20+ messages in thread
From: Trahe, Fiona @ 2019-04-01 16:29 UTC (permalink / raw)
  To: Zhang, Roy Fan, dev
  Cc: akhil.goyal, Kusztal, ArkadiuszX, De Lara Guarch, Pablo, Doherty, Declan



> -----Original Message-----
> From: Zhang, Roy Fan
> Sent: Friday, March 22, 2019 4:35 PM
> To: dev@dpdk.org
> Cc: akhil.goyal@nxp.com; Zhang, Roy Fan <roy.fan.zhang@intel.com>; Kusztal, ArkadiuszX
> <arkadiuszx.kusztal@intel.com>; De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Doherty,
> Declan <declan.doherty@intel.com>; Trahe, Fiona <fiona.trahe@intel.com>
> Subject: [PATCH v3] doc: add cryptodev xform deprecation notice
> 
> This patch adds the deprecation notice of changing Cryptodev
> symmetric xform structure. The proposed change is to making
> key pointers in the crypto xforms (cipher, auth, aead) to
> indicate neither the library or the drivers will not change
> the content of the key buffer.
> 
> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>

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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-04-01 16:29     ` Trahe, Fiona
@ 2019-04-01 16:29       ` Trahe, Fiona
  0 siblings, 0 replies; 20+ messages in thread
From: Trahe, Fiona @ 2019-04-01 16:29 UTC (permalink / raw)
  To: Zhang, Roy Fan, dev
  Cc: akhil.goyal, Kusztal, ArkadiuszX, De Lara Guarch, Pablo, Doherty, Declan



> -----Original Message-----
> From: Zhang, Roy Fan
> Sent: Friday, March 22, 2019 4:35 PM
> To: dev@dpdk.org
> Cc: akhil.goyal@nxp.com; Zhang, Roy Fan <roy.fan.zhang@intel.com>; Kusztal, ArkadiuszX
> <arkadiuszx.kusztal@intel.com>; De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Doherty,
> Declan <declan.doherty@intel.com>; Trahe, Fiona <fiona.trahe@intel.com>
> Subject: [PATCH v3] doc: add cryptodev xform deprecation notice
> 
> This patch adds the deprecation notice of changing Cryptodev
> symmetric xform structure. The proposed change is to making
> key pointers in the crypto xforms (cipher, auth, aead) to
> indicate neither the library or the drivers will not change
> the content of the key buffer.
> 
> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>

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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-03-22 16:34   ` [dpdk-dev] [PATCH v3] " Fan Zhang
                       ` (2 preceding siblings ...)
  2019-04-01 16:29     ` Trahe, Fiona
@ 2019-04-03  9:11     ` Anoob Joseph
  2019-04-03  9:11       ` Anoob Joseph
  3 siblings, 1 reply; 20+ messages in thread
From: Anoob Joseph @ 2019-04-03  9:11 UTC (permalink / raw)
  To: Fan Zhang, dev
  Cc: akhil.goyal, arkadiuszx.kusztal, pablo.de.lara.guarch,
	declan.doherty, fiona.trahe, Suheil Chandran,
	Narayana Prasad Raju Athreya, Shally Verma


> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Fan Zhang
> Sent: Friday, March 22, 2019 10:05 PM
> To: dev@dpdk.org
> Cc: akhil.goyal@nxp.com; roy.fan.zhang@intel.com;
> arkadiuszx.kusztal@intel.com; pablo.de.lara.guarch@intel.com;
> declan.doherty@intel.com; fiona.trahe@intel.com
> Subject: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
> 
> This patch adds the deprecation notice of changing Cryptodev symmetric xform
> structure. The proposed change is to making key pointers in the crypto xforms
> (cipher, auth, aead) to indicate neither the library or the drivers will not change
> the content of the key buffer.
> 
> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
> ---
> v3:
> - Removed target release.
> 
> v2:
> - Added description.
> 
>  doc/guides/rel_notes/deprecation.rst | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> index 1b4fcb7e6..f35ac5b96 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -75,3 +75,7 @@ Deprecation Notices
> 
>  * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will
> be
>    changed from 0.49.0 to 0.52.0.
> +
> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the
> +xforms
> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``,
> +and
> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
> --
> 2.14.5

Acked-by: Anoob Joseph <anoobj@marvell.com> 

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

* Re: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
  2019-04-03  9:11     ` Anoob Joseph
@ 2019-04-03  9:11       ` Anoob Joseph
  0 siblings, 0 replies; 20+ messages in thread
From: Anoob Joseph @ 2019-04-03  9:11 UTC (permalink / raw)
  To: Fan Zhang, dev
  Cc: akhil.goyal, arkadiuszx.kusztal, pablo.de.lara.guarch,
	declan.doherty, fiona.trahe, Suheil Chandran,
	Narayana Prasad Raju Athreya, Shally Verma


> -----Original Message-----
> From: dev <dev-bounces@dpdk.org> On Behalf Of Fan Zhang
> Sent: Friday, March 22, 2019 10:05 PM
> To: dev@dpdk.org
> Cc: akhil.goyal@nxp.com; roy.fan.zhang@intel.com;
> arkadiuszx.kusztal@intel.com; pablo.de.lara.guarch@intel.com;
> declan.doherty@intel.com; fiona.trahe@intel.com
> Subject: [dpdk-dev] [PATCH v3] doc: add cryptodev xform deprecation notice
> 
> This patch adds the deprecation notice of changing Cryptodev symmetric xform
> structure. The proposed change is to making key pointers in the crypto xforms
> (cipher, auth, aead) to indicate neither the library or the drivers will not change
> the content of the key buffer.
> 
> Signed-off-by: Fan Zhang <roy.fan.zhang@intel.com>
> ---
> v3:
> - Removed target release.
> 
> v2:
> - Added description.
> 
>  doc/guides/rel_notes/deprecation.rst | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/doc/guides/rel_notes/deprecation.rst
> b/doc/guides/rel_notes/deprecation.rst
> index 1b4fcb7e6..f35ac5b96 100644
> --- a/doc/guides/rel_notes/deprecation.rst
> +++ b/doc/guides/rel_notes/deprecation.rst
> @@ -75,3 +75,7 @@ Deprecation Notices
> 
>  * crypto/aesni_mb: the minimum supported intel-ipsec-mb library version will
> be
>    changed from 0.49.0 to 0.52.0.
> +
> +* cryptodev: the ``uint8_t *data`` member of ``key`` structure in the
> +xforms
> +  structure (``rte_crypto_cipher_xform``, ``rte_crypto_auth_xform``,
> +and
> +  ``rte_crypto_aead_xform``) will be changed to ``const uint8_t *data``.
> --
> 2.14.5

Acked-by: Anoob Joseph <anoobj@marvell.com> 


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

end of thread, other threads:[~2019-04-03  9:11 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-02-08 11:17 [dpdk-dev] [PATCH] doc: add cryptodev xform deprecation notice Fan Zhang
2019-02-28 10:08 ` Akhil Goyal
2019-02-28 11:27   ` Zhang, Roy Fan
2019-03-01 10:46 ` [dpdk-dev] [PATCH v2] " Fan Zhang
2019-03-22 16:34   ` [dpdk-dev] [PATCH v3] " Fan Zhang
2019-03-22 16:34     ` Fan Zhang
2019-03-29 13:59     ` Akhil Goyal
2019-03-29 13:59       ` Akhil Goyal
2019-03-29 14:15       ` Akhil Goyal
2019-03-29 14:15         ` Akhil Goyal
2019-03-29 15:49         ` Akhil Goyal
2019-03-29 15:49           ` Akhil Goyal
2019-03-29 15:59           ` Akhil Goyal
2019-03-29 15:59             ` Akhil Goyal
2019-03-29 19:56             ` Thomas Monjalon
2019-03-29 19:56               ` Thomas Monjalon
2019-04-01 16:29     ` Trahe, Fiona
2019-04-01 16:29       ` Trahe, Fiona
2019-04-03  9:11     ` Anoob Joseph
2019-04-03  9:11       ` Anoob Joseph

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