From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 95B34A2EEB for ; Mon, 9 Sep 2019 16:06:00 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CC6001E25; Mon, 9 Sep 2019 16:05:59 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 20AA71DB9 for ; Mon, 9 Sep 2019 16:05:57 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Sep 2019 07:05:57 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,484,1559545200"; d="scan'208";a="191520857" Received: from fmsmsx103.amr.corp.intel.com ([10.18.124.201]) by FMSMGA003.fm.intel.com with ESMTP; 09 Sep 2019 07:05:57 -0700 Received: from fmsmsx118.amr.corp.intel.com (10.18.116.18) by FMSMSX103.amr.corp.intel.com (10.18.124.201) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 9 Sep 2019 07:05:56 -0700 Received: from hasmsx105.ger.corp.intel.com (10.184.198.19) by fmsmsx118.amr.corp.intel.com (10.18.116.18) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 9 Sep 2019 07:05:56 -0700 Received: from hasmsx107.ger.corp.intel.com ([169.254.2.239]) by HASMSX105.ger.corp.intel.com ([169.254.1.106]) with mapi id 14.03.0439.000; Mon, 9 Sep 2019 17:05:54 +0300 From: "Trybula, ArturX" To: "dev@dpdk.org" CC: "Dybkowski, AdamX" Thread-Topic: [dpdk-dev] [PATCH] app/compress-perf: fix memory deallocation issue Thread-Index: AQHVTDskPLb+euITjUSCzC2EzBQbj6cjlq3w Date: Mon, 9 Sep 2019 14:05:53 +0000 Message-ID: <5B6D1C77E9D7034C93E97BD83D1D9F57172F5A34@hasmsx107.ger.corp.intel.com> References: <20190806094053.16009-1-adamx.dybkowski@intel.com> In-Reply-To: <20190806094053.16009-1-adamx.dybkowski@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZWE1YWVkZTItMGVmZi00MDZmLWJjMjItM2FkZmUyMTZjODNiIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjEwLjE4MDQuNDkiLCJUcnVzdGVkTGFiZWxIYXNoIjoiMVQ5ZHhObVdGVW11WEp4aFwvRGUzK3lJMmx4WlJLeGRIT1wvdXlzcFhUWEpVQ2tzV2toZW5SWGhXVWpTSlJTTWlFIn0= x-originating-ip: [10.184.70.11] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] app/compress-perf: fix memory deallocation issue 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" This patch fixes the memory deallocation issue which happened after unsucce= ssful allocation (e.g. due to the out of memory) and produced the segmentat= ion fault. Fixes: 424dd6c8c1 ("app/compress-perf: add weak functions for multicore tes= t") Signed-off-by: Adam Dybkowski Acked-by: Artur Trybula ---