compress/qat: catch overflow for stateless compression
authorArtur Trybula <arturx.trybula@intel.com>
Wed, 16 Oct 2019 09:40:44 +0000 (11:40 +0200)
committerAkhil Goyal <akhil.goyal@nxp.com>
Wed, 23 Oct 2019 14:57:06 +0000 (16:57 +0200)
This patch adds out-of-space recoverable feature for stateless
compression scenario to QuickAssist compressdev driver

Signed-off-by: Artur Trybula <arturx.trybula@intel.com>
Acked-by: Fiona Trahe <fiona.trahe@intel.com>
drivers/compress/qat/qat_comp.c

index 8717b74..533e34f 100644 (file)
@@ -324,10 +324,32 @@ qat_comp_process_response(void **op, uint8_t *resp, void *op_cookie,
                    (!cmp_err_code && xlat_err_code == ERR_CODE_OVERFLOW_ERROR)
                                ||
                    (cmp_err_code == ERR_CODE_OVERFLOW_ERROR &&
-                    xlat_err_code == ERR_CODE_OVERFLOW_ERROR))
-                       rx_op->status =
+                    xlat_err_code == ERR_CODE_OVERFLOW_ERROR)){
+
+                       struct icp_qat_fw_resp_comp_pars *comp_resp =
+         (struct icp_qat_fw_resp_comp_pars *)&resp_msg->comp_resp_pars;
+
+                       /* handle recoverable out-of-buffer condition */
+                       /* in stateless compression scenario */
+                       if (comp_resp->input_byte_counter) {
+                               if ((qat_xform->qat_comp_request_type
+                               == QAT_COMP_REQUEST_FIXED_COMP_STATELESS) ||
+                                   (qat_xform->qat_comp_request_type
+                               == QAT_COMP_REQUEST_DYNAMIC_COMP_STATELESS)) {
+
+                                       rx_op->status =
+                               RTE_COMP_OP_STATUS_OUT_OF_SPACE_RECOVERABLE;
+                                       rx_op->consumed =
+                                               comp_resp->input_byte_counter;
+                                       rx_op->produced =
+                                               comp_resp->output_byte_counter;
+                               } else
+                                       rx_op->status =
+                               RTE_COMP_OP_STATUS_OUT_OF_SPACE_TERMINATED;
+                       } else
+                               rx_op->status =
                                RTE_COMP_OP_STATUS_OUT_OF_SPACE_TERMINATED;
-               else
+               else
                        rx_op->status = RTE_COMP_OP_STATUS_ERROR;
 
                ++(*dequeue_err_count);