[dpdk-dev] [PATCH v1 1/2] test/compress: add out of space test

2018-12-14 Thread Marko Kovacevic
From: "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: Marko Kovacevic --- test/test/tes

[dpdk-dev] [PATCH v1 2/2] test/compress: add varied buffer input/outputs

2018-12-14 Thread Marko Kovacevic
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: Marko Kovacevic --- test/test/test_compressdev.c | 185

[dpdk-dev] [PATCH v2 1/2] test/compress: add out of space test

2018-12-20 Thread Marko Kovacevic
From: "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: Marko Kovacevic Acked-by: Lee Daly

[dpdk-dev] [PATCH v2 2/2] test/compress: add varied buffer input/outputs

2018-12-20 Thread Marko Kovacevic
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: Marko Kovacevic Acked-by: Lee Daly --- test/test/test_compressdev.c | 173

[dpdk-dev] [PATCH v4 0/8] FIPS validation capability

2018-10-12 Thread Marko Kovacevic
system will pass FIPS certification. Marko Kovacevic (8): v4: - Added Limitation - Changed TDES BLOCK SIZE from 16 -> 8 as DES block size is 64bits (main.c) v3: - Fixed a no-testing bug - Fixed some code style issue v2: - Refactor the code. - Move the code from test to sample applcation examp

[dpdk-dev] [PATCH v4 1/8] examples: add fips validation into examples

2018-10-12 Thread Marko Kovacevic
Added FIPS application into the examples to allow users to use a simple sample app to validate their systems and be able to get FIPS certification. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang --- examples/cryptodev_fips_validate/Makefile | 69

[dpdk-dev] [PATCH v4 2/8] examples: add aes parser and enablement for test types

2018-10-12 Thread Marko Kovacevic
Added enablement for AES-CBC parser, to allow the application to parser the aes request file and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang --- examples/cryptodev_fips_validate/Makefile | 1 + .../cryptodev_fips_parse_aes.c

[dpdk-dev] [PATCH v4 4/8] examples: add TDES parser and enablement for test types

2018-10-12 Thread Marko Kovacevic
Added enablement for TDES parser, to allow the application to parser the TDES request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang --- examples/cryptodev_fips_validate/Makefile | 1 + .../cryptodev_fips_parse_3des.c

[dpdk-dev] [PATCH v4 5/8] examples: add gcm parser

2018-10-12 Thread Marko Kovacevic
Added enablement for GCM parser, to allow the application to parser the GCM request file and to validate all tests supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang --- examples/cryptodev_fips_validate/Makefile | 1 + .../cryptodev_fips_parse_gcm.c

[dpdk-dev] [PATCH v4 3/8] examples: add hmac parser

2018-10-12 Thread Marko Kovacevic
Added enablement for HMAC parser, to allow the application to parser the hmac request files and to validate all tests supported Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang --- examples/cryptodev_fips_validate/Makefile | 1 + .../cryptodev_fips_parse_hmac.c

[dpdk-dev] [PATCH v4 6/8] examples: add cmac parser and enablement for test types

2018-10-12 Thread Marko Kovacevic
Added enablement for CMAC parser, to allow the application to parser the cmac request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang --- examples/cryptodev_fips_validate/Makefile | 1 + .../cryptodev_fips_parse_cmac.c

[dpdk-dev] [PATCH v4 7/8] examples: add ccm parser and enablement for test types

2018-10-12 Thread Marko Kovacevic
Added enablement for CCM parser, to allow the application to parser the ccm request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang --- examples/cryptodev_fips_validate/Makefile | 1 + .../cryptodev_fips_parse_ccm.c

[dpdk-dev] [PATCH v4 8/8] doc: add guides for fips validation

2018-10-12 Thread Marko Kovacevic
Document explains how to run the fips sample app and instructions users need to parser all the request files and generate the response files. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang --- doc/guides/rel_notes/release_18_11.rst | 6 ++ doc/guides/sample_app_ug

[dpdk-dev] [PATCH v5 1/8] examples/cryptodev_fips_validate: add fips validation into examples

2018-10-17 Thread Marko Kovacevic
Added FIPS application into the examples to allow users to use a simple sample app to validate their systems and be able to get FIPS certification. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/cryptodev_fips_validate/Makefile | 69

[dpdk-dev] [PATCH v5 0/8] FIPS validation capability

2018-10-17 Thread Marko Kovacevic
system will pass FIPS certification. Marko Kovacevic (8): v5: - Changed patch titles - Added MAINTAINERS File - Removed bus_pci Dependency - Updated documentation - Changed app name v4: - Added Limitation - Changed TDES BLOCK SIZE from 16 -> 8 as DES block size is 64bits (main.c)

