|
Revision tags: v22.03, v22.03-rc4, v22.03-rc3, v22.03-rc2, v22.03-rc1 |
|
| #
06c047b6 |
| 09-Feb-2022 |
Stephen Hemminger <[email protected]> |
remove unnecessary null checks
Functions like free, rte_free, and rte_mempool_free already handle NULL pointer so the checks here are not necessary.
Remove redundant NULL pointer checks before free
remove unnecessary null checks
Functions like free, rte_free, and rte_mempool_free already handle NULL pointer so the checks here are not necessary.
Remove redundant NULL pointer checks before free functions found by nullfree.cocci
Signed-off-by: Stephen Hemminger <[email protected]>
show more ...
|
| #
33e71acf |
| 11-Dec-2021 |
Jerin Jacob <[email protected]> |
drivers: remove octeontx2 drivers
As per the deprecation notice, In the view of enabling unified driver for octeontx2(cn9k)/octeontx3(cn10k), removing drivers/octeontx2 drivers and replace with dri
drivers: remove octeontx2 drivers
As per the deprecation notice, In the view of enabling unified driver for octeontx2(cn9k)/octeontx3(cn10k), removing drivers/octeontx2 drivers and replace with drivers/cnxk/ which supports both octeontx2(cn9k) and octeontx3(cn10k) SoCs.
This patch does the following
- Replace drivers/common/octeontx2/ with drivers/common/cnxk/ - Replace drivers/mempool/octeontx2/ with drivers/mempool/cnxk/ - Replace drivers/net/octeontx2/ with drivers/net/cnxk/ - Replace drivers/event/octeontx2/ with drivers/event/cnxk/ - Replace drivers/crypto/octeontx2/ with drivers/crypto/cnxk/ - Rename config/arm/arm64_octeontx2_linux_gcc as config/arm/arm64_cn9k_linux_gcc - Update the documentation and MAINTAINERS to reflect the same. - Change the reference to OCTEONTX2 as OCTEON 9. Old release notes and the kernel related documentation is not accounted for this change.
Signed-off-by: Jerin Jacob <[email protected]> Acked-by: Ferruh Yigit <[email protected]> Acked-by: Akhil Goyal <[email protected]> Acked-by: Ruifeng Wang <[email protected]>
show more ...
|
|
Revision tags: v21.11, v21.11-rc4, v21.11-rc3, v21.11-rc2, v21.11-rc1 |
|
| #
418c1a54 |
| 15-Oct-2021 |
Kai Ji <[email protected]> |
test/crypto: enable chacha_poly PMD
An autotest is added for the new chacha20_poly1305 PMD. A new test case is also added for SGL test.
Signed-off-by: Kai Ji <[email protected]> Signed-off-by: Ciara
test/crypto: enable chacha_poly PMD
An autotest is added for the new chacha20_poly1305 PMD. A new test case is also added for SGL test.
Signed-off-by: Kai Ji <[email protected]> Signed-off-by: Ciara Power <[email protected]> Acked-by: Ray Kinsella <[email protected]> Acked-by: Fan Zhang <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
|
Revision tags: v21.08, v21.08-rc4, v21.08-rc3, v21.08-rc2 |
|
| #
0f678fdd |
| 20-Jul-2021 |
Suanming Mou <[email protected]> |
test/crypto: increase mbuf data payload size to 4K
Currently, there is vendor which can support bigger crypto data size. Increase the default mbuf data payload size to 4K as needed.
Signed-off-by:
test/crypto: increase mbuf data payload size to 4K
Currently, there is vendor which can support bigger crypto data size. Increase the default mbuf data payload size to 4K as needed.
Signed-off-by: Suanming Mou <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
| #
40e91195 |
| 20-Jul-2021 |
Shiri Kuzin <[email protected]> |
test/crypto: support mlx5 driver
In order to test the new mlx5 crypto PMD, the driver is added to the crypto test application.
Signed-off-by: Shiri Kuzin <[email protected]> Acked-by: Matan Azrad <
test/crypto: support mlx5 driver
In order to test the new mlx5 crypto PMD, the driver is added to the crypto test application.
Signed-off-by: Shiri Kuzin <[email protected]> Acked-by: Matan Azrad <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
|
Revision tags: v21.08-rc1 |
|
| #
5db3d7d0 |
| 25-Jun-2021 |
Tejasree Kondoj <[email protected]> |
test/crypto: enable cnxk
Enable tests for cn9k & cn10k crypto PMDs.
Signed-off-by: Ankur Dwivedi <[email protected]> Signed-off-by: Anoob Joseph <[email protected]> Signed-off-by: Archana Munig
test/crypto: enable cnxk
Enable tests for cn9k & cn10k crypto PMDs.
Signed-off-by: Ankur Dwivedi <[email protected]> Signed-off-by: Anoob Joseph <[email protected]> Signed-off-by: Archana Muniganti <[email protected]> Signed-off-by: Tejasree Kondoj <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
|
Revision tags: v21.05, v21.05-rc4, v21.05-rc3 |
|
| #
da74df7d |
| 12-May-2021 |
Ciara Power <[email protected]> |
test/crypto: move test suite parameters to header file
The testsuite params struct and ut functions are now in the cryptodev test header file. This will allow them be used outside of the cryptodev_t
test/crypto: move test suite parameters to header file
The testsuite params struct and ut functions are now in the cryptodev test header file. This will allow them be used outside of the cryptodev_test.c file. They will be used in a subsequent patch by the blockcipher test.
As a result of this change, slight renaming changes were necessary for ipsec and asym tests, to avoid a clash in names.
Signed-off-by: Ciara Power <[email protected]> Acked-by: Declan Doherty <[email protected]> Acked-by: Hemant Agrawal <[email protected]> Acked-by: Akhil Goyal <[email protected]> Tested-by: Ruifeng Wang <[email protected]>
show more ...
|
| #
8bfdd8a7 |
| 12-May-2021 |
Ciara Power <[email protected]> |
test/crypto: refactor to use sub test suites
The existing implementation runs a giant cryptodev testsuite for most autotests, which in turns runs one setup function regardless of device.
This is no
test/crypto: refactor to use sub test suites
The existing implementation runs a giant cryptodev testsuite for most autotests, which in turns runs one setup function regardless of device.
This is now broken down into multiple testsuites, that are used as sub-testsuites. Each autotest runs a general crypto parent test suite, to which the sub-testsuites are added.
For example, the AESNI_MB test runs "Cryptodev Unit Test Suite", which has a setup function only to configure testsuite params. Creation of vdevs in the setup function is no longer supported, it is expected the user does this when running the app. This autotest previously just ran the cryptodev_testsuite, but now has the smaller sub-testsuites added to the parent suite instead. The same test cases are being run as before.
The scheduler autotest creates its own parent testsuite with nested sub-testsuites, rather than using the cryptodev testsuite mentioned above. This is due to it being more complex in execution, by requiring setting different modes before running tests. The scheduler autotest no longer requires the extra test cases to attach/set mode/detach when running the blockcipher test cases for each mode. The attach/set mode/detach functionality is now tested in a sub-testsuite. When running the sub-testsuites for each mode, the attach/set mode/detach happens in the setup and teardown functions for that sub-testsuite.
Signed-off-by: Ciara Power <[email protected]> Acked-by: Declan Doherty <[email protected]> Acked-by: Hemant Agrawal <[email protected]> Acked-by: Akhil Goyal <[email protected]> Tested-by: Ruifeng Wang <[email protected]>
show more ...
|
|
Revision tags: v21.05-rc2, v21.05-rc1, v21.02, v21.02-rc4, v21.02-rc3, v21.02-rc2, v21.02-rc1, v20.11, v20.11-rc5, v20.11-rc4, v20.11-rc3, v20.11-rc2, v20.11-rc1 |
|
| #
4868f659 |
| 11-Oct-2020 |
Fan Zhang <[email protected]> |
test/crypto: add cases for raw datapath API
This patch adds the cryptodev raw API test support to unit test. In addition a new test-case for QAT PMD for the test type is enabled.
Signed-off-by: Fan
test/crypto: add cases for raw datapath API
This patch adds the cryptodev raw API test support to unit test. In addition a new test-case for QAT PMD for the test type is enabled.
Signed-off-by: Fan Zhang <[email protected]> Acked-by: Adam Dybkowski <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
| #
cee518e3 |
| 07-Oct-2020 |
Vikas Gupta <[email protected]> |
test/crypto: add bcmfs
Add global test suite for bcmfs crypto pmd
Signed-off-by: Vikas Gupta <[email protected]> Signed-off-by: Raveendra Padasalagi <[email protected]> Revie
test/crypto: add bcmfs
Add global test suite for bcmfs crypto pmd
Signed-off-by: Vikas Gupta <[email protected]> Signed-off-by: Raveendra Padasalagi <[email protected]> Reviewed-by: Ajit Khaparde <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
|
Revision tags: v20.08, v20.08-rc4, v20.08-rc3, v20.08-rc2, v20.08-rc1, v20.05, v20.05-rc4, v20.05-rc3, v20.05-rc2, v20.05-rc1 |
|
| #
305de560 |
| 13-Mar-2020 |
Arek Kusztal <[email protected]> |
test/crypto: add AES-GCM J0 case
This patch adds crypto J0 test case to AES-GCM
Signed-off-by: Arek Kusztal <[email protected]> Acked-by: Fiona Trahe <[email protected]>
|
|
Revision tags: v20.02, v20.02-rc4, v20.02-rc3, v20.02-rc2, v20.02-rc1, v19.11, v19.11-rc4, v19.11-rc3, v19.11-rc2, v19.11-rc1 |
|
| #
6995630e |
| 16-Oct-2019 |
Anoob Joseph <[email protected]> |
test/crypto: add OCTEON TX2
This patch adds the OCTEON TX2 crypto validation tests.
Signed-off-by: Ankur Dwivedi <[email protected]> Signed-off-by: Anoob Joseph <[email protected]> Signed-off-b
test/crypto: add OCTEON TX2
This patch adds the OCTEON TX2 crypto validation tests.
Signed-off-by: Ankur Dwivedi <[email protected]> Signed-off-by: Anoob Joseph <[email protected]> Signed-off-by: Tejasree Kondoj <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
| #
5adf37e6 |
| 01-Oct-2019 |
Nagadheeraj Rottela <[email protected]> |
test/crypto: add cases for Nitrox
Add aes chain test cases for Nitrox in-pace and out-of-place operations.
Signed-off-by: Nagadheeraj Rottela <[email protected]> Acked-by: Akhil Goyal <akhil
test/crypto: add cases for Nitrox
Add aes chain test cases for Nitrox in-pace and out-of-place operations.
Signed-off-by: Nagadheeraj Rottela <[email protected]> Acked-by: Akhil Goyal <[email protected]>
show more ...
|
|
Revision tags: v19.08, v19.08-rc4, v19.08-rc3, v19.08-rc2, v19.08-rc1, v19.05, v19.05-rc4, v19.05-rc3, v19.05-rc2, v19.05-rc1 |
|
| #
488f5a23 |
| 27-Mar-2019 |
Damian Nowak <[email protected]> |
test/crypto: check asymmetric crypto
This patch adds new test structure for modexp and modinv for asymmetric cryptography.
Signed-off-by: Damian Nowak <[email protected]> Acked-by: Arek Kuszt
test/crypto: check asymmetric crypto
This patch adds new test structure for modexp and modinv for asymmetric cryptography.
Signed-off-by: Damian Nowak <[email protected]> Acked-by: Arek Kusztal <[email protected]> Acked-by: Fiona Trahe <[email protected]>
show more ...
|
| #
a9de470c |
| 26-Feb-2019 |
Bruce Richardson <[email protected]> |
test: move to app directory
Since all other apps have been moved to the "app" folder, the autotest app remains alone in the test folder. Rather than having an entire top-level folder for this, we ca
test: move to app directory
Since all other apps have been moved to the "app" folder, the autotest app remains alone in the test folder. Rather than having an entire top-level folder for this, we can move it back to where it all started in early versions of DPDK - the "app/" folder.
This move has a couple of advantages: * This reduces clutter at the top level of the project, due to one less folder. * It eliminates the separate build task necessary for building the autotests using make "make test-build" which means that developers are less likely to miss something in their own compilation tests * It re-aligns the final location of the test binary in the app folder when building with make with it's location in the source tree.
For meson builds, the autotest app is different from the other apps in that it needs a series of different test cases defined for it for use by "meson test". Therefore, it does not get built as part of the main loop in the app folder, but gets built separately at the end.
Signed-off-by: Bruce Richardson <[email protected]>
show more ...
|
|
Revision tags: v19.02, v19.02-rc4, v19.02-rc3, v19.02-rc2, v19.02-rc1, v18.11, v18.11-rc5, v18.11-rc4, v18.11-rc3, v18.11-rc2, v18.11-rc1, v18.08, v18.08-rc3, v18.08-rc2, v18.08-rc1, v18.05, v18.05-rc6, v18.05-rc5, v18.05-rc4, v18.05-rc3, v18.05-rc2, v18.05-rc1, v18.02, v18.02-rc4, v18.02-rc3, v18.02-rc2, v18.02-rc1, v17.11, v17.11-rc4, v17.11-rc3, v17.11-rc2, v17.11-rc1, v17.08, v17.08-rc4, v17.08-rc3, v17.08-rc2, v17.08-rc1, v17.05, v17.05-rc4, v17.05-rc3, v17.05-rc2, v17.05-rc1, v17.02, v17.02-rc3, v17.02-rc2, v17.02-rc1 |
|
| #
c9c9c4ed |
| 13-Jan-2017 |
Tomasz Kulasek <[email protected]> |
app/test: check scatter-gather for crypto drivers
This patch provides unit tests for set of cipher/hash combinations covering currently implemented crypto PMD's and allowing to verify scatter gather
app/test: check scatter-gather for crypto drivers
This patch provides unit tests for set of cipher/hash combinations covering currently implemented crypto PMD's and allowing to verify scatter gather support.
Signed-off-by: Daniel Mrzyglod <[email protected]> Signed-off-by: Tomasz Kulasek <[email protected]> Acked-by: Declan Doherty <[email protected]>
show more ...
|
|
Revision tags: v16.11, v16.11-rc3, v16.11-rc2, v16.11-rc1 |
|
| #
ffbe3be0 |
| 04-Oct-2016 |
Slawomir Mrozowicz <[email protected]> |
app/test: add libcrypto
This patch contains unit tests for libcrypto PMD. User can use app/test application to check how to use this pmd and to verify crypto processing.
Test name is cryptodev_libc
app/test: add libcrypto
This patch contains unit tests for libcrypto PMD. User can use app/test application to check how to use this pmd and to verify crypto processing.
Test name is cryptodev_libcrypto_autotest. For performance test cryptodev_libcrypto_perftest can be used.
Signed-off-by: Piotr Azarewicz <[email protected]> Signed-off-by: Marcin Kerlin <[email protected]> Signed-off-by: Daniel Mrzyglod <[email protected]> Acked-by: Pablo de Lara <[email protected]>
show more ...
|
|
Revision tags: v16.07, v16.07-rc5, v16.07-rc4, v16.07-rc3, v16.07-rc2, v16.07-rc1 |
|
| #
27a1c471 |
| 20-Jun-2016 |
Pablo de Lara <[email protected]> |
app/test: add KASUMI crypto
Signed-off-by: Pablo de Lara <[email protected]> Acked-by: Deepak Kumar Jain <[email protected]>
|
| #
39091982 |
| 20-Jun-2016 |
Fiona Trahe <[email protected]> |
app/test: update AES SHA performance test
Updating the AES performance test in line with snow3g performance test. Output format has been updated so as to get better understanding of numbers.
Signed
app/test: update AES SHA performance test
Updating the AES performance test in line with snow3g performance test. Output format has been updated so as to get better understanding of numbers.
Signed-off-by: Fiona Trahe <[email protected]> Signed-off-by: Deepak Kumar Jain <[email protected]>
show more ...
|
| #
97fe6461 |
| 20-Jun-2016 |
Fiona Trahe <[email protected]> |
app/test: add SNOW 3G performance test
Adding performance test for snow3g wireless algorithm. Performance test can run over both software and hardware.
Signed-off-by: Fiona Trahe <fiona.trahe@intel
app/test: add SNOW 3G performance test
Adding performance test for snow3g wireless algorithm. Performance test can run over both software and hardware.
Signed-off-by: Fiona Trahe <[email protected]> Signed-off-by: Deepak Kumar Jain <[email protected]> Signed-off-by: Declan Doherty <[email protected]>
show more ...
|
|
Revision tags: v16.04, v16.04-rc4, v16.04-rc3, v16.04-rc2, v16.04-rc1 |
|
| #
8bdf665f |
| 10-Mar-2016 |
Deepak Kumar Jain <[email protected]> |
app/test: add SNOW 3G
Signed-off-by: Deepak Kumar Jain <[email protected]> Acked-by: Pablo de Lara <[email protected]>
|
| #
a0b4c5b8 |
| 10-Mar-2016 |
Fiona Trahe <[email protected]> |
cryptodev: clean up
- Fixed >80char lines in test file - Removed unused elements from stats struct - Removed unused objects in rte_cryptodev_pmd.h - Renamed variables - Replaced leading spaces with
cryptodev: clean up
- Fixed >80char lines in test file - Removed unused elements from stats struct - Removed unused objects in rte_cryptodev_pmd.h - Renamed variables - Replaced leading spaces with tabs - Improved performance results display in test
Signed-off-by: Fiona Trahe <[email protected]> Signed-off-by: Declan Doherty <[email protected]> Acked-by: Pablo de Lara <[email protected]> Acked-by: Deepak Kumar Jain <[email protected]>
show more ...
|
|
Revision tags: v2.2.0, v2.2.0-rc4, v2.2.0-rc3, v2.2.0-rc2 |
|
| #
202d375c |
| 25-Nov-2015 |
Declan Doherty <[email protected]> |
app/test: add cryptodev unit and performance tests
unit tests are run by using cryptodev_qat_autotest or cryptodev_aesni_autotest from the test apps interactive console.
performance tests are run b
app/test: add cryptodev unit and performance tests
unit tests are run by using cryptodev_qat_autotest or cryptodev_aesni_autotest from the test apps interactive console.
performance tests are run by using the cryptodev_qat_perftest or cryptodev_aesni_mb_perftest command from the test apps interactive console.
If you which to run the tests on a QAT device there must be one bound to igb_uio kernel driver.
Signed-off-by: Declan Doherty <[email protected]> Signed-off-by: John Griffin <[email protected]> Signed-off-by: Des O Dea <[email protected]> Signed-off-by: Fiona Trahe <[email protected]> Acked-by: Sergio Gonzalez Monroy <[email protected]>
show more ...
|