[dpdk-dev] [PATCH v5 3/3] test/compress: add varied buffer input/outputs

2019-01-17 Thread Kovacevic, Marko
Added unit test to check if a SGL buffer was added as an input and a Linear Buffer as output and vice versa so we can test if the application would process the different buffers properly. Signed-off-by: Kovacevic, Marko Acked-by: Fiona Trahe Acked-by: Lee Daly Acked-by: Pablo de Lara --- v5

[dpdk-dev] [PATCH v5 2/3] test/compress: add out of space test

2019-01-17 Thread Kovacevic, Marko
This patch adds new out of space testcase to check that the destination mbuf is smaller than required for the output of compression to ensure the driver doesn't crash and returns the valid error case. Signed-off-by: Kovacevic, Marko Acked-by: Lee Daly Acked-by: Fiona Trahe Acked-by: Pab

[dpdk-dev] [PATCH v5 1/3] test/compress: refactor main test function

2019-01-17 Thread Kovacevic, Marko
From: Pablo de Lara Since the start of the compression tests, the main test function, test_deflate_comp_decomp, has increased its parameter with each new test added. In order to make the code cleaner, and more scalable, these parameters have been divided into two structures, which are now passed

Re: [dpdk-dev] [PATCH] doc/power: fix references in power management

2019-01-17 Thread Kovacevic, Marko
Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH 1/2] doc/power: library can now use intel-pstate

2019-01-17 Thread Kovacevic, Marko
Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH 2/2] doc/power: update release note for intel-pstate

2019-01-17 Thread Kovacevic, Marko
Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH] doc/gsg: update recommended NIC bios settings

2019-01-17 Thread Kovacevic, Marko
Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH v6] doc: add GRO limitations in prog_guide

2019-01-17 Thread Kovacevic, Marko
> +GRO Library Limitations > +--- > + > +- GRO library uses MBUF->l2_len/l3_len/l4_len/outer_l2_len/ > + outer_l3_len/packet_type to get protocol headers for the > + input packet, rather than parsing the packet header. Therefore, > + before call GRO APIs to merge packets, use

Re: [dpdk-dev] [PATCH] doc: remove file listings

2019-01-17 Thread Kovacevic, Marko
> > Signed-off-by: David Marchand > > --- > > doc/guides/prog_guide/dev_kit_build_system.rst | 43 -- > > doc/guides/prog_guide/source_org.rst | 79 > > +- > > 2 files changed, 2 insertions(+), 120 deletions(-) > > > > diff --git a/doc/guides/prog_gu

Re: [dpdk-dev] [PATCH] doc: remove file listings

2019-01-17 Thread Kovacevic, Marko
Sorry for not making it clearer, So if someone was reading it and saw this line "The examples directory contains sample applications that show how libraries can be used" It would be nice to have a link to the sample applications in the docs like so, which has all the Info that was deleted.

Re: [dpdk-dev] [PATCH] doc: remove file listings

2019-01-18 Thread Kovacevic, Marko
> > Sorry for not making it clearer, > > So if someone was reading it and saw this line > > > > "The examples directory contains sample applications that show how > libraries can be used" > > > > It would be nice to have a link to the sample applications in the docs > > like so, which has all the I

Re: [dpdk-dev] [PATCH] doc: add tested Intel platforms with Intel NICs

2019-01-18 Thread Kovacevic, Marko
> Add tested Intel platforms with Intel NICs to v19.02 release note. > > Signed-off-by: Lijuan Tu > --- > doc/guides/rel_notes/release_19_02.rst | 74 > ++ > 1 file changed, 74 insertions(+) > > diff --git a/doc/guides/rel_notes/release_19_02.rst > b/doc/guides/r

Re: [dpdk-dev] [PATCH v4 2/2] doc: add guide for debug and troubleshoot

2019-01-18 Thread Kovacevic, Marko
After checking the patch again I found a few spelling mistakes > Add user guide on debug and troubleshoot for common issues and > bottleneck found in sample application model. > > Signed-off-by: Vipin Varghese > Acked-by: Marko Kovacevic > --- > doc/guides/howto/debug_troubleshoot_guide.rst |