[dpdk-dev] [PATCH v5 2/8] examples/cryptodev_fips_validate: add aes parser and enablement for test types

2018-10-17 Thread Marko Kovacevic
Added enablement for AES-CBC parser, to allow the application to parser the aes request file and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/cryptodev_fips_validate/Makefile | 1

[dpdk-dev] [PATCH v5 5/8] examples/cryptodev_fips_validate: add gcm parser

2018-10-17 Thread Marko Kovacevic
Added enablement for GCM parser, to allow the application to parser the GCM request file and to validate all tests supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/cryptodev_fips_validate/Makefile | 1

[dpdk-dev] [PATCH v5 4/8] examples/cryptodev_fips_validate: add TDES parser and enablement for test types

2018-10-17 Thread Marko Kovacevic
Added enablement for TDES parser, to allow the application to parser the TDES request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/cryptodev_fips_validate/Makefile | 1

[dpdk-dev] [PATCH v5 6/8] examples/cryptodev_fips_validate: add cmac parser and enablement for test types

2018-10-17 Thread Marko Kovacevic
Added enablement for CMAC parser, to allow the application to parser the cmac request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/cryptodev_fips_validate/Makefile | 1

[dpdk-dev] [PATCH v5 7/8] examples/cryptodev_fips_validate: add ccm parser and enablement for test types

2018-10-17 Thread Marko Kovacevic
Added enablement for CCM parser, to allow the application to parser the ccm request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/cryptodev_fips_validate/Makefile | 1

[dpdk-dev] [PATCH v5 3/8] examples/cryptodev_fips_validate: add hmac parser

2018-10-17 Thread Marko Kovacevic
Added enablement for HMAC parser, to allow the application to parser the hmac request files and to validate all tests supported Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/cryptodev_fips_validate/Makefile | 1

[dpdk-dev] [PATCH v5 8/8] doc/guides/sample_app_ug: add guides for fips validation

2018-10-17 Thread Marko Kovacevic
Document explains how to run the fips sample app and instructions users need to parser all the request files and generate the response files. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- MAINTAINERS | 4 + doc/guides

Re: [dpdk-dev] [PATCH v5 4/8] examples/cryptodev_fips_validate: add TDES parser and enablement for test types

2018-10-24 Thread Marko Kovacevic
On 24/10/2018 13:31, Akhil Goyal wrote: better to be uniform with the name TDES or 3DES sure will make it uniform On 10/17/2018 6:19 PM, Marko Kovacevic wrote: Added enablement for TDES parser, to allow the application to parser the TDES request files and to validate all test types

Re: [dpdk-dev] [PATCH v5 1/8] examples/cryptodev_fips_validate: add fips validation into examples

2018-10-24 Thread Marko Kovacevic
On 24/10/2018 13:13, Akhil Goyal wrote: On 10/17/2018 6:19 PM, Marko Kovacevic wrote: Added FIPS application into the examples to allow users to use a simple sample app to validate their systems and be able to get FIPS certification. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang

Re: [dpdk-dev] [PATCH v5 2/8] examples/cryptodev_fips_validate: add aes parser and enablement for test types

2018-10-24 Thread Marko Kovacevic
On 24/10/2018 13:37, Akhil Goyal wrote: On 10/17/2018 6:19 PM, Marko Kovacevic wrote: diff --git a/examples/cryptodev_fips_validate/cryptodev_fips_validate.h b/examples/cryptodev_fips_validate/cryptodev_fips_validate.h index beb6bed..5ac858d 100644 --- a/examples/cryptodev_fips_validate

Re: [dpdk-dev] [PATCH v5 1/8] examples/cryptodev_fips_validate: add fips validation into examples

