All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] doc/guides: add info on how to enable QAT
       [not found] <1472574107-143391-1-git-send-email-eoin.breen@intel.com>
@ 2016-09-13 10:47 ` Deepak Kumar Jain
  2016-09-13 11:50   ` Thomas Monjalon
  2016-09-13 14:08 ` [PATCH v3] " Deepak Kumar Jain
  1 sibling, 1 reply; 6+ messages in thread
From: Deepak Kumar Jain @ 2016-09-13 10:47 UTC (permalink / raw)
  To: dev; +Cc: pablo.de.lara.guarch, Eoin Breen, Deepak Kumar Jain

From: Eoin Breen <eoin.breen@intel.com>

Signed-off-by: Eoin Breen <eoin.breen@intel.com>
Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
---
Changes in v2:
Incorporated comments received on v1.

 doc/guides/cryptodevs/qat.rst | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/doc/guides/cryptodevs/qat.rst b/doc/guides/cryptodevs/qat.rst
index 3ee2312..325004c 100644
--- a/doc/guides/cryptodevs/qat.rst
+++ b/doc/guides/cryptodevs/qat.rst
@@ -83,6 +83,16 @@ Installation
 To use the DPDK QAT PMD an SRIOV-enabled QAT kernel driver is required. The
 VF devices exposed by this driver will be used by QAT PMD.
 
+To enable QAT in DPDK, follow the instructions mentioned in
+http://dpdk.org/doc/guides/linux_gsg/build_dpdk.html
+
+Quick instructions as follows:
+
+#. ``make config T=x86_64-native-linuxapp-gcc``
+#. Open the ``./build/.config`` file
+#. Replace ``CONFIG_RTE_LIBRTE_PMD_QAT=n`` with ``CONFIG_RTE_LIBRTE_PMD_QAT=y``
+#. ``make``
+
 If you are running on kernel 4.4 or greater, see instructions for
 `Installation using kernel.org driver`_ below. If you are on a kernel earlier
 than 4.4, see `Installation using 01.org QAT driver`_.
-- 
2.5.5

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

* Re: [PATCH v2] doc/guides: add info on how to enable QAT
  2016-09-13 10:47 ` [PATCH v2] doc/guides: add info on how to enable QAT Deepak Kumar Jain
@ 2016-09-13 11:50   ` Thomas Monjalon
  2016-09-13 13:39     ` Jain, Deepak K
  0 siblings, 1 reply; 6+ messages in thread
From: Thomas Monjalon @ 2016-09-13 11:50 UTC (permalink / raw)
  To: Deepak Kumar Jain; +Cc: dev, pablo.de.lara.guarch, Eoin Breen

2016-09-13 11:47, Deepak Kumar Jain:
> +#. ``make config T=x86_64-native-linuxapp-gcc``
> +#. Open the ``./build/.config`` file
> +#. Replace ``CONFIG_RTE_LIBRTE_PMD_QAT=n`` with ``CONFIG_RTE_LIBRTE_PMD_QAT=y``

It is better to put commands after "code-block:: console"
Then I suggest this command:
	sed -i 's,\(CONFIG_RTE_LIBRTE_PMD_QAT\)=n,\1=y,' build/.config

> +#. ``make``

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

* Re: [PATCH v2] doc/guides: add info on how to enable QAT
  2016-09-13 11:50   ` Thomas Monjalon
@ 2016-09-13 13:39     ` Jain, Deepak K
  0 siblings, 0 replies; 6+ messages in thread
From: Jain, Deepak K @ 2016-09-13 13:39 UTC (permalink / raw)
  To: Thomas Monjalon; +Cc: dev, De Lara Guarch, Pablo, Breen, Eoin



> -----Original Message-----
> From: Thomas Monjalon [mailto:thomas.monjalon@6wind.com]
> Sent: Tuesday, September 13, 2016 12:51 PM
> To: Jain, Deepak K <deepak.k.jain@intel.com>
> Cc: dev@dpdk.org; De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>;
> Breen, Eoin <eoin.breen@intel.com>
> Subject: Re: [dpdk-dev] [PATCH v2] doc/guides: add info on how to enable
> QAT
> 
> 2016-09-13 11:47, Deepak Kumar Jain:
> > +#. ``make config T=x86_64-native-linuxapp-gcc`` #. Open the
> > +``./build/.config`` file #. Replace ``CONFIG_RTE_LIBRTE_PMD_QAT=n``
> > +with ``CONFIG_RTE_LIBRTE_PMD_QAT=y``
> 
> It is better to put commands after "code-block:: console"
> Then I suggest this command:
> 	sed -i 's,\(CONFIG_RTE_LIBRTE_PMD_QAT\)=n,\1=y,' build/.config

Thanks. I will update and send v3 of the patch.

 
> > +#. ``make``
> 

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

