[PATCH v2] doc/qat: update QAT driver location

2022-07-01 Thread Rebecca Troy
resolve this error. Signed-off-by: Rebecca Troy Acked-by: Fan Zhang --- V2: - Replaced the use of 01.org with IDZ (Intel Development Zone) rather than intel.com - Updated URL for the release notes --- doc/guides/cryptodevs/qat.rst | 64 +++ 1 file changed, 49

[PATCH] crypto/qat: fix secure session check

2022-07-01 Thread Rebecca Troy
ild_request. This commit fixes that error by getting the ctx first from the private session data and then comparing ctx, rather than op->sym->sec_session, with the sess. Fixes: fb3b9f492205 ("crypto/qat: rework burst data path") Cc: kai...@intel.com Cc: sta...@dpdk.org

[PATCH v2] crypto/qat: fix docsis segmentation fault

2022-06-29 Thread Rebecca Troy
.@dpdk.org Signed-off-by: Rebecca Troy Acked-by: Fan Zhang --- V2: - Changed the bug fix to set *ctx to NULL after the first instance of EVP_CIPHER_CTX_free, rather than removing it. This will ensure NULL checks are met appropriately in further EVP_CIPHER_CTX_free calls, avoiding segmentation fau

[PATCH] crypto/qat: fix docsis segmentation fault

2022-06-27 Thread Rebecca Troy
om Cc: sta...@dpdk.org Signed-off-by: Rebecca Troy --- drivers/crypto/qat/qat_sym_session.c | 11 +++ 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/drivers/crypto/qat/qat_sym_session.c b/drivers/crypto/qat/qat_sym_session.c index e40c042ba9..568792b753 100644 --- a/drivers/

[PATCH] doc/qat: update QAT driver location

2022-06-22 Thread Rebecca Troy
resolve this error. Signed-off-by: Rebecca Troy --- doc/guides/cryptodevs/qat.rst | 108 ++ 1 file changed, 71 insertions(+), 37 deletions(-) diff --git a/doc/guides/cryptodevs/qat.rst b/doc/guides/cryptodevs/qat.rst index 613603eed1..fa664070bc 100644 --- a/doc/guides

[dpdk-dev] [PATCH v2] test/crypto: refactor DOCSIS to show hidden cases

2021-10-29 Thread Rebecca Troy
es this by removing the use of the test_DOCSIS_PROTO_all function and statically listing the test cases to run when building the test suite, which are then reported to the user by description. Signed-off-by: Rebecca Troy --- v2: - Changed references of 'docsis' to uppercase 'DO

[dpdk-dev] [PATCH v6] cryptodev: add telemetry callbacks

