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.tr...@intel.com

Signed-off-by: Marko Kovacevic <marko.kovace...@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

Reply via email to