Re: [dpdk-dev] [PATCH v2] doc: remove file listings

2019-01-18 Thread Kovacevic, Marko
Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH] test/compress: fix size of test buffer

2019-01-22 Thread Kovacevic, Marko
> Changed size of test buffer to 100 to allow qat to run compress unit-test, > qat_comp_process_response(): > QAT intermediate buffer may be too small for output, try configuring a larger > size > > Fixes: c1bbb613ce96 ("test/compress: add out of space test") > Cc: marko.kovace...@intel.com > > S

Re: [dpdk-dev] [PATCH] examples/fips_validation: fix physical address

2019-01-22 Thread Kovacevic, Marko
> This patch fixes the missed digest and aad data physical addresses filling to > crypto operations in fips_validation sample application. > > Fixes: 41d561cbdd24 ("examples/fips_validation: add power on self test") > > Signed-off-by: Fan Zhang > --- > examples/fips_validation/fips_dev_self_tes

Re: [dpdk-dev] [PATCH] test/compress: fix size of test buffer

2019-01-24 Thread Kovacevic, Marko
> Changed size of test buffer to 100 to allow qat to run compress unit-test, > qat_comp_process_response(): > QAT intermediate buffer may be too small for output, try configuring a larger > size > > Fixes: c1bbb613ce96 ("test/compress: add out of space test") > Cc: marko.kovace...@intel.com > > S

Re: [dpdk-dev] [PATCH] fips_validation: Add plain SHA support

2019-03-07 Thread Kovacevic, Marko
> From: Damian Nowak > > This patch enables plain SHA algorithm CAVP test support in fips_validation > sample application. > > Signed-off-by: Damian Nowak > Acked-by: Fan Zhang > --- > examples/fips_validation/Makefile | 1 + > examples/fips_validation/fips_validation.c |

Re: [dpdk-dev] [PATCH v2 6/6] doc: add documention for windows

2019-03-07 Thread Kovacevic, Marko
> Added documentation to build helloworld example on windows using meson > and clang. Updated the maintainers list to include windows maintainers. > > Signed-off-by: Anand Rawat > Signed-off-by: Pallavi Kadam > Reviewed-by: Jeff Shaw > Reviewed-by: Ranjit Menon > --- > MAINTAINERS

[dpdk-dev] [PATCH v2 1/2] crypto/aesni_mb: support IPsec MUlti-buffer lib v0.49

2018-04-03 Thread Kovacevic, Marko
From: Marko Kovacevic Adds support for the v0.49 of the IPsec Multi-buffer lib, which now gets compiled and installed as a shared object. Therefore, there is no need to pass the AESNI_MULTI_BUFFER_LIB_PATH Signed-off-by: Marko Kovacevic --- V2: Added commit message --- devtools/test-build.s

[dpdk-dev] [PATCH v2 2/2] crypto/aesni_gcm: support IPsec Multi-buffer lib v0.49

2018-04-03 Thread Kovacevic, Marko
Adds support for the v0.49 of the IPsec Multi-buffer lib, which now gets compiled and installed as a shared object. Therefore, there is no need to pass the AESNI_MULTI_BUFFER_LIB_PATH Signed-off-by: Marko Kovacevic --- V2: Added commit body message --- devtools/test-build.sh

[dpdk-dev] [PATCH v2] crypto/aesni_mb: support AES CMAC

2018-04-03 Thread Kovacevic, Marko
From: Marko Kovacevic Added support for AES CMAC hash algorithm with 128-bit key, which has been added in the v0.49 of the IPSec Multi-buffer lib. Signed-off-by: Marko Kovacevic --- V2: Added commit message --- doc/guides/cryptodevs/aesni_mb.rst | 1 + doc/guides/cryptodevs

[dpdk-dev] [PATCH v3 2/2] crypto/aesni_gcm: support IPsec Multi-buffer lib v0.49

2018-04-03 Thread Kovacevic, Marko
Adds support for the v0.49 of the IPsec Multi-buffer lib, which now gets compiled and installed as a shared object. Therefore, there is no need to pass the AESNI_MULTI_BUFFER_LIB_PATH Signed-off-by: Marko Kovacevic --- V2: added commit message V3: changed variable name to what the first patc

