mbox series

[v2,0/2] Add external mbufs option

Message ID 20190924141033.3894-1-adamx.dybkowski@intel.com (mailing list archive)
Headers
Series Add external mbufs option |

Message

Dybkowski, AdamX Sept. 24, 2019, 2:10 p.m. UTC
  This patchset adds a unit test of the external buffers
functionality and a new option to the compression
performance benchmark tool to use memzones as external
buffers instead of the data put directly inside mbufs.
---
v2:
* Rebasing over the stateful decompression patch

This patch depends on https://patches.dpdk.org/cover/59610/

Adam Dybkowski (2):
  test/compress: add external buffer in mbuf API test
  app/compress-perf: add external mbufs option

 app/test-compress-perf/comp_perf_options.h    |   2 +
 .../comp_perf_options_parse.c                 |  15 +
 .../comp_perf_test_benchmark.c                |   3 +-
 .../comp_perf_test_common.c                   | 201 ++++++++++-
 .../comp_perf_test_common.h                   |   9 +-
 .../comp_perf_test_verify.c                   |   4 +-
 app/test/test_compressdev.c                   | 314 ++++++++++++------
 7 files changed, 443 insertions(+), 105 deletions(-)
  

Comments

Fiona Trahe Sept. 24, 2019, 4:47 p.m. UTC | #1
> -----Original Message-----
> From: Dybkowski, AdamX
> Sent: Tuesday, September 24, 2019 3:11 PM
> To: dev@dpdk.org; Trahe, Fiona <fiona.trahe@intel.com>; Trybula, ArturX
> <arturx.trybula@intel.com>; akhil.goyal@nxp.com
> Cc: Dybkowski, AdamX <adamx.dybkowski@intel.com>
> Subject: [PATCH v2 0/2] Add external mbufs option
> 
> This patchset adds a unit test of the external buffers
> functionality and a new option to the compression
> performance benchmark tool to use memzones as external
> buffers instead of the data put directly inside mbufs.
> ---
> v2:
> * Rebasing over the stateful decompression patch
> 
> This patch depends on https://patches.dpdk.org/cover/59610/
> 
> Adam Dybkowski (2):
>   test/compress: add external buffer in mbuf API test
>   app/compress-perf: add external mbufs option
> 
>  app/test-compress-perf/comp_perf_options.h    |   2 +
>  .../comp_perf_options_parse.c                 |  15 +
>  .../comp_perf_test_benchmark.c                |   3 +-
>  .../comp_perf_test_common.c                   | 201 ++++++++++-
>  .../comp_perf_test_common.h                   |   9 +-
>  .../comp_perf_test_verify.c                   |   4 +-
>  app/test/test_compressdev.c                   | 314 ++++++++++++------
>  7 files changed, 443 insertions(+), 105 deletions(-)
> 
> --
> 2.17.1
Series
Acked-by: Fiona Trahe <fiona.trahe@intel.com>
  
Akhil Goyal Sept. 27, 2019, 2:50 p.m. UTC | #2
> > Adam Dybkowski (2):
> >   test/compress: add external buffer in mbuf API test
> >   app/compress-perf: add external mbufs option
> >
> >  app/test-compress-perf/comp_perf_options.h    |   2 +
> >  .../comp_perf_options_parse.c                 |  15 +
> >  .../comp_perf_test_benchmark.c                |   3 +-
> >  .../comp_perf_test_common.c                   | 201 ++++++++++-
> >  .../comp_perf_test_common.h                   |   9 +-
> >  .../comp_perf_test_verify.c                   |   4 +-
> >  app/test/test_compressdev.c                   | 314 ++++++++++++------
> >  7 files changed, 443 insertions(+), 105 deletions(-)
> >
> > --
> > 2.17.1
> Series
> Acked-by: Fiona Trahe <fiona.trahe@intel.com>
Applied to dpdk-next-crypto

Thanks.