DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH v1]  doc: updated libcrypto dependencies in QAT guide
@ 2023-05-15 13:17 Samina Arshad
  2023-05-16 13:20 ` [PATCH v2] " Samina Arshad
  0 siblings, 1 reply; 4+ messages in thread
From: Samina Arshad @ 2023-05-15 13:17 UTC (permalink / raw)
  To: Thomas Monjalon, Kai Ji; +Cc: dev, gakhil, Samina Arshad

 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 <samina.arshad@intel.com>
---
 .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 <salems@nvidia.com>
 Sameh Gobriel <sameh.gobriel@intel.com>
 Sam Grove <sam.grove@sifive.com>
 Samik Gupta <samik.gupta@broadcom.com>
+Samina Arshad <samina.arshad@intel.com>
 Samuel Gauthier <samuel.gauthier@6wind.com>
 Sangjin Han <sangjin@eecs.berkeley.edu>
 Sankar Chokkalingam <sankarx.chokkalingam@intel.com>
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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH v2]  doc: updated libcrypto dependencies in QAT guide
  2023-05-15 13:17 [PATCH v1] doc: updated libcrypto dependencies in QAT guide Samina Arshad
@ 2023-05-16 13:20 ` Samina Arshad
  2023-05-25 14:02   ` Power, Ciara
  2023-06-20 12:57   ` [EXT] " Akhil Goyal
  0 siblings, 2 replies; 4+ messages in thread
From: Samina Arshad @ 2023-05-16 13:20 UTC (permalink / raw)
  To: Thomas Monjalon, Kai Ji; +Cc: dev, gakhil, Samina Arshad

 The documentation 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 <samina.arshad@intel.com>
---
 .mailmap                      |  1 +
 doc/guides/cryptodevs/qat.rst | 14 ++++++++++++++
 2 files changed, 15 insertions(+)

diff --git a/.mailmap b/.mailmap
index 0443e461a9..6a0c1924eb 100644
--- a/.mailmap
+++ b/.mailmap
@@ -1179,6 +1179,7 @@ Salem Sol <salems@nvidia.com>
 Sameh Gobriel <sameh.gobriel@intel.com>
 Sam Grove <sam.grove@sifive.com>
 Samik Gupta <samik.gupta@broadcom.com>
+Samina Arshad <samina.arshad@intel.com>
 Samuel Gauthier <samuel.gauthier@6wind.com>
 Sangjin Han <sangjin@eecs.berkeley.edu>
 Sankar Chokkalingam <sankarx.chokkalingam@intel.com>
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


^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH v2]  doc: updated libcrypto dependencies in QAT guide
  2023-05-16 13:20 ` [PATCH v2] " Samina Arshad
@ 2023-05-25 14:02   ` Power, Ciara
  2023-06-20 12:57   ` [EXT] " Akhil Goyal
  1 sibling, 0 replies; 4+ messages in thread
From: Power, Ciara @ 2023-05-25 14:02 UTC (permalink / raw)
  To: Arshad, Samina, Thomas Monjalon, Ji, Kai; +Cc: dev, gakhil, Arshad, Samina

Hi Samina,

> -----Original Message-----
> From: Samina Arshad <samina.arshad@intel.com>
> Sent: Tuesday 16 May 2023 14:20
> To: Thomas Monjalon <thomas@monjalon.net>; Ji, Kai <kai.ji@intel.com>
> Cc: dev@dpdk.org; gakhil@marvell.com; Arshad, Samina
> <samina.arshad@intel.com>
> Subject: [PATCH v2] doc: updated libcrypto dependencies in QAT guide
> 
>  The documentation 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 <samina.arshad@intel.com>
> ---
>  .mailmap                      |  1 +
>  doc/guides/cryptodevs/qat.rst | 14 ++++++++++++++
>  2 files changed, 15 insertions(+)
<snip>

Acked-by: Ciara Power <ciara.power@intel.com>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [EXT] [PATCH v2]  doc: updated libcrypto dependencies in QAT guide
  2023-05-16 13:20 ` [PATCH v2] " Samina Arshad
  2023-05-25 14:02   ` Power, Ciara
@ 2023-06-20 12:57   ` Akhil Goyal
  1 sibling, 0 replies; 4+ messages in thread
From: Akhil Goyal @ 2023-06-20 12:57 UTC (permalink / raw)
  To: Samina Arshad, Thomas Monjalon, Kai Ji; +Cc: dev

>  The documentation 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 <samina.arshad@intel.com>
Applied to dpdk-next-crypto
Thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-06-20 12:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-15 13:17 [PATCH v1] doc: updated libcrypto dependencies in QAT guide Samina Arshad
2023-05-16 13:20 ` [PATCH v2] " Samina Arshad
2023-05-25 14:02   ` Power, Ciara
2023-06-20 12:57   ` [EXT] " Akhil Goyal

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).