[dpdk-dev] [PATCH v3 1/2] crypto/aesni_mb: support IPsec MUlti-buffer lib v0.49

2018-04-03 Thread Kovacevic, Marko
From: Marko Kovacevic Adds support for the v0.49 of the IPsec Multi-buffer lib, which now gets compiled and installed as a shared object. Therefore, there is no need to pass the AESNI_MULTI_BUFFER_LIB_PATH --- V2: added commit message V3: changed variable name to something more practical Si

Re: [dpdk-dev] [PATCH] doc: update Marvell's driver link

2018-04-03 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH] doc: update Marvell's driver link > > Change the incorrect driver documentation link to fix following > documentation build warning. > > $ make doc-guides-html > sphinx processing guides-html... > doc/guides/rel_notes/release_17_11.rst:58: > WARNING: unknown document

Re: [dpdk-dev] [PATCH] doc: fix a typo

2018-04-09 Thread Kovacevic, Marko
> Signed-off-by: Jerin Jacob > --- > doc/guides/prog_guide/rawdev.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH v7 1/9] doc: add switch representation documentation

2018-04-16 Thread Kovacevic, Marko
Small changes commented below. > Add document to describe the model for representing switching capable > devices in DPDK, using a general ethdev port model and through port > representors. This document also details the port model and the rte_flow > semantics required for flow programming, as we

Re: [dpdk-dev] [PATCH v6 11/12] doc: update 18.02 release notes and maintainers info

2018-01-10 Thread Kovacevic, Marko
> Signed-off-by: Liang Ma > Signed-off-by: Peter Mccarthy > MAINTAINERS| 6 ++ > doc/guides/rel_notes/release_18_02.rst | 11 +++ > 2 files changed, 17 insertions(+) > > diff --git a/MAINTAINERS b/MAINTAINERS > index f0baeb4..1b8d617 100644 > --- a/MAIN

Re: [dpdk-dev] [PATCH v2] doc: add instructions on build using meson

2018-01-10 Thread Kovacevic, Marko
> Signed-off-by: Bruce Richardson > --- > V2: > * moved new document to the "doc/" directory > * minor updates following review comments from Shreyansh Jain > --- > doc/build-sdk-meson.txt | 175 > > 1 file changed, 175 insertions(+) > create mode

Re: [dpdk-dev] [PATCH v1 2/2] doc: add guidelines for stable tags

2018-01-10 Thread Kovacevic, Marko
Sure thing will do. <...> > > +Patch for Stable Releases: > > +~~ > > + > > +All fix patches to the master branch that are candidates for > > +backporting should also be CCed to the `sta...@dpdk.org > > +`_ > > +mailing list. In the comm

Re: [dpdk-dev] [PATCH v7 11/12] doc: update 18.02 release notes and maintainers info

2018-01-10 Thread Kovacevic, Marko
> Signed-off-by: Liang Ma > Signed-off-by: Peter Mccarthy > --- > MAINTAINERS| 6 ++ > doc/guides/rel_notes/release_18_02.rst | 11 +++ > 2 files changed, 17 insertions(+) Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH v7 12/12] doc: add eventdev opdl PMD guide

2018-01-10 Thread Kovacevic, Marko
> Signed-off-by: Liang Ma > Signed-off-by: Peter Mccarthy > --- > doc/guides/eventdevs/index.rst | 1 + > doc/guides/eventdevs/opdl.rst | 136 > + > 2 files changed, 137 insertions(+) > create mode 100644 doc/guides/eventdevs/opdl.rst Acked-by: Marko

Re: [dpdk-dev] [PATCH v6 22/23] doc: add event timer adapter section to programmer's guide

2018-01-11 Thread Kovacevic, Marko
> Signed-off-by: Erik Gabriel Carrillo > --- > doc/guides/prog_guide/event_timer_adapter.rst | 301 > ++ > doc/guides/prog_guide/index.rst | 1 + > 2 files changed, 302 insertions(+) > create mode 100644 doc/guides/prog_guide/event_timer_adapter.rst <...>

Re: [dpdk-dev] [PATCH] doc: fix link bonding pmd typo in prog guide

