mbox series

[v2,0/7] Add PDCP test cases

Message ID 20190930192746.16815-1-akhil.goyal@nxp.com (mailing list archive)
Headers
Series Add PDCP test cases |

Message

Akhil Goyal Sept. 30, 2019, 7:27 p.m. UTC
  This patch add test vectors and a test framework for PDCP
cplane and uplane protocol processing based on various
sequence number sizes(5/7/12/15/18).

These test cases and test vectors are validated over NXP DPAA_SEC
and DPAA2_SEC platforms.

This patchset is a split to the patch [1] which was sent as RFC.

Changes in v2:
fix checkpatch warnings

Further this patchset is dependent on [2]
[1] http://patches.dpdk.org/patch/58554/
[2] http://patches.dpdk.org/project/dpdk/list/?series=6623


Akhil Goyal (7):
  test/crypto: add PDCP cplane encap cases
  test/crypto: add PDCP cplane decap cases
  test/crypto: add PDCP uplane encap cases
  test/crypto: add PDCP uplane encap with integrity cases
  test/crypto: add PDCP uplane decap cases
  test/crypto: add PDCP cases for scatter gather bufs
  test/crypto: support wireless algos for dpaa2-sec

 app/test/Makefile                             |    1 +
 app/test/meson.build                          |    1 +
 app/test/test_cryptodev.c                     |  715 +-
 app/test/test_cryptodev_security_pdcp.c       |  590 ++
 .../test_cryptodev_security_pdcp_test_func.h  |   48 +
 ...est_cryptodev_security_pdcp_test_vectors.h | 6323 +++++++++++++++++
 6 files changed, 7671 insertions(+), 7 deletions(-)
 create mode 100644 app/test/test_cryptodev_security_pdcp.c
 create mode 100644 app/test/test_cryptodev_security_pdcp_test_func.h
 create mode 100644 app/test/test_cryptodev_security_pdcp_test_vectors.h
  

Comments

Akhil Goyal Sept. 30, 2019, 8:30 p.m. UTC | #1
> 
> This patch add test vectors and a test framework for PDCP
> cplane and uplane protocol processing based on various
> sequence number sizes(5/7/12/15/18).
> 
> These test cases and test vectors are validated over NXP DPAA_SEC
> and DPAA2_SEC platforms.
> 
> This patchset is a split to the patch [1] which was sent as RFC.
> 
> Changes in v2:
> fix checkpatch warnings
> 
> Further this patchset is dependent on [2]
> [1]
> https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fpatches.d
> pdk.org%2Fpatch%2F58554%2F&data=02%7C01%7Cakhil.goyal%40nxp.co
> m%7Cdf8803416fca4c88f3cb08d745de67ae%7C686ea1d3bc2b4c6fa92cd99c5c
> 301635%7C0%7C0%7C637054693829071299&sdata=%2BcE1X8iiVVX%2B7
> D3QHScFjSdhYNaDdLuAuxzHri4ClL8%3D&reserved=0
> [2]
> https://eur01.safelinks.protection.outlook.com/?url=http%3A%2F%2Fpatches.d
> pdk.org%2Fproject%2Fdpdk%2Flist%2F%3Fseries%3D6623&data=02%7C01
> %7Cakhil.goyal%40nxp.com%7Cdf8803416fca4c88f3cb08d745de67ae%7C686e
> a1d3bc2b4c6fa92cd99c5c301635%7C0%7C0%7C637054693829081293&sd
> ata=GZhpFRgIWjlvVowx1AruRBpM%2F2fhdnaeM9Mmai9%2FxP4%3D&rese
> rved=0
> 
> 
> Akhil Goyal (7):
>   test/crypto: add PDCP cplane encap cases
>   test/crypto: add PDCP cplane decap cases
>   test/crypto: add PDCP uplane encap cases
>   test/crypto: add PDCP uplane encap with integrity cases
>   test/crypto: add PDCP uplane decap cases
>   test/crypto: add PDCP cases for scatter gather bufs
>   test/crypto: support wireless algos for dpaa2-sec
> 
>  app/test/Makefile                             |    1 +
>  app/test/meson.build                          |    1 +
>  app/test/test_cryptodev.c                     |  715 +-
>  app/test/test_cryptodev_security_pdcp.c       |  590 ++
>  .../test_cryptodev_security_pdcp_test_func.h  |   48 +
>  ...est_cryptodev_security_pdcp_test_vectors.h | 6323 +++++++++++++++++
>  6 files changed, 7671 insertions(+), 7 deletions(-)
>  create mode 100644 app/test/test_cryptodev_security_pdcp.c
>  create mode 100644 app/test/test_cryptodev_security_pdcp_test_func.h
>  create mode 100644 app/test/test_cryptodev_security_pdcp_test_vectors.h
> 
> --
> 2.17.1

Series Applied to dpdk-next-crypto