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 1392FA0613 for ; Mon, 23 Sep 2019 15:25:29 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4BBC51BEE5; Mon, 23 Sep 2019 15:25:28 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 55A271BEA4 for ; Mon, 23 Sep 2019 15:25:27 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Sep 2019 06:25:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,540,1559545200"; d="scan'208";a="203127072" Received: from adamdybx-mobl.ger.corp.intel.com (HELO addy-VirtualBox.isw.intel.com) ([10.103.104.111]) by fmsmga001.fm.intel.com with ESMTP; 23 Sep 2019 06:25:25 -0700 From: Adam Dybkowski To: dev@dpdk.org, fiona.trahe@intel.com, arturx.trybula@intel.com, akhil.goyal@nxp.com Cc: Adam Dybkowski Date: Fri, 20 Sep 2019 22:06:25 +0200 Message-Id: <20190920200628.6444-1-adamx.dybkowski@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20190920124452.29449-2-adamx.dybkowski@intel.com> References: <20190920124452.29449-2-adamx.dybkowski@intel.com> Subject: [dpdk-dev] [PATCH v3 0/3] compress/qat: add stateful decompression 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 patchset adds the stateful decompression feature to the QAT PMD, together with the documentation updates and two new unit tests. --- v3: * Minor corrections in features list in the documentation. v2: * Typo correction in the error message. Adam Dybkowski (3): common/qat: add QAT RAM bank definitions compress/qat: add stateful decompression test/compress: add stateful decompression tests app/test/test_compressdev.c | 449 ++++++++++++++++--- doc/guides/compressdevs/features/default.ini | 37 +- doc/guides/compressdevs/features/qat.ini | 21 +- doc/guides/compressdevs/qat_comp.rst | 5 + doc/guides/rel_notes/release_19_11.rst | 4 + drivers/common/qat/qat_adf/icp_qat_fw_comp.h | 73 +++ drivers/compress/qat/qat_comp.c | 256 ++++++++++- drivers/compress/qat/qat_comp.h | 32 ++ drivers/compress/qat/qat_comp_pmd.c | 166 ++++++- drivers/compress/qat/qat_comp_pmd.h | 2 + 10 files changed, 929 insertions(+), 116 deletions(-) -- 2.17.1