2018-01-12 Thread Kovacevic, Marko
> fix one typo and a grammatical mistake. > > Fixes: b0152b1b40fe("doc: update bonding") > Signed-off-by: Zhiyong Yang First thing the git check log spit this error out so can you please just make these changes Running git check log on HEAD~1: 32787 == Wro

Re: [dpdk-dev] [PATCH] doc: ethdev ABI change deprecation notice

2018-01-12 Thread Kovacevic, Marko
> Signed-off-by: Kirill Rybalchenko > +* ethdev: anounce ABI change One small typo announce > + The size of variables flow_types_mask in rte_eth_fdir_info structure, > + sym_hash_enable_mask and valid_bit_mask in rte_eth_hash_global_conf > structure > + will be

Re: [dpdk-dev] [PATCH v6 23/23] doc: add event timer adapter to release notes

2018-01-12 Thread Kovacevic, Marko
> Signed-off-by: Erik Gabriel Carrillo > doc/guides/rel_notes/release_18_02.rst | 6 ++ > 1 file changed, 6 insertions(+) > > diff --git a/doc/guides/rel_notes/release_18_02.rst > b/doc/guides/rel_notes/release_18_02.rst > index 24b67bb..8eafcd3 100644 > --- a/doc/guides/rel_notes/release_18

Re: [dpdk-dev] [PATCH v6 21/23] doc: add event timer adapter to API index

2018-01-12 Thread Kovacevic, Marko
> Signed-off-by: Erik Gabriel Carrillo > doc/api/doxy-api-index.md | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/doc/api/doxy-api-index.md b/doc/api/doxy-api-index.md index > 3492702..3110658 100644 > --- a/doc/api/doxy-api-index.md > +++ b/doc/api/doxy-api-index.md Acked-by: Mark

Re: [dpdk-dev] [PATCH v4 13/13] doc: add pipeline test in eventdev test guide

2018-01-15 Thread Kovacevic, Marko
> Signed-off-by: Pavan Nikhilesh > .../tools/img/eventdev_pipeline_atq_test.svg | 3340 ++ > .../tools/img/eventdev_pipeline_queue_test.svg | 3541 > > doc/guides/tools/testeventdev.rst | 181 + > 3 files changed, 7062 insertions(

Re: [dpdk-dev] [PATCH] doc: fix link bonding pmd typo in prog guide

2018-01-15 Thread Kovacevic, Marko
Actually just one more change it would be better as "similar capabilities" instead of "the similar capabilities" The Link Bonding PMD library(librte_pmd_bond) supports bonding of groups of ``rte_eth_dev`` ports of the same speed and duplex to provide similar capabilities to that found in Linux

Re: [dpdk-dev] [PATCH v2] doc: fix link bonding PMD typo in prog guide

2018-01-15 Thread Kovacevic, Marko
Actually just one more change it would be better as "similar capabilities" instead of "the similar capabilities" The Link Bonding PMD library(librte_pmd_bond) supports bonding of groups of ``rte_eth_dev`` ports of the same speed and duplex to provide similar capabilities to that found in Li

Re: [dpdk-dev] [PATCH] doc: remove UTF-8 BOM from programmer's guide

2018-01-15 Thread Kovacevic, Marko
> Signed-off-by: Anatoly Burakov > doc/guides/prog_guide/member_lib.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH v2 11/16] doc: add documents for AMD axgbe Ethernet PMD

2018-01-15 Thread Kovacevic, Marko
> >> Signed-off-by: Ravi Kumar > >> doc/guides/nics/axgbe.rst | 211 > + > >> doc/guides/nics/features/axgbe.ini | 14 +++ > >> doc/guides/nics/index.rst | 1 + > >> 3 files changed, 226 insertions(+) Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH v2 15/15] doc: update example eventdev pipeline

2018-01-16 Thread Kovacevic, Marko
> Signed-off-by: Pavan Nikhilesh > Acked-by: Kevin Laatz > .../{eventdev_pipeline_sw_pmd.rst => eventdev_pipeline.rst} | 6 > +++--- > doc/guides/sample_app_ug/index.rst | 2 +- > 2 files changed, 4 insertions(+), 4 deletions(-) rename > doc/guides/sa

