From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 2B839DD2 for ; Tue, 1 May 2018 15:00:38 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 May 2018 06:00:37 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,351,1520924400"; d="scan'208";a="220729302" Received: from irsmsx109.ger.corp.intel.com ([163.33.3.23]) by orsmga005.jf.intel.com with ESMTP; 01 May 2018 06:00:36 -0700 Received: from irsmsx106.ger.corp.intel.com ([169.254.8.241]) by IRSMSX109.ger.corp.intel.com ([169.254.13.176]) with mapi id 14.03.0319.002; Tue, 1 May 2018 14:00:35 +0100 From: "Daly, Lee" To: "De Lara Guarch, Pablo" , "dev@dpdk.org" CC: "Trahe, Fiona" , "shally.verma@cavium.com" , "ahmed.mansour@nxp.com" , "Ashish.Gupta@cavium.com" , "De Lara Guarch, Pablo" Thread-Topic: [dpdk-dev] [PATCH v3 0/5] Initial compressdev unit tests Thread-Index: AQHT3jIr0JnwwnoqI0SwcJwBxI2eCaQa3Bkg Date: Tue, 1 May 2018 13:00:34 +0000 Message-ID: References: <20180228140010.27251-1-pablo.de.lara.guarch@intel.com> <20180427141502.4288-1-pablo.de.lara.guarch@intel.com> In-Reply-To: <20180427141502.4288-1-pablo.de.lara.guarch@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.0.200.100 dlp-reaction: no-action x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZTUxZjg4Y2QtZGY5ZC00YzE2LTlhZjctYzc5M2FkMTEyMWZlIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE3LjIuNS4xOCIsIlRydXN0ZWRMYWJlbEhhc2giOiJcL0FPcnlQMlhjdG9mNFUwZElBQmF5SStIYmltY05SbDFXWkc4cEpwWWpkTkZRZWdiMmJHaWRRRUVycXhVRFhOeCJ9 x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v3 0/5] Initial compressdev unit tests 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: Tue, 01 May 2018 13:00:39 -0000 <...>=20 > Added initial tests for Compressdev library. > The tests are performed compressing a test buffer (or multiple test buffe= rs) > with compressdev or Zlib, and decompressing it/them with the other librar= y > (if compression is done with compressdev, decompression is done with Zlib= , > and viceversa). >=20 > Tests added so far are based on the deflate algorithm, > including: > - Fixed huffman on single buffer > - Dynamic huffman on single buffer > - Multi compression level test on single buffer > - Multi buffer > - Multi xform using the same buffer >=20 > Due to a dependency on Zlib, the test is not enabled by default. > Once the library is installed, the configuration option > CONFIG_RTE_COMPRESSDEV_TEST must be set to Y. > However, if building with Meson, the test will be built automatically, if= Zlib is > installed. >=20 > The test requires a compressdev PMD to be initialized, when running the t= est > app. For example: >=20 > ./build/app/test --vdev=3D"compress_X" >=20 > RTE>>compressdev_autotest >=20 > This patchset depends on the Compressdev API patchset: > http://dpdk.org/ml/archives/dev/2018-April/099580.html > ("[PATCH v6 00/14] Implement compression API") >=20 <...> Series-acked-by: Lee Daly