2018-10-24 Thread Marko Kovacevic
On 24/10/2018 15:36, Akhil Goyal wrote: On 10/24/2018 7:47 PM, Marko Kovacevic wrote: On 24/10/2018 13:13, Akhil Goyal wrote: On 10/17/2018 6:19 PM, Marko Kovacevic wrote: snip [..] +int +fips_test_parse_one_case(void) +{ +    uint32_t i, j = 0; +    uint32_t is_interim = 0; +    int ret

[dpdk-dev] [PATCH v6 0/8] FIPS validation capability

2018-10-26 Thread Marko Kovacevic
y can then verify and be sure their system will pass FIPS certification. Marko Kovacevic (8): v6: - Added MAINTAINER file into different patch - Udpated documentation - Changed app name and file location - Fixed memory leak in TDES - Changed patch titles - Made other changes from c

[dpdk-dev] [PATCH v6 3/8] examples/fips_validation: support HMAC parsing

2018-10-26 Thread Marko Kovacevic
From: "Kovacevic, Marko" Added enablement for HMAC parser, to allow the application to parser the hmac request files and to validate all tests supported Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/fips_validation/Makefile

[dpdk-dev] [PATCH v6 2/8] examples/fips_validation: support AES parsing

2018-10-26 Thread Marko Kovacevic
From: "Kovacevic, Marko" Added enablement for AES-CBC parser, to allow the application to parser the aes request file and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/fips_validatio

[dpdk-dev] [PATCH v6 5/8] examples/fips_validation: support GCM parsing

2018-10-26 Thread Marko Kovacevic
From: "Kovacevic, Marko" Added enablement for GCM parser, to allow the application to parser the GCM request file and to validate all tests supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/fips_validation/Makefile

[dpdk-dev] [PATCH v6 4/8] examples/fips_validation: support TDES parsing

2018-10-26 Thread Marko Kovacevic
From: "Kovacevic, Marko" Added enablement for TDES parser, to allow the application to parser the TDES request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/fips_validatio

[dpdk-dev] [PATCH v6 1/8] examples/fips_validation: add cryptodev fips compliant application

2018-10-26 Thread Marko Kovacevic
From: "Kovacevic, Marko" Added FIPS application into the examples to allow users to use a simple sample app to validate their systems and be able to get FIPS certification. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- M

[dpdk-dev] [PATCH v6 7/8] examples/fips_validation: support CCM parsing

2018-10-26 Thread Marko Kovacevic
From: "Kovacevic, Marko" Added enablement for CCM parser, to allow the application to parser the ccm request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/fips_validatio

[dpdk-dev] [PATCH v6 6/8] examples/fips_validation: support CMAC parsing

2018-10-26 Thread Marko Kovacevic
From: "Kovacevic, Marko" Added enablement for CMAC parser, to allow the application to parser the cmac request files and to validate all test types supported. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- examples/fips_validatio

[dpdk-dev] [PATCH v6 8/8] doc: add fips validation application guide

2018-10-26 Thread Marko Kovacevic
From: "Kovacevic, Marko" Document explains how to run the fips sample app and instructions users need to parser all the request files and generate the response files. Signed-off-by: Marko Kovacevic Signed-off-by: Fan Zhang Acked-by: Arek Kusztal --- doc/guides/rel_notes/release

[dpdk-dev] [PATCH] doc: fix pdf build

2018-11-02 Thread Marko Kovacevic
PDF build was failing in the howto guides found the weird character causing the issue Fixes: 6e9270eab112 ("doc: add telemetry how-to") Cc: ciara.po...@intel.com Signed-off-by: Marko Kovacevic --- doc/guides/howto/telemetry.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)

[dpdk-dev] [PATCH] examples/fips_validation: fix compilation issue

2018-11-06 Thread Marko Kovacevic
Fixed compilation issue with variable which may be used uninitialized Fixes: 527cbf3d5ee3 ("examples/fips_validation: support TDES parsing") Cc: marko.kovace...@intel.com Signed-off-by: Marko Kovacevic --- examples/fips_validation/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3

[dpdk-dev] [PATCH] examples/fips_validation: fix coverity bug

2018-11-07 Thread Marko Kovacevic
Fixing a bug raised in coverity using uninitialized value. Coverity issue: 325881 Fixes: 527cbf3d5ee3 ("examples/fips_validation: support TDES parsing") Cc: marko.kovace...@intel.com Signed-off-by: Marko Kovacevic --- examples/fips_validation/fips_validation_tdes.c | 2 +- 1 file

[dpdk-dev] [PATCH] examples/fips_validation: fix uninitialized pointer read

2018-11-07 Thread Marko Kovacevic
Fixing a bug raised in coverity using uninitialized value. Coverity issue: 325881 Fixes: 527cbf3d5ee3 ("examples/fips_validation: support TDES parsing") Cc: marko.kovace...@intel.com Signed-off-by: Marko Kovacevic --- examples/fips_validation/fips_validation_tdes.c | 2 +- 1 file

[dpdk-dev] [PATCH] app/pdump: fix port id storage size

2018-11-13 Thread Marko Kovacevic
port_id size should be uint16_t, fix where it is defined as uint8_t Fixes: f8244c6399d9 ("ethdev: increase port id range") Cc: zhiyong.y...@intel.com Signed-off-by: Marko Kovacevic --- app/pdump/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/pdum

[dpdk-dev] [PATCH] app/pdump: fix port id storage size

2018-11-13 Thread Marko Kovacevic
port_id size should be uint16_t, fix where it is defined as uint8_t Fixes: f8244c6399d9 ("ethdev: increase port id range") Cc: zhiyong.y...@intel.com Signed-off-by: Marko Kovacevic --- app/pdump/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/pdum

[dpdk-dev] [PATCH v2] app/pdump: fix port id storage size