Re: [dpdk-dev] [PATCH 12/12 v3] doc: add DPAA eventdev guide

2018-01-16 Thread Kovacevic, Marko
If a V4 has been sent up can you please supersede this patch please

Re: [dpdk-dev] [PATCH 01/18] doc/contrib: document dynamic logging format

2018-01-25 Thread Kovacevic, Marko
> This commit adds a section to the DPDK style guide to set the dynamic logging > formatting naming scheme. > > Signed-off-by: Harry van Haaren > > > Maintainer: > Cc: marko.kovace...@intel.com > > doc/guides/contributing/coding_style.rst | 53 > > 1 file chang

Re: [dpdk-dev] [PATCH] doc: add driver limitation for vhost dequeue zero copy

2018-03-13 Thread Kovacevic, Marko
> > Signed-off-by: Junjie Chen > > --- > > doc/guides/sample_app_ug/vhost.rst | 5 - > > 1 file changed, 4 insertions(+), 1 deletion(-) > > > > diff --git a/doc/guides/sample_app_ug/vhost.rst > > b/doc/guides/sample_app_ug/vhost.rst > > index a4bdc6a..1591a31 100644 > > --- a/doc/guides/sampl

[dpdk-dev] [PATCH v1 2/2] crypto/aesni_gcm: support IPsec Multi-buffer lib v0.49

2018-03-27 Thread Kovacevic, Marko
Signed-off-by: Marko Kovacevic --- devtools/test-build.sh | 3 --- doc/guides/cryptodevs/aesni_gcm.rst | 13 ++--- drivers/crypto/aesni_gcm/Makefile| 10 +- drivers/crypto/aesni_gcm/aesni_gcm_ops.h | 3 +-- mk/rte.app.mk

[dpdk-dev] [PATCH v1 1/2] crypto/aesni_mb: support IPsec MUlti-buffer lib v0.49

2018-03-27 Thread Kovacevic, Marko
From: Marko Kovacevic Signed-off-by: Marko Kovacevic --- devtools/test-build.sh | 2 -- doc/guides/cryptodevs/aesni_mb.rst | 13 ++--- drivers/crypto/aesni_mb/Makefile | 10 +- drivers/crypto/aesni_mb/aesni_mb_ops.h | 3 +-- drivers/cr

[dpdk-dev] [PATCH v1] crypto/aesni_mb: support AES CMAC

2018-03-27 Thread Kovacevic, Marko
From: Marko Kovacevic Signed-off-by: Marko Kovacevic --- doc/guides/cryptodevs/aesni_mb.rst | 1 + doc/guides/cryptodevs/features/aesni_mb.ini| 2 +- doc/guides/cryptodevs/features/default.ini | 1 + doc/guides/rel_notes/release_18_05.rst | 6 ++

Re: [dpdk-dev] [PATCH] doc: update procinfo for shared library

2018-01-30 Thread Kovacevic, Marko
> added note category to procinfo guide, to intimate users in shared library > mode. > Procinfo requires same NIC libraries to probe the NIC devices as Primary > Application. > > Signed-off-by: Vipin Varghese > > doc/guides/tools/proc_info.rst | 6 ++ Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH v1] mk: fix external build failure

2018-02-05 Thread Kovacevic, Marko
> 05/02/2018 11:22, Marko Kovacevic: > > Updated the make build to fix external build issues > > Please explain what is the issue. > > > Fixes: 3a5c339d51a4 ("mk: support renamed Makefile in external project") > > Cc: sta...@dpdk.org > > No need to Cc stable when fixing a bug which is not in a m

Re: [dpdk-dev] [PATCH 1/8] vhost: add security model documentation to vhost_user.c

2018-02-06 Thread Kovacevic, Marko
> Input validation is not applied consistently in vhost_user.c. This suggests > that > not everyone has the same security model in mind when working on the > code. > > Make the security model explicit so that everyone can understand and follow > the same model when modifying the code. > > Signe

Re: [dpdk-dev] [PATCH] doc: add info on hyperthreading to power library

