DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] cryptodev: add missing feature string
@ 2018-05-18 13:23 Pablo de Lara
  2018-05-18 14:01 ` Varghese, Vipin
  0 siblings, 1 reply; 3+ messages in thread
From: Pablo de Lara @ 2018-05-18 13:23 UTC (permalink / raw)
  To: declan.doherty; +Cc: dev, Pablo de Lara, stable

Security protocol flag string was not added
when the actual flag was added.

Fixes: eadb4fa1e1fe ("cryptodev: support security APIs")
Cc: stable@dpdk.org

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
---
 lib/librte_cryptodev/rte_cryptodev.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/lib/librte_cryptodev/rte_cryptodev.c b/lib/librte_cryptodev/rte_cryptodev.c
index 2a95a351f..3712caf73 100644
--- a/lib/librte_cryptodev/rte_cryptodev.c
+++ b/lib/librte_cryptodev/rte_cryptodev.c
@@ -346,6 +346,8 @@ rte_cryptodev_get_feature_name(uint64_t flag)
 		return "CPU_NEON";
 	case RTE_CRYPTODEV_FF_CPU_ARM_CE:
 		return "CPU_ARM_CE";
+	case RTE_CRYPTODEV_FF_SECURITY:
+		return "SECURITY_PROTOCOL";
 	default:
 		return NULL;
 	}
-- 
2.17.0

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

* Re: [dpdk-dev] [PATCH] cryptodev: add missing feature string
  2018-05-18 13:23 [dpdk-dev] [PATCH] cryptodev: add missing feature string Pablo de Lara
@ 2018-05-18 14:01 ` Varghese, Vipin
  2018-05-21 21:46   ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 3+ messages in thread
From: Varghese, Vipin @ 2018-05-18 14:01 UTC (permalink / raw)
  To: De Lara Guarch, Pablo, Doherty, Declan; +Cc: dev, De Lara Guarch, Pablo, stable

Thanks Pablo for the fix. I am ok with this change

Acked-by: Vipin Varghese <vipin.varghese@intel.com>

> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pablo de Lara
> Sent: Friday, May 18, 2018 6:54 PM
> To: Doherty, Declan <declan.doherty@intel.com>
> Cc: dev@dpdk.org; De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>;
> stable@dpdk.org
> Subject: [dpdk-dev] [PATCH] cryptodev: add missing feature string
> 
> Security protocol flag string was not added when the actual flag was added.
> 
> Fixes: eadb4fa1e1fe ("cryptodev: support security APIs")
> Cc: stable@dpdk.org
> 
> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
> ---
>  lib/librte_cryptodev/rte_cryptodev.c | 2 ++
>  1 file changed, 2 insertions(+)
> 
> diff --git a/lib/librte_cryptodev/rte_cryptodev.c
> b/lib/librte_cryptodev/rte_cryptodev.c
> index 2a95a351f..3712caf73 100644
> --- a/lib/librte_cryptodev/rte_cryptodev.c
> +++ b/lib/librte_cryptodev/rte_cryptodev.c
> @@ -346,6 +346,8 @@ rte_cryptodev_get_feature_name(uint64_t flag)
>  		return "CPU_NEON";
>  	case RTE_CRYPTODEV_FF_CPU_ARM_CE:
>  		return "CPU_ARM_CE";
> +	case RTE_CRYPTODEV_FF_SECURITY:
> +		return "SECURITY_PROTOCOL";
>  	default:
>  		return NULL;
>  	}
> --
> 2.17.0

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

* Re: [dpdk-dev] [PATCH] cryptodev: add missing feature string
  2018-05-18 14:01 ` Varghese, Vipin
@ 2018-05-21 21:46   ` De Lara Guarch, Pablo
  0 siblings, 0 replies; 3+ messages in thread
From: De Lara Guarch, Pablo @ 2018-05-21 21:46 UTC (permalink / raw)
  To: Varghese, Vipin, Doherty, Declan; +Cc: dev, stable



> -----Original Message-----
> From: Varghese, Vipin
> Sent: Friday, May 18, 2018 3:01 PM
> To: De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Doherty, Declan
> <declan.doherty@intel.com>
> Cc: dev@dpdk.org; De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>;
> stable@dpdk.org
> Subject: RE: [dpdk-dev] [PATCH] cryptodev: add missing feature string
> 
> Thanks Pablo for the fix. I am ok with this change
> 
> Acked-by: Vipin Varghese <vipin.varghese@intel.com>
> 
> > -----Original Message-----
> > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Pablo de Lara
> > Sent: Friday, May 18, 2018 6:54 PM
> > To: Doherty, Declan <declan.doherty@intel.com>
> > Cc: dev@dpdk.org; De Lara Guarch, Pablo
> > <pablo.de.lara.guarch@intel.com>; stable@dpdk.org
> > Subject: [dpdk-dev] [PATCH] cryptodev: add missing feature string
> >
> > Security protocol flag string was not added when the actual flag was added.
> >
> > Fixes: eadb4fa1e1fe ("cryptodev: support security APIs")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>

Applied to dpdk-next-crypto.

Pablo

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

end of thread, other threads:[~2018-05-21 21:46 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-05-18 13:23 [dpdk-dev] [PATCH] cryptodev: add missing feature string Pablo de Lara
2018-05-18 14:01 ` Varghese, Vipin
2018-05-21 21:46   ` De Lara Guarch, Pablo

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