From: Adam Dybkowski Date: Wed, 28 Apr 2021 14:41:41 +0000 (+0100) Subject: common/qat: increase IM buffer size for GEN3 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=cd218e52c49600039c42d3b57b42704683e41a0f;p=dpdk.git common/qat: increase IM buffer size for GEN3 This patch increases the intermediate buffer size used for the compression on QAT GEN3 to accommodate new hardware versions. Fixes: a124830a6f00 ("compress/qat: enable dynamic huffman encoding") Cc: stable@dpdk.org Signed-off-by: Adam Dybkowski Acked-by: Fan Zhang --- diff --git a/drivers/common/qat/qat_device.h b/drivers/common/qat/qat_device.h index e6337c688d..9c6a3ca4e6 100644 --- a/drivers/common/qat/qat_device.h +++ b/drivers/common/qat/qat_device.h @@ -29,7 +29,7 @@ struct qat_dev_cmd_param { enum qat_comp_num_im_buffers { QAT_NUM_INTERM_BUFS_GEN1 = 12, QAT_NUM_INTERM_BUFS_GEN2 = 20, - QAT_NUM_INTERM_BUFS_GEN3 = 20 + QAT_NUM_INTERM_BUFS_GEN3 = 64 }; struct qat_device_info {