DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] maintainers: claim responsability for various sample apps
@ 2015-11-27 14:14 Pablo de Lara
  2015-11-27 14:31 ` Thomas Monjalon
  2015-11-27 14:31 ` Bruce Richardson
  0 siblings, 2 replies; 5+ messages in thread
From: Pablo de Lara @ 2015-11-27 14:14 UTC (permalink / raw)
  To: dev; +Cc: thomas.monjalon

Co-maintain helloworld, l2fwd and dpdk-qat sample apps.

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
---
 MAINTAINERS | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/MAINTAINERS b/MAINTAINERS
index 4478862..6e0bb53 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -509,6 +509,7 @@ Other Example Applications
 --------------------------
 
 M: Bruce Richardson <bruce.richardson@intel.com>
+M: Pablo de Lara <pablo.de.lara.guarch@intel.com>
 F: examples/dpdk_qat/
 F: doc/guides/sample_app_ug/intel_quickassist.rst
 
@@ -516,6 +517,7 @@ F: examples/exception_path/
 F: doc/guides/sample_app_ug/exception_path.rst
 
 M: Bruce Richardson <bruce.richardson@intel.com>
+M: Pablo de Lara <pablo.de.lara.guarch@intel.com>
 F: examples/helloworld/
 F: doc/guides/sample_app_ug/hello_world.rst
 
@@ -523,6 +525,7 @@ F: examples/ipv4_multicast/
 F: doc/guides/sample_app_ug/ipv4_multicast.rst
 
 M: Bruce Richardson <bruce.richardson@intel.com>
+M: Pablo de Lara <pablo.de.lara.guarch@intel.com>
 F: examples/l2fwd/
 F: doc/guides/sample_app_ug/l2_forward_real_virtual.rst
 
-- 
2.5.0

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

* Re: [dpdk-dev] [PATCH] maintainers: claim responsability for various sample apps
  2015-11-27 14:14 [dpdk-dev] [PATCH] maintainers: claim responsability for various sample apps Pablo de Lara
@ 2015-11-27 14:31 ` Thomas Monjalon
  2015-11-27 14:58   ` Declan Doherty
  2015-11-27 14:31 ` Bruce Richardson
  1 sibling, 1 reply; 5+ messages in thread
From: Thomas Monjalon @ 2015-11-27 14:31 UTC (permalink / raw)
  To: Pablo de Lara, bruce.richardson; +Cc: dev

2015-11-27 14:14, Pablo de Lara:
> Co-maintain helloworld, l2fwd and dpdk-qat sample apps.

Naive question: what is the benefit of dpdk-qat compared to l2fwd-crypto?
Is it something we can drop?

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

* Re: [dpdk-dev] [PATCH] maintainers: claim responsability for various sample apps
  2015-11-27 14:14 [dpdk-dev] [PATCH] maintainers: claim responsability for various sample apps Pablo de Lara
  2015-11-27 14:31 ` Thomas Monjalon
@ 2015-11-27 14:31 ` Bruce Richardson
  2015-12-06 16:46   ` Thomas Monjalon
  1 sibling, 1 reply; 5+ messages in thread
From: Bruce Richardson @ 2015-11-27 14:31 UTC (permalink / raw)
  To: Pablo de Lara; +Cc: dev, thomas.monjalon

On Fri, Nov 27, 2015 at 02:14:04PM +0000, Pablo de Lara wrote:
> Co-maintain helloworld, l2fwd and dpdk-qat sample apps.
> 
> Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
> ---
>  MAINTAINERS | 3 +++
>  1 file changed, 3 insertions(+)
>
Thanks Pablo.
While these aren't a huge deal of work to maintain, it's good to have the help
so I can focus more time on drivers/net in future releases.

Acked-by: Bruce Richardson <bruce.richardson@intel.com>

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

* Re: [dpdk-dev] [PATCH] maintainers: claim responsability for various sample apps
  2015-11-27 14:31 ` Thomas Monjalon
@ 2015-11-27 14:58   ` Declan Doherty
  0 siblings, 0 replies; 5+ messages in thread
From: Declan Doherty @ 2015-11-27 14:58 UTC (permalink / raw)
  To: Thomas Monjalon, Pablo de Lara, bruce.richardson; +Cc: dev

On 27/11/15 14:31, Thomas Monjalon wrote:
> 2015-11-27 14:14, Pablo de Lara:
>> Co-maintain helloworld, l2fwd and dpdk-qat sample apps.
>
> Naive question: what is the benefit of dpdk-qat compared to l2fwd-crypto?
> Is it something we can drop?
>

So the dpdk-qat sample application is a sample of how to use the QAT 
library APIs from a DPDK application allowing the user to schedule work 
with the QAT kernel devices. The QAT API has support for a number of QAT 
devices (both the cave-creek and coleto-creek family of devices) which 
support symmetric crypto, asymmetric crypto and compression operations.

The l2fwd application demonstrates using the new DPDK symmetric crypto 
APIs in packet processing work flow, with the crypto processing 
implemented by DPDK userspace PMDs, this currently includes support for 
both the AES-NI multi-buffer PMD as well as the QAT PMD.

Declan

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

* Re: [dpdk-dev] [PATCH] maintainers: claim responsability for various sample apps
  2015-11-27 14:31 ` Bruce Richardson
@ 2015-12-06 16:46   ` Thomas Monjalon
  0 siblings, 0 replies; 5+ messages in thread
From: Thomas Monjalon @ 2015-12-06 16:46 UTC (permalink / raw)
  To: Pablo de Lara; +Cc: dev

2015-11-27 14:31, Bruce Richardson:
> On Fri, Nov 27, 2015 at 02:14:04PM +0000, Pablo de Lara wrote:
> > Co-maintain helloworld, l2fwd and dpdk-qat sample apps.
> > 
> > Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
> > ---
> >  MAINTAINERS | 3 +++
> >  1 file changed, 3 insertions(+)
> >
> Thanks Pablo.
> While these aren't a huge deal of work to maintain, it's good to have the help
> so I can focus more time on drivers/net in future releases.
> 
> Acked-by: Bruce Richardson <bruce.richardson@intel.com>

Applied, thanks

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

end of thread, other threads:[~2015-12-06 16:47 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-27 14:14 [dpdk-dev] [PATCH] maintainers: claim responsability for various sample apps Pablo de Lara
2015-11-27 14:31 ` Thomas Monjalon
2015-11-27 14:58   ` Declan Doherty
2015-11-27 14:31 ` Bruce Richardson
2015-12-06 16:46   ` 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).