Message ID | 20220520055445.40063-16-arkadiuszx.kusztal@intel.com (mailing list archive) |
---|---|
State | Changes Requested, archived |
Delegated to: | akhil goyal |
Headers | show |
Series | cryptodev: rsa, dh, ecdh changes | expand |
Context | Check | Description |
---|---|---|
ci/checkpatch | success | coding style OK |
> - removed asymmetric crypto xform next field. > This commit reflects changes to the asymmetric crypto API. > > Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com> > --- Squash in main commit. > app/test-eventdev/test_perf_common.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/app/test-eventdev/test_perf_common.c b/app/test- > eventdev/test_perf_common.c > index f2da6fd74c..78150533a9 100644 > --- a/app/test-eventdev/test_perf_common.c > +++ b/app/test-eventdev/test_perf_common.c > @@ -851,7 +851,6 @@ cryptodev_asym_sess_create(struct prod_data *p, > struct test_perf *t) > struct rte_crypto_asym_xform xform; > void *sess; > > - xform.next = NULL; > xform.xform_type = RTE_CRYPTO_ASYM_XFORM_MODEX; > cap_idx.type = xform.xform_type; > capability = rte_cryptodev_asym_capability_get(p->ca.cdev_id, > &cap_idx); > -- > 2.13.6
diff --git a/app/test-eventdev/test_perf_common.c b/app/test-eventdev/test_perf_common.c index f2da6fd74c..78150533a9 100644 --- a/app/test-eventdev/test_perf_common.c +++ b/app/test-eventdev/test_perf_common.c @@ -851,7 +851,6 @@ cryptodev_asym_sess_create(struct prod_data *p, struct test_perf *t) struct rte_crypto_asym_xform xform; void *sess; - xform.next = NULL; xform.xform_type = RTE_CRYPTO_ASYM_XFORM_MODEX; cap_idx.type = xform.xform_type; capability = rte_cryptodev_asym_capability_get(p->ca.cdev_id, &cap_idx);
- removed asymmetric crypto xform next field. This commit reflects changes to the asymmetric crypto API. Signed-off-by: Arek Kusztal <arkadiuszx.kusztal@intel.com> --- app/test-eventdev/test_perf_common.c | 1 - 1 file changed, 1 deletion(-)