From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 5832D1B757 for ; Wed, 9 May 2018 19:41:05 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 May 2018 10:41:04 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.49,382,1520924400"; d="scan'208";a="39958876" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga008.jf.intel.com with ESMTP; 09 May 2018 10:41:04 -0700 Received: from fmsmsx158.amr.corp.intel.com (10.18.116.75) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 9 May 2018 10:41:03 -0700 Received: from fmsmsx104.amr.corp.intel.com ([169.254.3.184]) by fmsmsx158.amr.corp.intel.com ([169.254.15.166]) with mapi id 14.03.0319.002; Wed, 9 May 2018 10:41:03 -0700 From: "Tucker, Greg B" To: "Daly, Lee" , "dev@dpdk.org" CC: "De Lara Guarch, Pablo" , "Jain, Deepak K" , "Trahe, Fiona" Thread-Topic: [PATCH v6 09/10] compress/isal: add ISA-L decomp functionality Thread-Index: AQHT57DkrabH4eW9XUyssGfEDNQblqQnqXfg Date: Wed, 9 May 2018 17:41:02 +0000 Message-ID: References: <1525782775-138647-2-git-send-email-lee.daly@intel.com> <1525882475-183214-1-git-send-email-lee.daly@intel.com> <1525882475-183214-10-git-send-email-lee.daly@intel.com> In-Reply-To: <1525882475-183214-10-git-send-email-lee.daly@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_NT x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiZDBiYTMxYzktOWJiNC00NjMzLWI3NjgtNjQ3NzYwOTI1ZDczIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6IkxKaEE5T3FVeUh1dnlMRXlWSWVPaFwvWFwvZmNraGY0Z21tVTN4Y0Z0VGhBST0ifQ== dlp-product: dlpe-windows dlp-version: 11.0.200.100 dlp-reaction: no-action x-originating-ip: [10.1.200.106] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailman-Approved-At: Thu, 10 May 2018 00:50:25 +0200 Subject: Re: [dpdk-dev] [PATCH v6 09/10] compress/isal: add ISA-L decomp functionality 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, 09 May 2018 17:41:06 -0000 >=20 > Adds decompression functionality, similar to compression, this sets inter= nal > ISA-L structures, provides input & output mbuf addresses, executes > decompression, which ISA-L calls inflate and finally error checks. >=20 > Signed-off-by: Lee Daly Acked-by: Greg Tucker > --- > drivers/compress/isal/isal_compress_pmd.c | 52 +++++++++++++++++= ++++++ > drivers/compress/isal/isal_compress_pmd_ops.c | 8 ++++ > drivers/compress/isal/isal_compress_pmd_private.h | 2 + > 3 files changed, 62 insertions(+) >=20 > diff --git a/drivers/compress/isal/isal_compress_pmd.c b/drivers/compress= /isal/isal_compress_pmd.c > index dbdee39..9d1d413 100644 > --- a/drivers/compress/isal/isal_compress_pmd.c > +++ b/drivers/compress/isal/isal_compress_pmd.c > @@ -266,6 +266,57 @@ process_isal_deflate(struct rte_comp_op *op, struct = isal_comp_qp *qp, > return ret; > } --snip--