cryptodev: remove digest length from crypto op
[dpdk.git] / app / test-crypto-perf / cperf_ops.c
index 9405cef..401f85e 100644 (file)
@@ -161,7 +161,6 @@ cperf_set_ops_auth(struct rte_crypto_op **ops,
                        sym_op->auth.digest.data = test_vector->digest.data;
                        sym_op->auth.digest.phys_addr =
                                        test_vector->digest.phys_addr;
-                       sym_op->auth.digest.length = options->auth_digest_sz;
                } else {
 
                        uint32_t offset = options->test_buffer_size;
@@ -183,7 +182,6 @@ cperf_set_ops_auth(struct rte_crypto_op **ops,
                                        uint8_t *, offset);
                        sym_op->auth.digest.phys_addr =
                                        rte_pktmbuf_mtophys_offset(buf, offset);
-                       sym_op->auth.digest.length = options->auth_digest_sz;
                        sym_op->auth.aad.phys_addr = test_vector->aad.phys_addr;
                        sym_op->auth.aad.data = test_vector->aad.data;
 
@@ -246,7 +244,6 @@ cperf_set_ops_cipher_auth(struct rte_crypto_op **ops,
                        sym_op->auth.digest.data = test_vector->digest.data;
                        sym_op->auth.digest.phys_addr =
                                        test_vector->digest.phys_addr;
-                       sym_op->auth.digest.length = options->auth_digest_sz;
                } else {
 
                        uint32_t offset = options->test_buffer_size;
@@ -268,7 +265,6 @@ cperf_set_ops_cipher_auth(struct rte_crypto_op **ops,
                                        uint8_t *, offset);
                        sym_op->auth.digest.phys_addr =
                                        rte_pktmbuf_mtophys_offset(buf, offset);
-                       sym_op->auth.digest.length = options->auth_digest_sz;
                        sym_op->auth.aad.phys_addr = test_vector->aad.phys_addr;
                        sym_op->auth.aad.data = test_vector->aad.data;
                }
@@ -337,7 +333,6 @@ cperf_set_ops_aead(struct rte_crypto_op **ops,
                        sym_op->auth.digest.data = test_vector->digest.data;
                        sym_op->auth.digest.phys_addr =
                                        test_vector->digest.phys_addr;
-                       sym_op->auth.digest.length = options->auth_digest_sz;
                } else {
 
                        uint32_t offset = sym_op->cipher.data.length +
@@ -360,8 +355,6 @@ cperf_set_ops_aead(struct rte_crypto_op **ops,
                                        uint8_t *, offset);
                        sym_op->auth.digest.phys_addr =
                                        rte_pktmbuf_mtophys_offset(buf, offset);
-
-                       sym_op->auth.digest.length = options->auth_digest_sz;
                }
 
                sym_op->auth.data.length = options->test_buffer_size;