2018-02-06 Thread Kovacevic, Marko
> Signed-off-by: David Hunt > --- > doc/guides/prog_guide/power_man.rst | 8 > 1 file changed, 8 insertions(+) > > diff --git a/doc/guides/prog_guide/power_man.rst > b/doc/guides/prog_guide/power_man.rst <...> Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH] doc: update i40e guide

2018-02-06 Thread Kovacevic, Marko
> This patch updates the i40e guide with new device parameter support-multi- > driver. > > Signed-off-by: Beilei Xing > Cc: sta...@dpdk.org > > doc/guides/nics/i40e.rst | 11 +++ > 1 file changed, 11 insertions(+) > Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH 1/8] vhost: add security model documentation to vhost_user.c

2018-02-06 Thread Kovacevic, Marko
<...> > > This is a useful comment but I don't know if it makes sense to include it in > the vhost_user.c file. > > > > Particularly at the top where it looks like a general descriptive comment > > for > the file. > > > > It would probably be better in the vhost-user section of the programmer's >

Re: [dpdk-dev] [PATCH v4] doc: convert Intel sharing license headers to SPDX tags

2018-02-06 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH v4] doc: convert Intel sharing license headers to > SPDX tags > > Signed-off-by: Ferruh Yigit > Acked-by: Bruce Richardson > --- > v3: Intel ones sharing copyright > --- > doc/guides/linux_gsg/linux_drivers.rst | 28 +--- <...> Acked-by: Mar

Re: [dpdk-dev] [PATCH] doc: fix release note for rawdev library

2018-02-06 Thread Kovacevic, Marko
> Signed-off-by: Shreyansh Jain > --- > doc/guides/rel_notes/release_18_02.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH] doc/ip_pipeline.rst: update f_post_init and correct f_track

2018-02-07 Thread Kovacevic, Marko
> Update f_post_init for pipeline frontend. > Move f_track from pipeline backend to pipeline frontend. > > Signed-off-by: longtb5 > > doc/guides/sample_app_ug/ip_pipeline.rst | 6 -- > 1 file changed, 4 insertions(+), 2 deletions(-) Everything Is ok formatting wise and info the only I see i

Re: [dpdk-dev] [PATCH] doc: fixing grammar

2018-03-07 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Alejandro Lucero > Sent: Thursday, February 22, 2018 12:16 PM > To: dev@dpdk.org > Cc: sta...@dpdk.org > Subject: [dpdk-dev] [PATCH] doc: fixing grammar > > My english is far worse than those from the marketing t

Re: [dpdk-dev] [PATCH 12/12] doc: update vhost crypto documentation

2017-12-12 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Fan Zhang > Sent: Monday, November 27, 2017 8:01 PM > To: dev@dpdk.org > Cc: Zhang, Roy Fan ; y...@fridaylinux.org; > maxime.coque...@redhat.com; Bie, Tiwei > Subject: [dpdk-dev] [PATCH 12/12] doc: update vhost c

Re: [dpdk-dev] [PATCH v2] doc: update oldest supported kernel in Linux guide

2017-12-12 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Thomas Monjalon > Sent: Tuesday, November 28, 2017 10:02 PM > To: dev@dpdk.org > Cc: step...@networkplumber.org; bl...@debian.org > Subject: [dpdk-dev] [PATCH v2] doc: update oldest supported kernel in Linux > gui

Re: [dpdk-dev] [PATCH] doc: fix issues in metrics example

2017-12-12 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Mattias Rönnblom > Sent: Wednesday, November 29, 2017 9:29 AM > To: Mcnamara, John > Cc: dev@dpdk.org; Mattias Rönnblom > Subject: [dpdk-dev] [PATCH] doc: fix issues in metrics example > > The metrics example d

Re: [dpdk-dev] [RFC PATCH 3/3] doc: ethdev ABI change deprecation notice

2017-12-12 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Konstantin Ananyev > Sent: Friday, December 1, 2017 2:48 PM > To: dev@dpdk.org; dev@dpdk.org > Cc: Ananyev, Konstantin > Subject: [dpdk-dev] [RFC PATCH 3/3] doc: ethdev ABI change deprecation notice > > Signed-o

