* [dpdk-dev] [PATCH] qat/compress: fix qat comp setup inter_buffers
@ 2019-01-24 15:03 Marko Kovacevic
2019-01-30 12:14 ` Trahe, Fiona
0 siblings, 1 reply; 4+ messages in thread
From: Marko Kovacevic @ 2019-01-24 15:03 UTC (permalink / raw)
To: dev; +Cc: stable, ferruh.yigit, ktraynor, Marko Kovacevic, fiona.trahe
This patch fixes qat comp setup inter_buffers
memory allocation size to a broader size
then just 2MB
Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding")
Cc: fiona.trahe@intel.com
Signed-off-by: Marko Kovacevic <marko.kovacevic@intel.com>
---
drivers/compress/qat/qat_comp_pmd.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/compress/qat/qat_comp_pmd.c b/drivers/compress/qat/qat_comp_pmd.c
index 27c8856..d45cd67 100644
--- a/drivers/compress/qat/qat_comp_pmd.c
+++ b/drivers/compress/qat/qat_comp_pmd.c
@@ -185,7 +185,7 @@ qat_comp_setup_inter_buffers(struct qat_comp_dev_private *comp_dev,
memzone = rte_memzone_reserve_aligned(inter_buff_mz_name, full_size,
comp_dev->compressdev->data->socket_id,
- RTE_MEMZONE_2MB, QAT_64_BYTE_ALIGN);
+ RTE_MEMZONE_IOVA_CONTIG, QAT_64_BYTE_ALIGN);
if (memzone == NULL) {
QAT_LOG(ERR, "Can't allocate intermediate buffers"
" for device %s", comp_dev->qat_dev->name);
--
2.9.5
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] qat/compress: fix qat comp setup inter_buffers
2019-01-24 15:03 [dpdk-dev] [PATCH] qat/compress: fix qat comp setup inter_buffers Marko Kovacevic
@ 2019-01-30 12:14 ` Trahe, Fiona
2019-03-19 14:02 ` Akhil Goyal
0 siblings, 1 reply; 4+ messages in thread
From: Trahe, Fiona @ 2019-01-30 12:14 UTC (permalink / raw)
To: Kovacevic, Marko, dev; +Cc: stable, Yigit, Ferruh, ktraynor, Trahe, Fiona
> -----Original Message-----
> From: Kovacevic, Marko
> Sent: Thursday, January 24, 2019 3:03 PM
> To: dev@dpdk.org
> Cc: stable@dpdk.org; Yigit, Ferruh <ferruh.yigit@intel.com>; ktraynor@redhat.com; Kovacevic, Marko
> <marko.kovacevic@intel.com>; Trahe, Fiona <fiona.trahe@intel.com>
> Subject: [PATCH] qat/compress: fix qat comp setup inter_buffers
>
> This patch fixes qat comp setup inter_buffers
> memory allocation size to a broader size
> then just 2MB
>
> Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding")
> Cc: fiona.trahe@intel.com
>
> Signed-off-by: Marko Kovacevic <marko.kovacevic@intel.com>
Acked-by: <fiona.trahe@intel.com>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] qat/compress: fix qat comp setup inter_buffers
2019-01-30 12:14 ` Trahe, Fiona
@ 2019-03-19 14:02 ` Akhil Goyal
2019-03-19 14:02 ` Akhil Goyal
0 siblings, 1 reply; 4+ messages in thread
From: Akhil Goyal @ 2019-03-19 14:02 UTC (permalink / raw)
To: Trahe, Fiona, Kovacevic, Marko, dev; +Cc: stable, Yigit, Ferruh, ktraynor
On 1/30/2019 5:44 PM, Trahe, Fiona wrote:
>
>> -----Original Message-----
>> From: Kovacevic, Marko
>> Sent: Thursday, January 24, 2019 3:03 PM
>> To: dev@dpdk.org
>> Cc: stable@dpdk.org; Yigit, Ferruh <ferruh.yigit@intel.com>; ktraynor@redhat.com; Kovacevic, Marko
>> <marko.kovacevic@intel.com>; Trahe, Fiona <fiona.trahe@intel.com>
>> Subject: [PATCH] qat/compress: fix qat comp setup inter_buffers
>>
>> This patch fixes qat comp setup inter_buffers
>> memory allocation size to a broader size
>> then just 2MB
>>
>> Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding")
>> Cc: fiona.trahe@intel.com
>>
>> Signed-off-by: Marko Kovacevic <marko.kovacevic@intel.com>
> Acked-by: <fiona.trahe@intel.com>
Applied to dpdk-next-crypto
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [dpdk-dev] [PATCH] qat/compress: fix qat comp setup inter_buffers
2019-03-19 14:02 ` Akhil Goyal
@ 2019-03-19 14:02 ` Akhil Goyal
0 siblings, 0 replies; 4+ messages in thread
From: Akhil Goyal @ 2019-03-19 14:02 UTC (permalink / raw)
To: Trahe, Fiona, Kovacevic, Marko, dev; +Cc: stable, Yigit, Ferruh, ktraynor
On 1/30/2019 5:44 PM, Trahe, Fiona wrote:
>
>> -----Original Message-----
>> From: Kovacevic, Marko
>> Sent: Thursday, January 24, 2019 3:03 PM
>> To: dev@dpdk.org
>> Cc: stable@dpdk.org; Yigit, Ferruh <ferruh.yigit@intel.com>; ktraynor@redhat.com; Kovacevic, Marko
>> <marko.kovacevic@intel.com>; Trahe, Fiona <fiona.trahe@intel.com>
>> Subject: [PATCH] qat/compress: fix qat comp setup inter_buffers
>>
>> This patch fixes qat comp setup inter_buffers
>> memory allocation size to a broader size
>> then just 2MB
>>
>> Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding")
>> Cc: fiona.trahe@intel.com
>>
>> Signed-off-by: Marko Kovacevic <marko.kovacevic@intel.com>
> Acked-by: <fiona.trahe@intel.com>
Applied to dpdk-next-crypto
Thanks.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-03-19 14:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-01-24 15:03 [dpdk-dev] [PATCH] qat/compress: fix qat comp setup inter_buffers Marko Kovacevic
2019-01-30 12:14 ` Trahe, Fiona
2019-03-19 14:02 ` Akhil Goyal
2019-03-19 14:02 ` 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).