compress/qat: fix checksum on decompression
Checksum was always 0 on QAT decompression due to incorrect use of union variable. Fixes: 6a7ea14819e9 ("compress/qat: add xform processing") Cc: stable@dpdk.org Signed-off-by: Fiona Trahe <fiona.trahe@intel.com> Acked-by: Tomasz Jozwiak <tomaszx.jozwiak@intel.com>
This commit is contained in:
parent
0ad08d3c29
commit
7586c57873
@ -345,17 +345,16 @@ qat_comp_private_xform_create(struct rte_compressdev *dev,
|
||||
if (xform->compress.deflate.huffman == RTE_COMP_HUFFMAN_FIXED ||
|
||||
((xform->compress.deflate.huffman == RTE_COMP_HUFFMAN_DEFAULT)
|
||||
&& qat->interm_buff_mz == NULL))
|
||||
|
||||
qat_xform->qat_comp_request_type =
|
||||
QAT_COMP_REQUEST_FIXED_COMP_STATELESS;
|
||||
|
||||
qat_xform->checksum_type = xform->compress.chksum;
|
||||
|
||||
} else {
|
||||
qat_xform->qat_comp_request_type = QAT_COMP_REQUEST_DECOMPRESS;
|
||||
qat_xform->checksum_type = xform->decompress.chksum;
|
||||
}
|
||||
|
||||
qat_xform->checksum_type = xform->compress.chksum;
|
||||
|
||||
if (qat_comp_create_templates(qat_xform, qat->interm_buff_mz, xform)) {
|
||||
QAT_LOG(ERR, "QAT: Problem with setting compression");
|
||||
return -EINVAL;
|
||||
|
Loading…
x
Reference in New Issue
Block a user