app/test: fix debug build

When RTE_APP_TEST_DEBUG is set, there were some errors:

app/test/test_cryptodev.c: In function ‘create_gcm_operation’:
app/test/test_cryptodev.c:3619:18: error: ‘struct rte_crypto_op’ has no member named ‘digest’
     ut_params->op->digest.data,
                  ^
app/test/test_cryptodev.c:3620:18: error: ‘struct rte_crypto_op’ has no member named ‘digest’
     ut_params->op->digest.length);
                  ^
app/test/test_cryptodev.c:3662:41: error: ‘struct rte_crypto_op’ has no member named ‘iv’
  rte_hexdump(stdout, "iv:", ut_params->op->iv.data, iv_pad_len);
                                         ^
app/test/test_cryptodev.c:3664:17: error: ‘struct rte_crypto_op’ has no member named ‘additional_auth’
    ut_params->op->additional_auth.data, aad_len);

Fixes: eec136f3c5 ("aesni_gcm: add driver for AES-GCM crypto operations")

Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
Acked-by: Fan Zhang <roy.fan.zhang@intel.com>
This commit is contained in:
Pablo de Lara 2016-06-15 15:11:18 +01:00 committed by Thomas Monjalon
parent 25b7313fc1
commit 897578de70

View File

@ -2404,8 +2404,8 @@ create_gcm_operation(enum rte_crypto_cipher_operation op,
rte_memcpy(sym_op->auth.digest.data, auth_tag, auth_tag_len);
#ifdef RTE_APP_TEST_DEBUG
rte_hexdump(stdout, "digest:",
ut_params->op->digest.data,
ut_params->op->digest.length);
sym_op->auth.digest.data,
sym_op->auth.digest.length);
#endif
}
@ -2447,9 +2447,9 @@ create_gcm_operation(enum rte_crypto_cipher_operation op,
rte_memcpy(sym_op->auth.aad.data, aad, aad_len);
#ifdef RTE_APP_TEST_DEBUG
rte_hexdump(stdout, "iv:", ut_params->op->iv.data, iv_pad_len);
rte_hexdump(stdout, "iv:", sym_op->cipher.iv.data, iv_pad_len);
rte_hexdump(stdout, "aad:",
ut_params->op->additional_auth.data, aad_len);
sym_op->auth.aad.data, aad_len);
#endif
sym_op->cipher.data.length = data_len;
sym_op->cipher.data.offset = aad_buffer_len + iv_pad_len;