2018-11-13 Thread Marko Kovacevic
port_id size should be uint16_t, fix where it is defined as uint8_t Fixes: f8244c6399d9 ("ethdev: increase port id range") Cc: zhiyong.y...@intel.com Cc: sta...@dpdk.org Signed-off-by: Marko Kovacevic -- v2: Added cc to stable --- app/pdump/main.c | 6 +++--- 1 file changed, 3

[dpdk-dev] [PATCH v3] app/pdump: fix port id storage size

2018-11-14 Thread Marko Kovacevic
port_id size should be uint16_t, fix where it is defined as uint8_t Fixes: f8244c6399d9 ("ethdev: increase port id range") Cc: zhiyong.y...@intel.com Cc: sta...@dpdk.org Signed-off-by: Marko Kovacevic -- v2: Added cc to stable v3: Changed two more values to uint16_t (Reshma) ---

[dpdk-dev] [PATCH v1] doc: fix sample application formatting

2018-08-16 Thread Marko Kovacevic
Fixed formatting an extra header was added making it an extra section when it was not intended. Fixes: d0dff9ba445e ("doc: sample application user guide") Cc: bernard.iremon...@intel.com Signed-off-by: Marko Kovacevic --- doc/guides/sample_app_ug/ip_reassembly.rst | 4 ++-- 1 file

[dpdk-dev] [PATCH] doc: fix build issue with pdf doc

2018-04-25 Thread Marko Kovacevic
A .svg extension was added instead of .* which caused the pdf docs to not build this change fixes that. Fixes: a5e1231f099b ("net/szedata2: do not affect Ethernet interfaces") Cc: v...@cesnet.cz Signed-off-by: Marko Kovacevic --- doc/guides/nics/szedata2.rst | 2 +- 1 file changed, 1

[dpdk-dev] [PATCH v1 0/2] FIPS validation capability

