From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id C7E2C42B16; Mon, 15 May 2023 16:57:17 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 472E540687; Mon, 15 May 2023 16:57:17 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id A5DD540395 for ; Mon, 15 May 2023 15:18:10 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1684156690; x=1715692690; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=xJkCD65BzTTxVbafInRpl3vLBe01+JQQXbnovWLwFhY=; b=NgNNcmu0i5nqOM4LxabQGO+CebjtUnqsFY5FPEuzvaPRewBu9V1GbwhJ 8UfdWnJRAXfSFK6FVEid3HiufHFlHHSLqRseVphFmQyyshA6fMRD7DdTf ohZaFaR/U+8auslfInFZZA9GWqv6OLrT7ATvlKRBLS+JLyVh+S5Jyg6Rw OXT6qcoFKjzXs6PaI955yU0w5Ph2Y2u+YzlsEOqq8rfxIWV1SXn2pcLta 0oS5uOS/8z/n0ytmTMqWZ13K1cTD15GmkSLiHbxDumw5Cwb43iPwJ7Fjq RqlVUxwNXVT45FaMb+IEjoDcohkE8InhmsdE3vjr/GtNDvJBMsZj2FhP9 w==; X-IronPort-AV: E=McAfee;i="6600,9927,10711"; a="354354797" X-IronPort-AV: E=Sophos;i="5.99,276,1677571200"; d="scan'208";a="354354797" Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 May 2023 06:18:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=McAfee;i="6600,9927,10711"; a="812954987" X-IronPort-AV: E=Sophos;i="5.99,276,1677571200"; d="scan'208";a="812954987" Received: from silpixa00400868.ir.intel.com ([10.243.23.113]) by fmsmga002.fm.intel.com with ESMTP; 15 May 2023 06:18:08 -0700 From: Samina Arshad To: Thomas Monjalon , Kai Ji Cc: dev@dpdk.org, gakhil@marvell.com, Samina Arshad Subject: [PATCH v1] doc: updated libcrypto dependencies in QAT guide Date: Mon, 15 May 2023 13:17:58 +0000 Message-Id: <20230515131758.51604-1-samina.arshad@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Mailman-Approved-At: Mon, 15 May 2023 16:57:16 +0200 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org The documenation needs extra steps for customers to explicitly show how to install libcrypto, which is needed for QAT. It requires the commands to install libcrypto for Ubuntu and RHEL. Signed-off-by: Samina Arshad --- .mailmap | 1 + doc/guides/cryptodevs/qat.rst | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/.mailmap b/.mailmap index 0859104404..3c2c1fba83 100644 --- a/.mailmap +++ b/.mailmap @@ -1179,6 +1179,7 @@ Salem Sol Sameh Gobriel Sam Grove Samik Gupta +Samina Arshad Samuel Gauthier Sangjin Han Sankar Chokkalingam diff --git a/doc/guides/cryptodevs/qat.rst b/doc/guides/cryptodevs/qat.rst index ef754106a8..a3694f7131 100644 --- a/doc/guides/cryptodevs/qat.rst +++ b/doc/guides/cryptodevs/qat.rst @@ -234,6 +234,20 @@ These are the build configuration options affecting QAT, and their default value Both QAT SYM PMD and QAT ASYM PMD have an external dependency on libcrypto, so are not built by default. +Ubuntu + +.. code-block:: console + + apt install libssl-dev + + +RHEL + +.. code-block:: console + + dnf install openssl-devel + + The QAT compressdev PMD has no external dependencies, so is built by default. The number of VFs per PF varies - see table below. If multiple QAT packages are -- 2.25.1