2021-10-26 Thread Rebecca Troy
"/cryptodev/list": [0,1,2,3]} --> /cryptodev/info,0 {"/cryptodev/info": {"device_name": ":1c:01.0_qat_sym", \ "max_nb_queue_pairs": 2}} --> /cryptodev/stats,0 {"/cryptodev/stats": {"enqueued_count": 0, "dequeued_co

[dpdk-dev] [PATCH] test/crypto: refactor docsis to show hidden cases

2021-10-22 Thread Rebecca Troy
es this by removing the use of the test_DOCSIS_PROTO_all function and statically listing the test cases to run when building the test suite, which are then reported to the user by description. Signed-off-by: Rebecca Troy --- app/test/test_cryptodev.c

[dpdk-dev] [PATCH v5] cryptodev: add telemetry callbacks

2021-10-13 Thread Rebecca Troy
"/cryptodev/list": [0,1,2,3]} --> /cryptodev/info,0 {"/cryptodev/info": {"device_name": ":1c:01.0_qat_sym", \ "max_nb_queue_pairs": 2}} --> /cryptodev/stats,0 {"/cryptodev/stats": {"enqueued_count": 0, "dequ

[dpdk-dev] [PATCH v4] cryptodev: add telemetry callbacks

2021-10-13 Thread Rebecca Troy
"/cryptodev/list": [0,1,2,3]} --> /cryptodev/info,0 {"/cryptodev/info": {"device_name": ":1c:01.0_qat_sym", \ "max_nb_queue_pairs": 2}} --> /cryptodev/stats,0 {"/cryptodev/stats": {"enqueued_count": 0, "dequeued_co

[dpdk-dev] [PATCH v3] cryptodev: add telemetry callbacks

2021-10-07 Thread Rebecca Troy
"/cryptodev/list": [0,1,2,3]} --> /cryptodev/info,0 {"/cryptodev/info": {"device_name": ":1c:01.0_qat_sym", \ "max_nb_queue_pairs": 2}} --> /cryptodev/stats,0 {"/cryptodev/stats": {"enqueued_count": 0, "dequeued

[dpdk-dev] [PATCH] cryptodev: add telemetry callbacks

2021-10-07 Thread Rebecca Troy
"/cryptodev/list": [0,1,2,3]} --> /cryptodev/info,0 {"/cryptodev/info": {"device_name": ":1c:01.0_qat_sym", \ "max_nb_queue_pairs": 2}} --> /cryptodev/stats,0 {"/cryptodev/stats": {"enqueued_count": 0, "dequeued_c

[dpdk-dev] [PATCH] test/compress: fix buffer overflow bug

2021-09-17 Thread Rebecca Troy
xes: 466a2c4bb5f4 ("test/compress: improve debug logs") Fixes: 6bbc5a923625 ("test/compress: refactor unit tests") Cc: fiona.tr...@intel.com Cc: arturx.tryb...@intel.com Cc: sta...@dpdk.org Signed-off-by: Rebecca Troy --- app/test/test_compressdev.c | 6 ++ 1 file chan

[dpdk-dev] [PATCH] test/crypto: refactor scheduler test worker PMDs

2021-09-02 Thread Rebecca Troy
. Signed-off-by: Rebecca Troy --- app/test/test_cryptodev.c | 35 ++- 1 file changed, 18 insertions(+), 17 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 9ad0b37473..843d07ba37 100644 --- a/app/test/test_cryptodev.c +++ b/app

[dpdk-dev] [PATCH] cryptodev: add telemetry callbacks

2021-08-19 Thread Rebecca Troy
0, ":1a:01.0_qat_asym": \ 1}} --> /cryptodev/stats,0 {"/cryptodev/stats": {"enqueued_count": 0, "dequeued_count": 0, \ "enqueue_err_count": 0, "dequeue_err_count": 0}} Signed-off-by: Rebecca Troy --- lib/cryptodev/rte

[dpdk-dev] [PATCH] test/crypto: use formal array size macro

2021-07-05 Thread Rebecca Troy
Replaces the use of local ARRAY_SIZE macro, which is not used anywhere else, with the formal RTE_DIM macro for better consistency in crypto unit test. Signed-off-by: Rebecca Troy --- app/test/test_cryptodev.c | 8 ++-- 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/app/test

[dpdk-dev] [PATCH] test/crypto: fix typo in ESN testcase

2021-07-01 Thread Rebecca Troy
railer") Cc: hemant.agra...@nxp.com Cc: sta...@dpdk.org Signed-off-by: Rebecca Troy --- app/test/test_cryptodev.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 39db52b17a..c5301e49ab 100644 --- a/app/test/t

[dpdk-dev] [PATCH] test/crypto: fix typo in AES testcase description

2021-07-01 Thread Rebecca Troy
Fixed typo in the testcase description for AES in the crypto unit test suite by changing the word 'Scater' to 'Scatter'. Fixes: c9c9c4ed8746 ("app/test: check scatter-gather for crypto drivers") Cc: tomaszx.kula...@intel.com Cc: sta...@dpdk.org Signed-off-b

[dpdk-dev] [PATCH] test/crypto: rename slave to worker

2021-06-30 Thread Rebecca Troy
ler_attach_worker_op, test_scheduler_detach_slave_op is test_scheduler_detach_worker_op. Signed-off-by: Rebecca Troy --- app/test/test_cryptodev.c | 18 +- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index 39db52b17a..1725d6154c 1

[dpdk-dev] [PATCH v2] test/crypto: fix autotest function parameters

2021-06-30 Thread Rebecca Troy
add dpaa crypto test cases") Fixes: a8dbd44d6b4c ("test/crypto: add CAAM JR validation cases") Fixes: 4868f6591c6f ("test/crypto: add cases for raw datapath API") Cc: declan.dohe...@intel.com Cc: jianjay.z...@huawei.com Cc: pablo.de.lara.gua...@intel.com Cc: roy.fan.zh...@int

[dpdk-dev] [PATCH] test/crypto: fix autotest function parameters

2021-06-29 Thread Rebecca Troy
add dpaa crypto test cases") Fixes: a8dbd44d6b4c ("test/crypto: add CAAM JR validation cases") Fixes: 4868f6591c6f ("test/crypto: add cases for raw datapath API") Cc: declan.dohe...@intel.com Cc: jianjay.z...@huawei.com Cc: pablo.de.lara.gua...@intel.com Cc: roy.fan.zh...@inte