2018-09-07 Thread Marko Kovacevic
Adding capability into DPDK to allow certification for FIPS validation, I have just added one test for one algo will be adding other algos into other versions of the patch and i will be refactoring the code and cleaning the parser once i start adding the different algos. Marko Kovacevic (2

[dpdk-dev] [PATCH v1 2/2] test/test: cryptodev application parser for FIPS certification

2018-09-07 Thread Marko Kovacevic
Added parser to parser required request file which has different algos required by the fips certification and to generate the response file needed. Signed-off-by: Marko Kovacevic --- test/test/Makefile | 3 + test/test/test_cryptodev_fips_parse.h| 156

[dpdk-dev] [PATCH v1 1/2] test/test: cryptodev application for FIPS certification

2018-09-07 Thread Marko Kovacevic
Adding initial set up for the FIPS ceritifcation into DPDK, more algos will be added in other versions of the code. Also documentation will be added with steps on how to run. Signed-off-by: Marko Kovacevic --- test/test/Makefile | 1 + test/test/test_cryptodev_fips.c | 771

[dpdk-dev] [PATCH] doc: add note into coding style

2018-09-17 Thread Marko Kovacevic
Added a note into the coding style to highlight the use of a bool within a struct Signed-off-by: Marko Kovacevic --- doc/guides/contributing/coding_style.rst | 9 + 1 file changed, 9 insertions(+) diff --git a/doc/guides/contributing/coding_style.rst b/doc/guides/contributing

[dpdk-dev] [PATCH v6] app/testpmd: add new command for show port info

2018-09-25 Thread Marko Kovacevic
From: Emma Finn existing testpmd command "show port info" is too verbose. Added a new summary command to print brief information on ports. console output: testpmd> show port summary all Number of available ports: 2 Port MAC Address Name Driver Status Link

[dpdk-dev] [PATCH v1] doc: add guides for patch fix issues

2018-05-28 Thread Marko Kovacevic
Added contribution guideline for adding tags when sending patches that have been raised on Bugzilla Signed-off-by: Marko Kovacevic --- doc/guides/contributing/patches.rst | 48 ++--- 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/doc/guides

[dpdk-dev] [PATCH v2] doc: add guides for patch fix issues

2018-05-29 Thread Marko Kovacevic
Added contribution guideline for adding tags when sending patches that have been raised on Bugzilla Signed-off-by: Marko Kovacevic Acked-by: Ferruh Yigit --- V2: removed accidental indents (Thomas) --- doc/guides/contributing/patches.rst | 21 +++-- 1 file changed, 19

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

2019-01-22 Thread Marko Kovacevic
ned-off-by: Marko Kovacevic --- test/test/test_compressdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test/test_compressdev.c b/test/test/test_compressdev.c index e8476ed..99cc390 100644 --- a/test/test/test_compressdev.c +++ b/test/test/test_compressdev.c @@ -

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

2019-01-24 Thread Marko Kovacevic
ned-off-by: Marko Kovacevic --- test/test/test_compressdev.c | 25 ++--- 1 file changed, 18 insertions(+), 7 deletions(-) diff --git a/test/test/test_compressdev.c b/test/test/test_compressdev.c index e8476ed..4db65c4 100644 --- a/test/test/test_compressdev.c +++ b

[dpdk-dev] [PATCH] qat/compress: fix qat comp setup inter_buffers

2019-01-24 Thread Marko Kovacevic
This patch fixes qat comp setup inter_buffers memory allocation size to a broader size then just 2MB Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding") Cc: fiona.tr...@intel.com Signed-off-by: Marko Kovacevic --- drivers/compress/qat/qat_comp_pmd.c | 2 +- 1 file

[dpdk-dev] [PATCH v1] doc: add SPDX Licence to doc files

2018-04-09 Thread Marko Kovacevic
Added SPDX headers to doc files to have them aligned with the other doc files. Signed-off-by: Marko Kovacevic --- doc/guides/contributing/cheatsheet.rst | 3 +++ doc/guides/contributing/coding_style.rst | 3 +++ doc/guides/contributing/design.rst | 3 +++ doc

[dpdk-dev] [PATCH v1 1/2] doc: add guidelines for coverity tags

2018-01-09 Thread Marko Kovacevic
Added contribution guideline for adding tags when sending patches that have been raised by coverity Signed-off-by: Marko Kovacevic --- doc/guides/contributing/patches.rst | 20 1 file changed, 20 insertions(+) diff --git a/doc/guides/contributing/patches.rst

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

2018-01-09 Thread Marko Kovacevic
Added contribution guideline for adding stable tags when sending patches all fix patches to the master branch that are candidates for backporting Signed-off-by: Marko Kovacevic --- doc/guides/contributing/patches.rst | 15 +++ 1 file changed, 15 insertions(+) diff --git a

[dpdk-dev] [PATCH v2 1/2] doc: add guidelines for coverity tags

2018-01-10 Thread Marko Kovacevic
Added contribution guideline for adding tags when sending patches that have been raised by coverity Signed-off-by: Marko Kovacevic --- doc/guides/contributing/patches.rst | 20 1 file changed, 20 insertions(+) diff --git a/doc/guides/contributing/patches.rst

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

2018-01-10 Thread Marko Kovacevic
Added contribution guideline for adding stable tags when sending patches all fix patches to the master branch that are candidates for backporting Signed-off-by: Marko Kovacevic --- doc/guides/contributing/patches.rst | 17 + 1 file changed, 17 insertions(+) diff --git

[dpdk-dev] [PATCH v3 1/2] doc: add guidelines for coverity tags

2018-01-16 Thread Marko Kovacevic
Added contribution guideline for adding tags when sending patches that have been raised by coverity Signed-off-by: Marko Kovacevic Acked-by: Hemant Agrawal --- doc/guides/contributing/patches.rst | 21 + 1 file changed, 21 insertions(+) diff --git a/doc

[dpdk-dev] [PATCH v3 1/2] doc: add guidelines for coverity tags

2018-01-16 Thread Marko Kovacevic
Added contribution guideline for adding tags when sending patches that have been raised by coverity Signed-off-by: Marko Kovacevic Acked-by: Hemant Agrawal --- doc/guides/contributing/patches.rst | 21 + 1 file changed, 21 insertions(+) diff --git a/doc

[dpdk-dev] [PATCH v3 1/2] doc: add guidelines for coverity tags

2018-01-16 Thread Marko Kovacevic
Added contribution guideline for adding tags when sending patches that have been raised by coverity Signed-off-by: Marko Kovacevic Acked-by: Hemant Agrawal --- doc/guides/contributing/patches.rst | 21 + 1 file changed, 21 insertions(+) diff --git a/doc

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

2018-01-16 Thread Marko Kovacevic
Added contribution guideline for adding stable tags when sending patches all fix patches to the master branch that are candidates for backporting Signed-off-by: Marko Kovacevic Acked-by: Hemant Agrawal --- doc/guides/contributing/patches.rst | 17 + 1 file changed, 17

[dpdk-dev] [PATCH v1] mk: support building with renamed makefile

2018-01-22 Thread Marko Kovacevic
FILES_LIST make variable fixes this. Fixes: af75078fece3 ("first public release") Cc: sta...@dpdk.org Signed-off-by: Marko Kovacevic --- mk/internal/rte.extvars.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mk/internal/rte.extvars.mk b/mk/internal/rte.extvars.m

[dpdk-dev] [PATCH v1] doc: remove TUN from TAP PMD guide

2018-01-23 Thread Marko Kovacevic
From: Vipin Varghese TUN PMD is not supported, removing the refrences from Network Interface Controller Driver Tun/Tap Poll Mode Driver section Signed-off-by: Vipin Varghese --- doc/guides/nics/tap.rst | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/guides/nics/

[dpdk-dev] [PATCH v1] doc: fix bbdev test guide build

2018-01-24 Thread Marko Kovacevic
Some indentations in the bbdev test application were causing build failures. Which are solved by this commit. Fixes: f714a18885a6 ("app/testbbdev: add test application for bbdev") Cc: amr.mokh...@intel.com Signed-off-by: Marko Kovacevic --- doc/guides/tools/testbbde

[dpdk-dev] [PATCH v2] doc: fix bbdev test guide build

2018-01-24 Thread Marko Kovacevic
ned-off-by: Marko Kovacevic --- V2: Added more information into commit message about the issue doc/guides/tools/testbbdev.rst | 18 ++ 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/doc/guides/tools/testbbdev.rst b/doc/guides/tools/testbbdev.rst index c7aac4

[dpdk-dev] [PATCH v1] doc: add note in proc info for stats retrieval

2018-01-24 Thread Marko Kovacevic
Note added to outline that using proc_info for virtual devices is not supported Signed-off-by: Marko Kovacevic --- doc/guides/tools/proc_info.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/guides/tools/proc_info.rst b/doc/guides/tools/proc_info.rst index fd17e27..191ab20 100644

[dpdk-dev] [PATCH v4 1/2] doc: add generic compilation doc for all sample apps

2017-10-05 Thread Marko Kovacevic
de") Fixes: 0d8d3df6b81b ("doc: add Rx and Tx callbacks sample app user guide") Fixes: eb21185d6f21 ("doc: add flow distributor example guide") Fixes: 1443da3bbd71 ("doc: add basic forwarding skeleton user guide") Fixes: 181654b7162e ("doc: add a VXLAN sample gui

[dpdk-dev] [PATCH v4 2/2] doc: add new introduction to sample app guides

2017-10-05 Thread Marko Kovacevic
Add new Introduction Section into the sample app guides. Signed-off-by: Marko Kovacevic --- doc/guides/faq/faq.rst | 2 +- doc/guides/sample_app_ug/dist_app.rst | 2 + doc/guides/sample_app_ug/exception_path.rst| 2 +- doc/guides

[dpdk-dev] [PATCH v5 1/2] doc: add generic compilation doc for all sample apps

2017-10-09 Thread Marko Kovacevic
: Herakliusz Lipiec Signed-off-by: Marko Kovacevic Reviewed-by: John McNamara --- v5: All relevant code and comment changes made (John) doc/guides/sample_app_ug/cmd_line.rst | 21 +--- doc/guides/sample_app_ug/compiling.rst | 123 + doc/guides

[dpdk-dev] [PATCH v5 2/2] doc: add new introduction to sample app guides

2017-10-09 Thread Marko Kovacevic
Add new Introduction Section into the sample app guides. Signed-off-by: Marko Kovacevic Reviewed-by: John McNamara --- v5: All changes to your comments have been dealt with (John) doc/guides/faq/faq.rst | 2 +- doc/guides/sample_app_ug/dist_app.rst

[dpdk-dev] [PATCH v6 2/2] doc: add new introduction to sample app guides

2017-10-11 Thread Marko Kovacevic
Add new Introduction Section into the sample app guides. Signed-off-by: Marko Kovacevic Reviewed-by: John McNamara --- doc/guides/faq/faq.rst | 2 +- doc/guides/sample_app_ug/dist_app.rst | 2 + doc/guides/sample_app_ug/exception_path.rst

[dpdk-dev] [PATCH v6 1/2] doc: add generic compilation doc for all sample apps

2017-10-11 Thread Marko Kovacevic
: Herakliusz Lipiec Signed-off-by: Marko Kovacevic Reviewed-by: John McNamara --- v6: All revelant files updated, changed and fixed (John) doc/guides/sample_app_ug/cmd_line.rst | 21 +--- doc/guides/sample_app_ug/compiling.rst | 124 + doc/guides

[dpdk-dev] [PATCH v7 1/2] doc: add generic compilation doc for all sample apps

2017-10-16 Thread Marko Kovacevic
: Herakliusz Lipiec Signed-off-by: Marko Kovacevic Reviewed-by: John McNamara --- doc/guides/sample_app_ug/cmd_line.rst | 21 +--- doc/guides/sample_app_ug/compiling.rst | 124 + doc/guides/sample_app_ug/dist_app.rst | 22 +--- doc/guides

[dpdk-dev] [PATCH v7 2/2] doc: add new introduction to sample app guides

2017-10-16 Thread Marko Kovacevic
Add new Introduction Section into the sample app guides. Signed-off-by: Marko Kovacevic --- V7: removed :ref: targets. (Thomas) doc/guides/faq/faq.rst | 2 +- doc/guides/sample_app_ug/dist_app.rst | 1 + doc/guides/sample_app_ug

[dpdk-dev] [PATCH v8 1/2] doc: add generic compilation doc for all sample apps

2017-10-18 Thread Marko Kovacevic
: Herakliusz Lipiec Signed-off-by: Marko Kovacevic Reviewed-by: John McNamara --- doc/guides/sample_app_ug/cmd_line.rst | 21 +--- doc/guides/sample_app_ug/compiling.rst | 124 + doc/guides/sample_app_ug/dist_app.rst | 22 +--- doc/guides

[dpdk-dev] [PATCH v8 2/2] doc: add new introduction to sample app guides

2017-10-18 Thread Marko Kovacevic
Add new Introduction Section into the sample app guides. Signed-off-by: Marko Kovacevic --- V8: Fixed Build issue (John) doc/guides/sample_app_ug/index.rst | 2 + doc/guides/sample_app_ug/intro.rst | 153 +++-- 2 files changed, 115 insertions(+), 40

[dpdk-dev] [PATCH] examples/power: add turbo commands to help text

2017-10-19 Thread Marko Kovacevic
From: David Hunt Fixes: d191f0853378 ("examples/vm_power_manager: add per-core turbo CLI") Signed-off-by: Marko Kovacevic --- examples/vm_power_manager/guest_cli/vm_power_cli_guest.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/vm_power_manager

[dpdk-dev] [PATCH v9 1/2] doc: add generic compilation doc for all sample apps

2017-10-19 Thread Marko Kovacevic
: Herakliusz Lipiec Signed-off-by: Marko Kovacevic Reviewed-by: John McNamara --- doc/guides/sample_app_ug/cmd_line.rst | 21 +--- doc/guides/sample_app_ug/compiling.rst | 124 + doc/guides/sample_app_ug/dist_app.rst | 22 +--- doc/guides

[dpdk-dev] [PATCH v9 2/2] doc: add new introduction to sample app guides

2017-10-19 Thread Marko Kovacevic
Add new Introduction Section into the sample app guides. Signed-off-by: Marko Kovacevic --- doc/guides/sample_app_ug/intro.rst | 153 +++-- 1 file changed, 113 insertions(+), 40 deletions(-) diff --git a/doc/guides/sample_app_ug/intro.rst b/doc/guides

[dpdk-dev] [PATCH v10 2/2] doc: add new introduction to sample app guides

2017-10-25 Thread Marko Kovacevic
Add new Introduction Section into the sample app guides. Signed-off-by: Marko Kovacevic Acked-by: John McNamara --- doc/guides/sample_app_ug/intro.rst | 153 +++-- 1 file changed, 113 insertions(+), 40 deletions(-) diff --git a/doc/guides/sample_app_ug

[dpdk-dev] [PATCH v10 1/2] doc: add generic compilation doc for all sample apps

2017-10-25 Thread Marko Kovacevic
: Herakliusz Lipiec Signed-off-by: Marko Kovacevic --- doc/guides/sample_app_ug/cmd_line.rst | 21 +--- doc/guides/sample_app_ug/compiling.rst | 122 + doc/guides/sample_app_ug/dist_app.rst | 22 +--- doc/guides/sample_app_ug/ethtool.rst

[dpdk-dev] [PATCH v1 1/4] power: changed unsigned to unsigned int

2017-11-28 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- V1: Changed unsigned to unsigned int --- lib/librte_power/guest_channel.c | 6 +++--- lib/librte_power/guest_channel.h | 6 +++--- lib/librte_power/rte_power.c | 4 ++-- lib/librte_power/rte_power.h | 12

[dpdk-dev] [PATCH v1 2/4] power: clean up of acpi files

2017-11-28 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- V1: Clean up of acpi files --- lib/librte_power/Makefile | 2 +- ...e_power_acpi_cpufreq.c => power_acpi_cpufreq.c} | 32 +++--- ...e_power_acpi_cpufreq.h => power_acpi_cpufreq.h} | 28 +-

