* [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name
@ 2020-03-04 13:18 Adam Dybkowski
2020-03-04 13:18 ` [dpdk-dev] [PATCH 2/2] doc: fix QAT GEN3 marketing name in release notes Adam Dybkowski
2020-03-11 14:27 ` [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name Trahe, Fiona
0 siblings, 2 replies; 5+ messages in thread
From: Adam Dybkowski @ 2020-03-04 13:18 UTC (permalink / raw)
To: dev, stable, fiona.trahe, akhil.goyal; +Cc: Adam Dybkowski
This patch fixes the marketing name of the QAT GEN3 to P5xxx.
Updates this name mentioned in the compression PMD as well as
in the documentation.
Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding")
Fixes: 1f5e4053f9b4 ("common/qat: support GEN3 devices")
Cc: stable@dpdk.org
Signed-off-by: Adam Dybkowski <adamx.dybkowski@intel.com>
---
doc/guides/cryptodevs/qat.rst | 6 +++---
drivers/compress/qat/qat_comp_pmd.c | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/doc/guides/cryptodevs/qat.rst b/doc/guides/cryptodevs/qat.rst
index 06985e319..1e83ed626 100644
--- a/doc/guides/cryptodevs/qat.rst
+++ b/doc/guides/cryptodevs/qat.rst
@@ -23,7 +23,7 @@ poll mode crypto driver support for the following hardware accelerator devices:
* ``Intel QuickAssist Technology C62x``
* ``Intel QuickAssist Technology C3xxx``
* ``Intel QuickAssist Technology D15xx``
-* ``Intel QuickAssist Technology C4xxx``
+* ``Intel QuickAssist Technology P5xxx``
Features
@@ -149,7 +149,7 @@ poll mode crypto driver support for the following hardware accelerator devices:
* ``Intel QuickAssist Technology C62x``
* ``Intel QuickAssist Technology C3xxx``
* ``Intel QuickAssist Technology D15xx``
-* ``Intel QuickAssist Technology C4xxx``
+* ``Intel QuickAssist Technology P5xxx``
The QAT ASYM PMD has support for:
@@ -376,7 +376,7 @@ to see the full table)
+-----+-----+-----+-----+----------+---------------+---------------+------------+--------+------+--------+--------+
| Yes | No | No | 2 | D15xx | p | qat_d15xx | d15xx | 6f54 | 1 | 6f55 | 16 |
+-----+-----+-----+-----+----------+---------------+---------------+------------+--------+------+--------+--------+
- | Yes | No | No | 3 | C4xxx | p | qat_c4xxx | c4xxx | 18a0 | 1 | 18a1 | 128 |
+ | Yes | No | No | 3 | P5xxx | p | qat_p5xxx | p5xxx | 18a0 | 1 | 18a1 | 128 |
+-----+-----+-----+-----+----------+---------------+---------------+------------+--------+------+--------+--------+
The first 3 columns indicate the service:
diff --git a/drivers/compress/qat/qat_comp_pmd.c b/drivers/compress/qat/qat_comp_pmd.c
index 7d4fdf10c..9a7ed19d7 100644
--- a/drivers/compress/qat/qat_comp_pmd.c
+++ b/drivers/compress/qat/qat_comp_pmd.c
@@ -666,7 +666,7 @@ qat_comp_dev_create(struct qat_pci_device *qat_pci_dev,
{
int i = 0;
if (qat_pci_dev->qat_dev_gen == QAT_GEN3) {
- QAT_LOG(ERR, "Compression PMD not supported on QAT c4xxx");
+ QAT_LOG(ERR, "Compression PMD not supported on QAT P5xxx");
return 0;
}
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* [dpdk-dev] [PATCH 2/2] doc: fix QAT GEN3 marketing name in release notes
2020-03-04 13:18 [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name Adam Dybkowski
@ 2020-03-04 13:18 ` Adam Dybkowski
2020-03-11 14:28 ` Trahe, Fiona
2020-03-11 14:27 ` [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name Trahe, Fiona
1 sibling, 1 reply; 5+ messages in thread
From: Adam Dybkowski @ 2020-03-04 13:18 UTC (permalink / raw)
To: dev, stable, fiona.trahe, akhil.goyal; +Cc: Adam Dybkowski
This patch fixes the marketing name of the QAT GEN3 to P5xxx.
Fixes: aa983f03ad2e ("crypto/qat: handle Single Pass Crypto Requests on GEN3")
Cc: stable@dpdk.org
Signed-off-by: Adam Dybkowski <adamx.dybkowski@intel.com>
---
doc/guides/rel_notes/release_19_11.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/doc/guides/rel_notes/release_19_11.rst b/doc/guides/rel_notes/release_19_11.rst
index eb05149f8..0261d2843 100644
--- a/doc/guides/rel_notes/release_19_11.rst
+++ b/doc/guides/rel_notes/release_19_11.rst
@@ -260,7 +260,7 @@ New Features
* **Enabled Single Pass GCM acceleration on QAT GEN3.**
Added support for Single Pass GCM, available on QAT GEN3 only (Intel
- QuickAssist Technology C4xxx). It is automatically chosen instead of the
+ QuickAssist Technology P5xxx). It is automatically chosen instead of the
classic 2-pass mode when running on QAT GEN3, significantly improving
the performance of AES GCM operations.
--
2.17.1
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 2/2] doc: fix QAT GEN3 marketing name in release notes
2020-03-04 13:18 ` [dpdk-dev] [PATCH 2/2] doc: fix QAT GEN3 marketing name in release notes Adam Dybkowski
@ 2020-03-11 14:28 ` Trahe, Fiona
0 siblings, 0 replies; 5+ messages in thread
From: Trahe, Fiona @ 2020-03-11 14:28 UTC (permalink / raw)
To: Dybkowski, AdamX, dev, stable, akhil.goyal
> -----Original Message-----
> From: Dybkowski, AdamX <adamx.dybkowski@intel.com>
> Sent: Wednesday, March 4, 2020 1:19 PM
> To: dev@dpdk.org; stable@dpdk.org; Trahe, Fiona <fiona.trahe@intel.com>; akhil.goyal@nxp.com
> Cc: Dybkowski, AdamX <adamx.dybkowski@intel.com>
> Subject: [PATCH 2/2] doc: fix QAT GEN3 marketing name in release notes
>
> This patch fixes the marketing name of the QAT GEN3 to P5xxx.
>
> Fixes: aa983f03ad2e ("crypto/qat: handle Single Pass Crypto Requests on GEN3")
> Cc: stable@dpdk.org
>
> Signed-off-by: Adam Dybkowski <adamx.dybkowski@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name
2020-03-04 13:18 [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name Adam Dybkowski
2020-03-04 13:18 ` [dpdk-dev] [PATCH 2/2] doc: fix QAT GEN3 marketing name in release notes Adam Dybkowski
@ 2020-03-11 14:27 ` Trahe, Fiona
2020-03-25 19:09 ` Akhil Goyal
1 sibling, 1 reply; 5+ messages in thread
From: Trahe, Fiona @ 2020-03-11 14:27 UTC (permalink / raw)
To: Dybkowski, AdamX, dev, stable, akhil.goyal
> -----Original Message-----
> From: Dybkowski, AdamX <adamx.dybkowski@intel.com>
> Sent: Wednesday, March 4, 2020 1:19 PM
> To: dev@dpdk.org; stable@dpdk.org; Trahe, Fiona <fiona.trahe@intel.com>; akhil.goyal@nxp.com
> Cc: Dybkowski, AdamX <adamx.dybkowski@intel.com>
> Subject: [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name
>
> This patch fixes the marketing name of the QAT GEN3 to P5xxx.
> Updates this name mentioned in the compression PMD as well as
> in the documentation.
>
> Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding")
> Fixes: 1f5e4053f9b4 ("common/qat: support GEN3 devices")
> Cc: stable@dpdk.org
>
> Signed-off-by: Adam Dybkowski <adamx.dybkowski@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name
2020-03-11 14:27 ` [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name Trahe, Fiona
@ 2020-03-25 19:09 ` Akhil Goyal
0 siblings, 0 replies; 5+ messages in thread
From: Akhil Goyal @ 2020-03-25 19:09 UTC (permalink / raw)
To: Trahe, Fiona, Dybkowski, AdamX, dev, stable
> >
> > This patch fixes the marketing name of the QAT GEN3 to P5xxx.
> > Updates this name mentioned in the compression PMD as well as
> > in the documentation.
> >
> > Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding")
> > Fixes: 1f5e4053f9b4 ("common/qat: support GEN3 devices")
> > Cc: stable@dpdk.org
> >
> > Signed-off-by: Adam Dybkowski <adamx.dybkowski@intel.com>
> Acked-by: Fiona Trahe <fiona.trahe@intel.com>
Applied to dpdk-next-crypto
Thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2020-03-25 19:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-04 13:18 [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name Adam Dybkowski
2020-03-04 13:18 ` [dpdk-dev] [PATCH 2/2] doc: fix QAT GEN3 marketing name in release notes Adam Dybkowski
2020-03-11 14:28 ` Trahe, Fiona
2020-03-11 14:27 ` [dpdk-dev] [PATCH 1/2] compress/qat: fix QAT GEN3 marketing name Trahe, Fiona
2020-03-25 19:09 ` 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).