> -----Original Message-----
> From: Kusztal, ArkadiuszX
> Sent: Monday, September 26, 2016 2:53 PM
> To: dev at dpdk.org
> Cc: Trahe, Fiona <fiona.trahe at intel.com>; Jain, Deepak K
> <deepak.k.jain at intel.com>; De Lara Guarch, Pablo
> <pablo.de.lara.guarch at intel.com>; Griffin, John <john.griffin at
> intel.com>;
> Kusztal, ArkadiuszX <arkadiuszx.kusztal at intel.com>
> Subject: [PATCH] app/test: fix compilation error when debug mode enabled
>
> This patch fixes compilation error in test_cryptodev.c when
> RTE_LOG_DEBUG is specified
>
> Fixes: ba0dda7a7100 ("app/test: add GMAC authentication tests to
> cryptodev tests")
>
> Signed-off-by: Arek Kusztal <arkadiuszx.kusztal at intel.com>
> ---
> app/test/test_cryptodev.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/app/test/test_cryptodev.c b/app/test/test_cryptodev.c index
> d744b37..609908b 100644
> --- a/app/test/test_cryptodev.c
> +++ b/app/test/test_cryptodev.c
> @@ -4288,7 +4288,7 @@ static int create_gmac_session(uint8_t dev_id,
> ut_params->cipher_xform.cipher.key.data = cipher_key;
> ut_params->cipher_xform.cipher.key.length = tdata->key.len;
>
> - TEST_HEXDUMP(stdout, "key:", key, key_len);
> + TEST_HEXDUMP(stdout, "key:", cipher_key, tdata->key.len);
>
> ut_params->auth_xform.type = RTE_CRYPTO_SYM_XFORM_AUTH;
> >gmac_tag.len);
> -
> return 0;
>
> }
> --
> 2.1.0
Acked-by: Deepak Kumar Jain <deepak.k.jain at intel.com>