Re: [dpdk-dev] [PATCH] doc: add i40e limitation of DCB function

2017-12-12 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Beilei Xing > Sent: Tuesday, December 12, 2017 7:19 AM > To: Mcnamara, John > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH] doc: add i40e limitation of DCB function > > This patch adds limitation of DCB functio

Re: [dpdk-dev] [PATCH 7/7] doc: update eventdev documentation

2017-12-13 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Pavan Nikhilesh > Sent: Tuesday, December 12, 2017 7:27 PM > To: jerin.ja...@caviumnetworks.com; Richardson, Bruce > ; Van Haaren, Harry > ; Eads, Gage ; > hemant.agra...@nxp.com; nipun.gu...@nxp.com; Ma, Liang J

Re: [dpdk-dev] [PATCH 6/6] doc: add DPAA eventdev guide

2017-12-15 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Sunil Kumar Kori > Sent: Friday, December 15, 2017 1:00 PM > To: jerin.ja...@caviumnetworks.com > Cc: dev@dpdk.org; hemant.agra...@nxp.com > Subject: [dpdk-dev] [PATCH 6/6] doc: add DPAA eventdev guide > > Signed

Re: [dpdk-dev] [PATCH v3 4/4] doc: update documentation for flow classify lib

2017-12-18 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Jasvinder Singh > Sent: Friday, December 15, 2017 10:39 AM > To: dev@dpdk.org > Cc: Iremonger, Bernard > Subject: [dpdk-dev] [PATCH v3 4/4] doc: update documentation for flow classify > lib > > Updates the docum

Re: [dpdk-dev] [PATCH v3 5/5] bbdev: documentation

2017-12-18 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Amr Mokhtar > Sent: Thursday, December 7, 2017 9:41 PM > To: dev@dpdk.org > Cc: tho...@monjalon.net; Burakov, Anatoly ; De > Lara Guarch, Pablo ; Power, Niall > ; Macnamara, Chris ; > Mokhtar, Amr > Subject: [dpd

Re: [dpdk-dev] [PATCH] doc: update IPSec Multi-buffer lib versioning

2017-12-20 Thread Kovacevic, Marko
> -Original Message- > From: dev [mailto:dev-boun...@dpdk.org] On Behalf Of Pablo de Lara > Sent: Tuesday, December 19, 2017 9:28 AM > To: Mcnamara, John ; Doherty, Declan > > Cc: dev@dpdk.org; De Lara Guarch, Pablo > Subject: [dpdk-dev] [PATCH] doc: update IPSec Multi-buffer lib versio

Re: [dpdk-dev] [PATCH ] doc: fix two typos in contributing guide

2019-03-15 Thread Kovacevic, Marko
> This patch fixes two typos in the coding style part of DPDK contributing > guide: > > - The header entry should have .h file instead of .c file. > - The will->This will > > Fixes: 44a6dface13b ("doc: describe how to add new components") > > Signed-off-by: Rami Rosen > --- > doc/guides/contr

Re: [dpdk-dev] [PATCH] doc: note validation commitment required for stables

2019-03-25 Thread Kovacevic, Marko
> Subject: [PATCH] doc: note validation commitment required for stables > > If a stable branch for a specific DPDK release is to proceed, along with > needing a maintainer, there should also be commitment from major > contributors for validation of the releases. > > Signed-off-by: Kevin Traynor

Re: [dpdk-dev] [PATCH] doc: fix a typo in procinfo guide

2019-03-25 Thread Kovacevic, Marko
> Subject: [PATCH] doc: fix a typo in procinfo guide > > This patch fixes a trivial info in proc info section. > informationi=>information. > > Fixes: 8a37f37fc243 ("app/procinfo: add --show-port") > > Signed-off-by: Rami Rosen > --- > doc/guides/tools/proc_info.rst | 2 +- > 1 file changed, 1

Re: [dpdk-dev] [PATCH 3/3] doc/rcu: add lib_rcu documentation

2019-03-25 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH 3/3] doc/rcu: add lib_rcu documentation > > Add lib_rcu QSBR API and programmer guide documentation. > > Signed-off-by: Honnappa Nagarahalli > > --- > doc/api/doxy-api-index.md | 3 +- > doc/api/doxy-api.conf.in | 1 + >

