From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id 792C51150; Fri, 18 Jan 2019 19:21:24 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 844F628FC8; Fri, 18 Jan 2019 13:21:22 -0500 (EST) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Fri, 18 Jan 2019 13:21:22 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=zGT8QT7tr+v/WD7j0Rb/cFAqqcuWEnhHKrs739oUHtA=; b=h62mtjmDGuxv ninUnTI0HMTQKl0vAmTG07bXKxH0UWJ//6aXrkzBkSrR7agLTcV3v6yKPb6SVnyV 2FG08O1IfiijdomFjy5P2BpoQiiKdbeQBmUh9+G98eDrkD0tMAZ0Kr0iwBKFcyPr 5DTw9f1vJl+c/fDLDpvMiR0dukJESGM= 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-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=zGT8QT7tr+v/WD7j0Rb/cFAqqcuWEnhHKrs739oUH tA=; b=bGloWvsrok/p/Q9PH9iGmkQ7vc40EBGzHrg03EhbzimVDeT03crpz33sY mdMMC0LuAl15Eu2/Nh3Dh7BfjwdqeybkIa2aahAaUkcrRSgWR1fxOfElO89/bDjV DUnEHZ2DneN4Kzq5lMjJ1BDFEDL9WAl54gj5H5joOdobcyN1m2QZD4T4sHMnca7/ 03J8FeQwENZONafxmNyxfqtegQeOI28YZvfz5eEtKtO4vNDUWdePKABLvE+qcTAt 98/B2GQtElw2qTMvkBQAq9cO35m5ewnbFHy1yxlMr6ZcT16aWX8saJYj8w7QuGFU WIEoynyWKeXCNI+3Ex2p67KAx+/OQ== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgedtledrhedtgdduudegucetufdoteggodetrfdotf fvucfrrhhofhhilhgvmecuhfgrshhtofgrihhlpdfquhhtnecuuegrihhlohhuthemucef tddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenucfjughrpefhvffufffkjg hfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghsucfoohhnjhgrlhhonhcu oehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkphepjeejrddufeegrddvtd efrddukeegnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhhomhgrshesmhhonhhjrghl ohhnrdhnvghtnecuvehluhhsthgvrhfuihiivgeptd X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id A04F2102A0; Fri, 18 Jan 2019 13:21:20 -0500 (EST) From: Thomas Monjalon To: Hari Kumar Vemula Cc: dev@dpdk.org, byron.marohn@intel.com, reshma.pattan@intel.com, pablo.de.lara.guarch@intel.com, jananeex.m.parthasarathy@intel.com, stable@dpdk.org Date: Fri, 18 Jan 2019 19:21:19 +0100 Message-ID: <6532006.Z9o0PgfHpl@xps> In-Reply-To: <1547797242-7553-1-git-send-email-hari.kumarx.vemula@intel.com> References: <1542109533-14283-1-git-send-email-hari.kumarx.vemula@intel.com> <1547797242-7553-1-git-send-email-hari.kumarx.vemula@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v5] lib/efd: fix to free tail queue entry after use 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: Fri, 18 Jan 2019 18:21:24 -0000 18/01/2019 08:40, Hari Kumar Vemula: > In rte_efd_create() allocated memory for tail queue entry but > not freed. > Added freeing the tail queue entry. > > Fixes: 56b6ef874f80 ("efd: new Elastic Flow Distributor library") > Cc: stable@dpdk.org > > Signed-off-by: Hari Kumar Vemula > Reviewed-by: Honnappa Nagarahalli > Acked-by: Reshma Pattan > Acked-by: Pablo de Lara > --- > v5: Removed NULL initialization > v4: RTE_TAILQ_CAST moved after for loop > v3: Replaced TAILQ_FOREACH_SAFE with TAILQ_FOREACH > v2: Updated commit message. > --- Applied, thanks