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 6353C2E41 for ; Mon, 7 Aug 2017 14:31:33 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 05BF820CC9; Mon, 7 Aug 2017 08:31:33 -0400 (EDT) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Mon, 07 Aug 2017 08:31:33 -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=rAiieBedP2RM9sf 4PN+iqs6rK4hur6MSixazql5c0/4=; b=oe/yRufHGEDcWYhw7Eop8wr1o2hSObf JKFXOYD4KOTiJyxeH87s2nZXX23+lIz2qbeeePdJDuyL1AZx/6oyOXkTdOWiA26y HzHWk7VE5mgDfKNdCxySEyLu85S/Njkew0i1fSrZhFDcnADTnPnKcv27eKT1VHEN alDoJcHsUbEg= 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=rAiieBedP2RM9sf4PN+iqs6rK4hur6MSixazql5c0/4=; b=g+BLh+hb +nQALsceMv1PosBjD9XOJQd4gzpjBbEsGi3e0OZgHXYEDLrUChpoOYy9Dd5XWEHT tYN9yJvXwlFKIzQIfz3QSexXPlJwoxTVEjo90wDqp7fa869fephk81FN8cUPM8mo 8mxQcJulEpt5xpxwc2ha6/kV/5AawvuF4EFuSLwZFw2CowiANI1sOqe+s2ip+4i0 2NHmEskP8eJAt1aR3IdR25bMdRPCrhS+myiYCxRG7xXXWxzELgW34cZN+9rRuJnk cfbeACnp1YNeP3CkeBZoYmcUXR7ceorAboXPElZ3JufRuAIc2L2j04GUQeEpw3mc 6/rigN6r8tVqXQ== X-ME-Sender: X-Sasl-enc: WHRS0fGNiv0s/frhofS3Pj/L2mmtobnNHEJa9FlyALJn 1502109092 Received: from xps.localnet (eth-west-pareq2-46-193-0-155.wb.wifirst.net [46.193.0.155]) by mail.messagingengine.com (Postfix) with ESMTPA id 9A2217E522; Mon, 7 Aug 2017 08:31:32 -0400 (EDT) From: Thomas Monjalon To: Pablo de Lara Cc: dev@dpdk.org Date: Mon, 07 Aug 2017 14:31:30 +0200 Message-ID: <1532154.bj8skGPZnS@xps> In-Reply-To: <20170807031654.31581-1-pablo.de.lara.guarch@intel.com> References: <20170807031654.31581-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 operation free 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: Mon, 07 Aug 2017 12:31:33 -0000 07/08/2017 05:16, Pablo de Lara: > In crypto latency test, when some crypto operations cannot be > enqueued, they are returned to its mempool. > However, instead of freeing the operations in the array passed > to the enqueue function, the app was freeing the operations > in the array passed to the dequeue function, leading to incorrect > results. > > Fixes: 15b55dd75120 ("app/crypto-perf: return crypto ops to mempool in bulk") > > Signed-off-by: Pablo de Lara Applied, thanks