Re: [dpdk-dev] [PATCH] doc: clarify spaces for alignment note

2019-03-25 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH] doc: clarify spaces for alignment note > > Make clear that spaces are only for alignments less than tab size. > > Signed-off-by: Kevin Traynor > --- > doc/guides/contributing/coding_style.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a

Re: [dpdk-dev] [PATCH] doc: update bnxt guide

2020-05-14 Thread Kovacevic, Marko
Few spelling mistakes: 0001-doc-update-bnxt-guide.patch 89c89 < -Vector mode receive will be enabled if the following constraint's are met: --- > -Vector mode receive will be enabled if the following constrainsts are met: 96c96 < -Vector mode transmit will be enabled if the following constraint's

Re: [dpdk-dev] [PATCH v1 1/2] doc/failsafe: improve fail-safe documentation

2020-03-03 Thread Kovacevic, Marko
Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH] fips_validation: fix auth verify

2019-11-18 Thread Kovacevic, Marko
Acked-by: Marko Kovacevic

Re: [dpdk-dev] [PATCH] vhost/crypto: fix inferred misuse of enum

2019-06-17 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH] vhost/crypto: fix inferred misuse of enum > > This patch fixes the inferred misuse of enum of crypto algorithms. > > Coverity issue: 325879 > Fixes: e80a98708166 ("vhost/crypto: add session message handler") > Cc: sta...@dpdk.org > > Signed-off-by: Fan Zhang > ---

Re: [dpdk-dev] [PATCH v3 1/3] examples/fips_validation: add TDES ECB support

2019-10-15 Thread Kovacevic, Marko
Subject: [PATCH v3 1/3] examples/fips_validation: add TDES ECB support From: Michael Shamis Signed-off-by: Michael Shamis --- examples/fips_validation/fips_validation.c| 1 + examples/fips_validation/fips_validation.h| 7 + .../fips_validation/fips_validation_tdes.c| 7 +

Re: [dpdk-dev] [PATCH v3 2/3] examples/fips_validation: add AES ECB support

2019-10-15 Thread Kovacevic, Marko
Subject: [PATCH v3 2/3] examples/fips_validation: add AES ECB support From: Michael Shamis Signed-off-by: Michael Shamis --- .../fips_validation/fips_validation_aes.c | 1 + examples/fips_validation/main.c | 96 +-- 2 files changed, 91 insertions(+), 6 dele

Re: [dpdk-dev] [PATCH v3 3/3] examples/fips_validation: separate ECB and CBC

2019-10-15 Thread Kovacevic, Marko
Subject: [PATCH v3 3/3] examples/fips_validation: separate ECB and CBC From: Michael Shamis Separate initialization of IV, PT and CT according to TDES ECB and CBC crypto modes Signed-off-by: Michael Shamis --- examples/fips_validation/main.c | 66 + 1 file cha

Re: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return value

2019-06-17 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH] examples/vhost_crypto: fix unchecked return > value > > This patch tries to fix the coverity issue of unchecked return value. Since > the > function that causes the problem is unused, it is removed completely. > > Coverity issue: 336816 > Fixes: f5188211c721 ("examp

Re: [dpdk-dev] [PATCH] vhost/crypto: fix logically dead code

2019-06-17 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH] vhost/crypto: fix logically dead code > > This patch fixes a few same class bugs that causes the logically dead code in > vhost_crypto. > > Coverity issue: 277236 > Coverity issue: 277233 > Coverity issue: 277220 > Coverity issue: 277214 > > Fixes: 3bb595ecd682 ("vh

Re: [dpdk-dev] [PATCH] examples/fips_validation: fix logically dead code

2019-06-17 Thread Kovacevic, Marko
> Subject: [dpdk-dev] [PATCH] examples/fips_validation: fix logically dead > code > > Coverity issue: 336866 > Coverity issue: 336841 > Coverity issue: 336838 > Fixes: 41d561cbdd24 ("examples/fips_validation: add power on self test") > > Signed-off-by: Fan Zhang > --- > examples/fips_validation

<    1   2