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 2BCDBA0521; Tue, 3 Nov 2020 13:36:54 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 72A5AC9FA; Tue, 3 Nov 2020 13:36:41 +0100 (CET) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 0F61AC9E2 for ; Tue, 3 Nov 2020 13:36:38 +0100 (CET) IronPort-SDR: M+owCII/vCyY24gOYg5aspV79W/Jt0L2eWTBcL5d843sHG3w6aJWj/eP3aIzzRgv8Yv0i+EgLf ugQGOveVnTRg== X-IronPort-AV: E=McAfee;i="6000,8403,9793"; a="165540637" X-IronPort-AV: E=Sophos;i="5.77,448,1596524400"; d="scan'208";a="165540637" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 03 Nov 2020 04:36:37 -0800 IronPort-SDR: Vflih8Xs9j/ywIu+fZzhXpuLW8Y8ZMvtQ5oiOdoM78tvRcHAqbUzsVn6ZB5m1VsES0NJkhOmL5 PHsG0Nv9Bhww== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.77,448,1596524400"; d="scan'208";a="528468506" Received: from silpixa00399126.ir.intel.com ([10.237.222.4]) by fmsmga005.fm.intel.com with ESMTP; 03 Nov 2020 04:36:35 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson , David Marchand , Lee Daly , Ashish Gupta , Sunila Sahu , Andrew Rybchenko , Rosen Xu , Luca Boccassi Date: Tue, 3 Nov 2020 12:36:02 +0000 Message-Id: <20201103123608.1114433-2-bruce.richardson@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20201103123608.1114433-1-bruce.richardson@intel.com> References: <20201102174507.1085128-1-bruce.richardson@intel.com> <20201103123608.1114433-1-bruce.richardson@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2 1/7] doc: fix driver names in compression devices guide 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" Since the built driver filenames have changed in DPDK 20.11, we need to update the driver doc to match. Fixes: a20b2c01a7a1 ("build: standardize component names and defines") Signed-off-by: Bruce Richardson Reviewed-by: David Marchand --- doc/guides/compressdevs/isal.rst | 2 +- doc/guides/compressdevs/octeontx.rst | 2 +- doc/guides/compressdevs/zlib.rst | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/guides/compressdevs/isal.rst b/doc/guides/compressdevs/isal.rst index 1d146fb4a6..029f8e23d2 100644 --- a/doc/guides/compressdevs/isal.rst +++ b/doc/guides/compressdevs/isal.rst @@ -4,7 +4,7 @@ ISA-L Compression Poll Mode Driver ================================== -The ISA-L PMD (**librte_pmd_isal_comp**) provides poll mode compression & +The ISA-L PMD (**librte_compress_isal**) provides poll mode compression & decompression driver support for utilizing Intel ISA-L library, which implements the deflate algorithm for both Deflate(compression) and Inflate(decompression). diff --git a/doc/guides/compressdevs/octeontx.rst b/doc/guides/compressdevs/octeontx.rst index 8c658721b9..db779fcd1c 100644 --- a/doc/guides/compressdevs/octeontx.rst +++ b/doc/guides/compressdevs/octeontx.rst @@ -4,7 +4,7 @@ OCTEON TX ZIP Compression Poll Mode Driver ========================================== -The OCTEON TX ZIP PMD (**librte_pmd_octeontx_zip**) provides poll mode +The OCTEON TX ZIP PMD (**librte_compress_octeontx**) provides poll mode compression & decompression driver for ZIP HW offload device, found in **Cavium OCTEON TX** SoC family. diff --git a/doc/guides/compressdevs/zlib.rst b/doc/guides/compressdevs/zlib.rst index 6e397ecd7e..8afa7dfbbb 100644 --- a/doc/guides/compressdevs/zlib.rst +++ b/doc/guides/compressdevs/zlib.rst @@ -4,7 +4,7 @@ ZLIB Compression Poll Mode Driver ================================== -The ZLIB PMD (**librte_pmd_zlib**) provides poll mode compression & +The ZLIB PMD (**librte_compress_zlib**) provides poll mode compression & decompression driver based on SW zlib library, Features -- 2.25.1