X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;ds=inline;f=app%2Ftest-crypto-perf%2Fcperf_options.h;h=256fabb072a62031999121c7dec11679758ecbac;hb=66914d19d1353f2a4c610c411aa6442b166eea57;hp=350ad7e1d42845aac3ab0bf7f4d7ee5bd0a32534;hpb=ededba93fe9a7b4ebecad490047d50b024c604d3;p=dpdk.git diff --git a/app/test-crypto-perf/cperf_options.h b/app/test-crypto-perf/cperf_options.h index 350ad7e1d4..256fabb072 100644 --- a/app/test-crypto-perf/cperf_options.h +++ b/app/test-crypto-perf/cperf_options.h @@ -7,6 +7,9 @@ #include #include +#ifdef RTE_LIBRTE_SECURITY +#include +#endif #define CPERF_PTEST_TYPE ("ptest") #define CPERF_SILENT ("silent") @@ -44,6 +47,14 @@ #define CPERF_DIGEST_SZ ("digest-sz") +#ifdef RTE_LIBRTE_SECURITY +#define CPERF_PDCP_SN_SZ ("pdcp-sn-sz") +#define CPERF_PDCP_DOMAIN ("pdcp-domain") +#define CPERF_PDCP_SES_HFN_EN ("pdcp-ses-hfn-en") +#define PDCP_DEFAULT_HFN 0x1 +#define CPERF_DOCSIS_HDR_SZ ("docsis-hdr-sz") +#endif + #define CPERF_CSV ("csv-friendly") /* benchmark-specific options */ @@ -66,7 +77,9 @@ enum cperf_op_type { CPERF_AUTH_ONLY, CPERF_CIPHER_THEN_AUTH, CPERF_AUTH_THEN_CIPHER, - CPERF_AEAD + CPERF_AEAD, + CPERF_PDCP, + CPERF_DOCSIS }; extern const char *cperf_op_type_strs[]; @@ -76,6 +89,8 @@ struct cperf_options { uint32_t pool_sz; uint32_t total_ops; + uint32_t headroom_sz; + uint32_t tailroom_sz; uint32_t segment_sz; uint32_t test_buffer_size; uint32_t *imix_buffer_sizes; @@ -108,6 +123,12 @@ struct cperf_options { uint16_t digest_sz; +#ifdef RTE_LIBRTE_SECURITY + uint16_t pdcp_sn_sz; + uint16_t pdcp_ses_hfn_en; + enum rte_security_pdcp_domain pdcp_domain; + uint16_t docsis_hdr_sz; +#endif char device_type[RTE_CRYPTODEV_NAME_MAX_LEN]; enum cperf_op_type op_type;