[dpdk-dev] [PATCH v1 3/4] power: clean up of kvm files

2017-11-28 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- V1: Clean of of kvm power files --- lib/librte_power/Makefile | 2 +- .../{rte_power_kvm_vm.c => power_kvm_vm.c} | 28 +++--- .../{rte_power_kvm_vm.h => power_kvm_vm.h}

[dpdk-dev] [PATCH v1 4/4] power: clean up of power common header

2017-11-28 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- V1: Clean up of power common header --- lib/librte_power/power_acpi_cpufreq.c | 2 +- lib/librte_power/{rte_power_common.h => power_common.h} | 6 +++--- lib/librte_power/rte_power.c| 2 +- 3 files changed

[dpdk-dev] [PATCH v2 1/4] power: changed unsigned to unsigned int

2017-11-28 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- lib/librte_power/guest_channel.c | 6 +++--- lib/librte_power/guest_channel.h | 6 +++--- lib/librte_power/rte_power.c | 4 ++-- lib/librte_power/rte_power.h | 12 ++-- lib/librte_power

[dpdk-dev] [PATCH v2 3/4] power: clean up of kvm files

2017-11-28 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- lib/librte_power/Makefile | 2 +- .../{rte_power_kvm_vm.c => power_kvm_vm.c} | 28 +++--- .../{rte_power_kvm_vm.h => power_kvm_vm.h} | 28 +++--- lib/librte_power/rte_p

