From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id 59C012965; Sat, 27 Oct 2018 02:31:35 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id E41EA2200D; Fri, 26 Oct 2018 20:31:34 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Fri, 26 Oct 2018 20:31:34 -0400 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=6d8Htojdtik9bm2kjxHA7eXVSLh8g/OwZAOJC09J3Rg=; b=K06HEoN7AgX7 bwzdr30UXNOdMGsY/uZoJxIV9HOh00sYhmefD8U1Af+Syh4pSx2tuCLrScEHctn/ zj+9XqFdRRhiNSiCD1nwaCHMPiUj0WlvNw1qWs6t0QGX8ek/477qw0CwD6zqGa9p YEOtx5M1gHidpTl3/5KNrgty1a/Brww= 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=6d8Htojdtik9bm2kjxHA7eXVSLh8g/OwZAOJC09J3 Rg=; b=P0+QVmcFRj1NcYO2YntsAmESG/b9RuftPRLQJoQ7ES+n5iZ5taYGQegbv rRxkqmD+j0tzHV+MKQr101O7IeOI+CupuTnSNTwmtzG/ebFS6cDSQ32gupunmSXZ FUhptNBvRI3AGf4V71FS/5t65s5Q0mmXRnG7IgJ0SdDshMO6CpR0Pi+//Cg3JjXM NLLZBGf95WkLZM7v8V8tX5ORYnimQ79Hg6ZuU+06aug+aRkWrG5PzerHVaHhJnt7 UE+yiBVrgusFuZyjNHzrmg7QMGoqZisMmJSffGodtv4ghY0CaWxkPEVDKMBZibDY Pj6fYxHsTu6qEUswUwfxcAkXqrq4g== X-ME-Sender: 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 3756EE49C7; Fri, 26 Oct 2018 20:31:33 -0400 (EDT) From: Thomas Monjalon To: Fiona Trahe Cc: dev@dpdk.org, akhil.goyal@nxp.com, tomaszx.jozwiak@intel.com, sabyasg@hpe.com, shally.verma@caviumnetworks.com, stable@dpdk.org Date: Sat, 27 Oct 2018 02:31:38 +0200 Message-ID: <2699025.2aBG7HCOL1@xps> In-Reply-To: <1540599469-21696-1-git-send-email-fiona.trahe@intel.com> References: <1540599469-21696-1-git-send-email-fiona.trahe@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] lib/compressdev: Fix logic error on op 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: Sat, 27 Oct 2018 00:31:35 -0000 27/10/2018 02:17, Fiona Trahe: > Fixed bad logic in rte_comp_op_alloc() checking return > value from rte_comp_op_raw_bulk_alloc(). This > could have resulted in a seg-fault in error case. > Made rte_comp_ob_bulk_alloc() code consistent > with rte_comp_op_alloc(). > > Thanks to Sabyasachi Sengupta for pointing it out. In this case, you can add a tag Reported-by: on top of your Signed-off-by: > Fixes: 96086db5a369 ("compressdev: add operation management") > Cc: stable@dpdk.org > > Signed-off-by: Fiona Trahe