From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out1-smtp.messagingengine.com (out1-smtp.messagingengine.com [66.111.4.25]) by dpdk.org (Postfix) with ESMTP id 0460F2C16 for ; Thu, 3 Aug 2017 23:48:08 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id A1C1020B59; Thu, 3 Aug 2017 17:48:07 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Thu, 03 Aug 2017 17:48:07 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc:x-sasl-enc; s=mesmtp; bh=OO4UAoOWd9e+3Me HGpZbgYO/Rr2HECGasPSSCh+Apsc=; b=DhJshYBjAevH9ugCx/RroiZJOUedx8s qLIrzgbEuxU7CXKxd5dkc0Zw0v6VlVVLRPdOshnwkz/k2M7yAwYLvtL7gGKMx8KQ dTCeNrjIfa3x/WXXZwKn0mVtSSh0yGLQ9jPyaQRRUgxl7JdBPm8gUL4UPRx5NDTr P1sXpKGOjOtA= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-sender:x-me-sender:x-sasl-enc:x-sasl-enc; s= fm1; bh=OO4UAoOWd9e+3MeHGpZbgYO/Rr2HECGasPSSCh+Apsc=; b=W6YHEyaJ TC0/gNvdgtCBOzqQU0oEFJQ3XJv/9Dv6CgOPTQ4ZeZQW4NlrvPX0wHPtniiERcWv IUvT8aDOnm+kftFiA3zqMGP1DlkNq3Ddq3h+AnO5zRCGd8q03JJlGEihBZ2Zj8/A 6l4Ulw9Rxv4cOV8kk5mi9NyhrV7QVSu0Gtda5Y/gxPTSDorQNu0R4xoQ+l8Xh0OR b+Dc+ksD9gHe0/Mu/iLPad6xU5jy0eGMyLatnRRyTYcwCip9WKMtIrFiZbBWrd6+ epBcvw872jDC/umF3OlyOBZCUYt5yQsgwDA1FFWAf9gDcdLYT4c9n0fFQXvb5HQw B49Et46os/YG3w== X-ME-Sender: X-Sasl-enc: Xc/P4wX+4k5mAI7RGOHsZiJeLw8cGDfU8ERFIQkPaU+5 1501796887 Received: from xps.localnet (196.114.118.80.rev.sfr.net [80.118.114.196]) by mail.messagingengine.com (Postfix) with ESMTPA id 3BC8C24597; Thu, 3 Aug 2017 17:48:07 -0400 (EDT) From: Thomas Monjalon To: Pablo de Lara Cc: dev@dpdk.org Date: Thu, 03 Aug 2017 23:48:05 +0200 Message-ID: <14332872.ko1yaCUqbo@xps> In-Reply-To: <20170801003336.15796-1-pablo.de.lara.guarch@intel.com> References: <20170801003336.15796-1-pablo.de.lara.guarch@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] app/crypto-perf: fix incorrect IV allocation X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Aug 2017 21:48:08 -0000 01/08/2017 02:33, Pablo de Lara: > Memory is reserved after each crypto operation > for the necessary IV(s), which could be for cipher, > authentication or AEAD algorithms. > However, for AEAD algorithms (such as AES-GCM), this > memory was not being reserved, leading to potential > memory overflow. > > Fixes: 8a5b494a7f99 ("app/test-crypto-perf: add AEAD parameters") > > Signed-off-by: Pablo de Lara Applied, thanks