From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 821EF1B0FF for ; Wed, 17 Oct 2018 12:29:56 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Oct 2018 03:29:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,392,1534834800"; d="scan'208";a="242012340" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga004.jf.intel.com with ESMTP; 17 Oct 2018 03:29:54 -0700 Received: from fmsmsx120.amr.corp.intel.com (10.18.124.208) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 17 Oct 2018 03:29:54 -0700 Received: from lcsmsx154.ger.corp.intel.com (10.186.165.229) by fmsmsx120.amr.corp.intel.com (10.18.124.208) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 17 Oct 2018 03:29:53 -0700 Received: from HASMSX110.ger.corp.intel.com ([169.254.6.118]) by LCSMSX154.ger.corp.intel.com ([169.254.7.171]) with mapi id 14.03.0319.002; Wed, 17 Oct 2018 13:29:51 +0300 From: "Kusztal, ArkadiuszX" To: "Trahe, Fiona" , "dev@dpdk.org" CC: "akhil.goyal@nxp.com" , "Jozwiak, TomaszX" Thread-Topic: [PATCH v4] compress/qat: enable dynamic huffman encoding Thread-Index: AQHUZN0kchNsC0kMg0+mKrLCHd+eFqUjPhQg Date: Wed, 17 Oct 2018 10:29:50 +0000 Message-ID: <06EE24DD0B19E248B53F6DC8657831559EA31E@HASMSX110.ger.corp.intel.com> References: <1539277380-17359-1-git-send-email-fiona.trahe@intel.com> <1539645382-17112-1-git-send-email-fiona.trahe@intel.com> In-Reply-To: <1539645382-17112-1-git-send-email-fiona.trahe@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.400.15 dlp-reaction: no-action x-originating-ip: [10.104.14.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4] compress/qat: enable dynamic huffman encoding 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: Wed, 17 Oct 2018 10:29:57 -0000 > -----Original Message----- > From: Trahe, Fiona > Sent: Tuesday, October 16, 2018 1:16 AM > To: dev@dpdk.org > Cc: akhil.goyal@nxp.com; Jozwiak, TomaszX ; > Kusztal, ArkadiuszX ; Trahe, Fiona > > Subject: [PATCH v4] compress/qat: enable dynamic huffman encoding >=20 > Enable dynamic huffman encoding in the QAT comp PMD. >=20 > Signed-off-by: Tomasz Jozwiak > Signed-off-by: Fiona Trahe > --- > v4 changes: > - use #define for IM buffer logs, disable all by default > and use param for clearer hexdump length. >=20 > v3 changes: > - reverted to 1 buffer per intermediate buffer sgl >=20 > v2 changes: > - allocate 2 buffers per intermediate buffer sgl > - Compile out trace for debugging intermediate buffers >=20 > config/common_base | 1 + > config/rte_config.h | 1 + > doc/guides/compressdevs/features/qat.ini | 1 + > doc/guides/compressdevs/qat_comp.rst | 7 +- > drivers/common/qat/qat_device.c | 4 + > drivers/common/qat/qat_device.h | 7 ++ > drivers/compress/qat/qat_comp.c | 39 +++++++--- > drivers/compress/qat/qat_comp.h | 13 ++++ > drivers/compress/qat/qat_comp_pmd.c | 125 > ++++++++++++++++++++++++++++++- > 9 files changed, 181 insertions(+), 17 deletions(-) >=20 > diff --git a/config/common_base b/config/common_base index > 5519d71..29c71b1 100644 > --- a/config/common_base > +++ b/config/common_base > 2.7.4 Acked-by: Arek Kusztal