* [PATCH v3] doc/guides: add info on how to enable QAT
       [not found] <1472574107-143391-1-git-send-email-eoin.breen@intel.com>
  2016-09-13 10:47 ` [PATCH v2] doc/guides: add info on how to enable QAT Deepak Kumar Jain
@ 2016-09-13 14:08 ` Deepak Kumar Jain
  2016-09-15 14:34   ` Trahe, Fiona
  2016-09-17  1:50   ` De Lara Guarch, Pablo
  1 sibling, 2 replies; 6+ messages in thread
From: Deepak Kumar Jain @ 2016-09-13 14:08 UTC (permalink / raw)
  To: dev; +Cc: pablo.de.lara.guarch, Eoin Breen, Deepak Kumar Jain

From: Eoin Breen <eoin.breen@intel.com>

Signed-off-by: Eoin Breen <eoin.breen@intel.com>
Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
---
Changes in v3:
* Add console code-block
* Modified the command to replace n with y in build/.config

Changes in v2:
* Incorporated comments received on v1.


 doc/guides/cryptodevs/qat.rst | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/doc/guides/cryptodevs/qat.rst b/doc/guides/cryptodevs/qat.rst
index 3ee2312..2480ce2 100644
--- a/doc/guides/cryptodevs/qat.rst
+++ b/doc/guides/cryptodevs/qat.rst
@@ -83,6 +83,17 @@ Installation
 To use the DPDK QAT PMD an SRIOV-enabled QAT kernel driver is required. The
 VF devices exposed by this driver will be used by QAT PMD.
 
+To enable QAT in DPDK, follow the instructions mentioned in
+http://dpdk.org/doc/guides/linux_gsg/build_dpdk.html
+
+Quick instructions as follows:
+
+.. code-block:: console
+
+	make config T=x86_64-native-linuxapp-gcc
+	sed -i 's,\(CONFIG_RTE_LIBRTE_PMD_QAT\)=n,\1=y,' build/.config
+	make
+
 If you are running on kernel 4.4 or greater, see instructions for
 `Installation using kernel.org driver`_ below. If you are on a kernel earlier
 than 4.4, see `Installation using 01.org QAT driver`_.
-- 
2.5.5

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

* Re: [PATCH v3] doc/guides: add info on how to enable QAT
  2016-09-13 14:08 ` [PATCH v3] " Deepak Kumar Jain
@ 2016-09-15 14:34   ` Trahe, Fiona
  2016-09-17  1:50   ` De Lara Guarch, Pablo
  1 sibling, 0 replies; 6+ messages in thread
From: Trahe, Fiona @ 2016-09-15 14:34 UTC (permalink / raw)
  To: Jain, Deepak K, dev; +Cc: De Lara Guarch, Pablo, Trahe, Fiona



> -----Original Message-----
> From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Deepak Kumar Jain
> Sent: Tuesday, September 13, 2016 3:09 PM
> To: dev@dpdk.org
> Cc: De Lara Guarch, Pablo <pablo.de.lara.guarch@intel.com>; Breen, Eoin
> <eoin.breen@intel.com>; Jain, Deepak K <deepak.k.jain@intel.com>
> Subject: [dpdk-dev] [PATCH v3] doc/guides: add info on how to enable QAT
> 
> From: Eoin Breen <eoin.breen@intel.com>
> 
> Signed-off-by: Eoin Breen <eoin.breen@intel.com>
> Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>

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

* Re: [PATCH v3] doc/guides: add info on how to enable QAT
  2016-09-13 14:08 ` [PATCH v3] " Deepak Kumar Jain
  2016-09-15 14:34   ` Trahe, Fiona
@ 2016-09-17  1:50   ` De Lara Guarch, Pablo
  1 sibling, 0 replies; 6+ messages in thread
From: De Lara Guarch, Pablo @ 2016-09-17  1:50 UTC (permalink / raw)
  To: Jain, Deepak K, dev; +Cc: Breen, Eoin



> -----Original Message-----
> From: Jain, Deepak K
> Sent: Tuesday, September 13, 2016 7:09 AM
> To: dev@dpdk.org
> Cc: De Lara Guarch, Pablo; Breen, Eoin; Jain, Deepak K
> Subject: [PATCH v3] doc/guides: add info on how to enable QAT
> 
> From: Eoin Breen <eoin.breen@intel.com>
> 
> Signed-off-by: Eoin Breen <eoin.breen@intel.com>
> Signed-off-by: Deepak Kumar Jain <deepak.k.jain@intel.com>
> ---

Applied to dpdk-next-crypto.
Thanks,

Pablo

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

end of thread, other threads:[~2016-09-17  1:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <1472574107-143391-1-git-send-email-eoin.breen@intel.com>
2016-09-13 10:47 ` [PATCH v2] doc/guides: add info on how to enable QAT Deepak Kumar Jain
2016-09-13 11:50   ` Thomas Monjalon
2016-09-13 13:39     ` Jain, Deepak K
2016-09-13 14:08 ` [PATCH v3] " Deepak Kumar Jain
2016-09-15 14:34   ` Trahe, Fiona
2016-09-17  1:50   ` De Lara Guarch, Pablo

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.