From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 12F8A2BAD for ; Mon, 26 Sep 2016 16:11:50 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga102.fm.intel.com with ESMTP; 26 Sep 2016 07:11:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,399,1470726000"; d="scan'208";a="1056757052" Received: from irsmsx151.ger.corp.intel.com ([163.33.192.59]) by orsmga002.jf.intel.com with ESMTP; 26 Sep 2016 07:11:50 -0700 Received: from irsmsx112.ger.corp.intel.com (10.108.20.5) by IRSMSX151.ger.corp.intel.com (163.33.192.59) with Microsoft SMTP Server (TLS) id 14.3.248.2; Mon, 26 Sep 2016 15:11:48 +0100 Received: from irsmsx107.ger.corp.intel.com ([169.254.10.95]) by irsmsx112.ger.corp.intel.com ([169.254.1.170]) with mapi id 14.03.0248.002; Mon, 26 Sep 2016 15:11:48 +0100 From: "Jain, Deepak K" To: "Kusztal, ArkadiuszX" , "dev@dpdk.org" CC: "Trahe, Fiona" , "De Lara Guarch, Pablo" , "Griffin, John" Thread-Topic: [PATCH] app/test: fix compilation error when debug mode enabled Thread-Index: AQHSF/1PjPFwYuRpFkGN0WvJKOvK2aCLzzIw Date: Mon, 26 Sep 2016 14:11:47 +0000 Deferred-Delivery: Mon, 26 Sep 2016 14:11:05 +0000 Message-ID: References: <1474897968-27642-1-git-send-email-arkadiuszx.kusztal@intel.com> In-Reply-To: <1474897968-27642-1-git-send-email-arkadiuszx.kusztal@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNWVkNDNjMzQtZDY3Yy00MDk4LWE2NTYtMWU0MzEzNjUxNWViIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IlFZbnJ4Wk1oYVFXcE5YYVNmanBEVUJrM2NJeFowR29XMG5iYmxRVW1Bc3M9In0= x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] app/test: fix compilation error when debug mode enabled X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Sep 2016 14:11:51 -0000 > -----Original Message----- > From: Kusztal, ArkadiuszX > Sent: Monday, September 26, 2016 2:53 PM > To: dev@dpdk.org > Cc: Trahe, Fiona ; Jain, Deepak K > ; De Lara Guarch, Pablo > ; Griffin, John ; > Kusztal, ArkadiuszX > Subject: [PATCH] app/test: fix compilation error when debug mode enabled >=20 > This patch fixes compilation error in test_cryptodev.c when > RTE_LOG_DEBUG is specified >=20 > Fixes: ba0dda7a7100 ("app/test: add GMAC authentication tests to > cryptodev tests") >=20 > Signed-off-by: Arek Kusztal > --- > app/test/test_cryptodev.c | 4 +--- > 1 file changed, 1 insertion(+), 3 deletions(-) >=20 > 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 =3D cipher_key; > ut_params->cipher_xform.cipher.key.length =3D tdata->key.len; >=20 > - TEST_HEXDUMP(stdout, "key:", key, key_len); > + TEST_HEXDUMP(stdout, "key:", cipher_key, tdata->key.len); >=20 > ut_params->auth_xform.type =3D RTE_CRYPTO_SYM_XFORM_AUTH; > >gmac_tag.len); > - > return 0; >=20 > } > -- > 2.1.0 Acked-by: Deepak Kumar Jain