[dpdk-dev] [PATCH v2 2/4] power: clean up of acpi files

2017-11-28 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- lib/librte_power/Makefile | 2 +- ...e_power_acpi_cpufreq.c => power_acpi_cpufreq.c} | 32 +++--- ...e_power_acpi_cpufreq.h => power_acpi_cpufreq.h} | 28 +-- lib/librte_power/rte_p

[dpdk-dev] [PATCH v2 4/4] power: clean up of power common header

2017-11-28 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- lib/librte_power/power_acpi_cpufreq.c | 2 +- lib/librte_power/{rte_power_common.h => power_common.h} | 6 +++--- lib/librte_power/rte_power.c| 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) rename

Re: [dpdk-dev] [PATCH v2 1/4] power: changed unsigned to unsigned int

2017-11-29 Thread Marko Kovacevic
, Nov 28, 2017 at 01:22:00PM +, Marko Kovacevic wrote: >> Signed-off-by: Marko Kovacevic --- > While I know that checkpatch complains about unsigned vs unsigned > int, is there some other reason for making this change wholesale in > the code? > > /Bruce

Re: [dpdk-dev] [PATCH v2 2/4] power: clean up of acpi files

2017-11-29 Thread Marko Kovacevic
led. On 28/11/2017 14:17, Bruce Richardson wrote: On Tue, Nov 28, 2017 at 01:22:01PM +, Marko Kovacevic wrote: Signed-off-by: Marko Kovacevic --- Please include a description of the work involved in the "cleanup". Makes life easier for reviewers to know what to expect and chec

[dpdk-dev] [PATCH] maintainers: claim co maintainership of docs

2017-12-05 Thread Marko Kovacevic
Signed-off-by: Marko Kovacevic --- MAINTAINERS | 1 + 1 file changed, 1 insertion(+) diff --git a/MAINTAINERS b/MAINTAINERS index f0baeb4..3ed7eb8 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -36,6 +36,7 @@ M: maintain...@dpdk.org Documentation (with overlaps) M: John McNamara +M: Marko

[dpdk-dev] [PATCH v1] doc: update definition of lcore id and lcore index

2018-01-31 Thread Marko Kovacevic
Added examples in lcore index for better explanation on various examples, Sited examples for lcore id. Signed-off-by: Marko Kovacevic --- lib/librte_eal/common/include/rte_lcore.h | 17 +++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/lib/librte_eal/common

[dpdk-dev] [PATCH v1] eal: add error check for core options

2018-02-01 Thread Marko Kovacevic
Error information on the current core usage list,mask and map were incomplete. Added states to differentiate core usage and to inform user. Signed-off-by: Marko Kovacevic --- doc/guides/testpmd_app_ug/run_app.rst | 4 lib/librte_eal/common/eal_common_options.c | 33

[dpdk-dev] [PATCH v2] doc: update definition of lcore id and lcore index

2018-02-01 Thread Marko Kovacevic
Added examples in lcore index for better explanation on various examples, Sited examples for lcore id. Signed-off-by: Marko Kovacevic --- V2: - Added clearer description to lcore id - Bruce - Reframed examples for lcore index - Bruce --- lib/librte_eal/common/include/rte_lcore.h | 14

[dpdk-dev] [PATCH v2] doc: update definition of lcore id and lcore index

2018-02-01 Thread Marko Kovacevic
Added examples in lcore index for better explanation on various examples, Sited examples for lcore id. Signed-off-by: Marko Kovacevic --- V2: - Added clearer description to lcore id - Bruce - Reframed examples for lcore index - Bruce --- lib/librte_eal/common/include/rte_lcore.h | 14

[dpdk-dev] [PATCH v2] eal: add error check for core options

2018-02-01 Thread Marko Kovacevic
Error information on the current core usage list,mask and map were incomplete. Added states to differentiate core usage and to inform user. Signed-off-by: Marko Kovacevic --- V2: - Cleaned up the logging for error cases - Anatoly --- doc/guides/testpmd_app_ug/run_app.rst | 4 lib

  1   2   >