remove extra parentheses in return statement
[dpdk.git] / drivers / crypto / qat / qat_crypto.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *       * Redistributions of source code must retain the above copyright
12  *         notice, this list of conditions and the following disclaimer.
13  *       * Redistributions in binary form must reproduce the above copyright
14  *         notice, this list of conditions and the following disclaimer in
15  *         the documentation and/or other materials provided with the
16  *         distribution.
17  *       * Neither the name of Intel Corporation nor the names of its
18  *         contributors may be used to endorse or promote products derived
19  *         from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <stdio.h>
35 #include <stdlib.h>
36 #include <strings.h>
37 #include <string.h>
38 #include <inttypes.h>
39 #include <errno.h>
40 #include <sys/queue.h>
41 #include <stdarg.h>
42
43 #include <rte_common.h>
44 #include <rte_log.h>
45 #include <rte_debug.h>
46 #include <rte_memory.h>
47 #include <rte_memzone.h>
48 #include <rte_tailq.h>
49 #include <rte_ether.h>
50 #include <rte_malloc.h>
51 #include <rte_launch.h>
52 #include <rte_eal.h>
53 #include <rte_per_lcore.h>
54 #include <rte_lcore.h>
55 #include <rte_atomic.h>
56 #include <rte_branch_prediction.h>
57 #include <rte_ring.h>
58 #include <rte_mempool.h>
59 #include <rte_mbuf.h>
60 #include <rte_string_fns.h>
61 #include <rte_spinlock.h>
62 #include <rte_mbuf_offload.h>
63 #include <rte_hexdump.h>
64
65 #include "qat_logs.h"
66 #include "qat_algs.h"
67 #include "qat_crypto.h"
68 #include "adf_transport_access_macros.h"
69
70
71 static inline uint32_t
72 adf_modulo(uint32_t data, uint32_t shift);
73
74 static inline int
75 qat_alg_write_mbuf_entry(struct rte_mbuf *mbuf, uint8_t *out_msg);
76
77 void qat_crypto_sym_clear_session(struct rte_cryptodev *dev,
78                 void *session)
79 {
80         struct qat_session *sess = session;
81         phys_addr_t cd_paddr = sess->cd_paddr;
82
83         PMD_INIT_FUNC_TRACE();
84         if (session) {
85                 memset(sess, 0, qat_crypto_sym_get_session_private_size(dev));
86
87                 sess->cd_paddr = cd_paddr;
88         }
89 }
90
91 static int
92 qat_get_cmd_id(const struct rte_crypto_xform *xform)
93 {
94         if (xform->next == NULL)
95                 return -1;
96
97         /* Cipher Only */
98         if (xform->type == RTE_CRYPTO_XFORM_CIPHER && xform->next == NULL)
99                 return -1; /* return ICP_QAT_FW_LA_CMD_CIPHER; */
100
101         /* Authentication Only */
102         if (xform->type == RTE_CRYPTO_XFORM_AUTH && xform->next == NULL)
103                 return -1; /* return ICP_QAT_FW_LA_CMD_AUTH; */
104
105         /* Cipher then Authenticate */
106         if (xform->type == RTE_CRYPTO_XFORM_CIPHER &&
107                         xform->next->type == RTE_CRYPTO_XFORM_AUTH)
108                 return ICP_QAT_FW_LA_CMD_CIPHER_HASH;
109
110         /* Authenticate then Cipher */
111         if (xform->type == RTE_CRYPTO_XFORM_AUTH &&
112                         xform->next->type == RTE_CRYPTO_XFORM_CIPHER)
113                 return ICP_QAT_FW_LA_CMD_HASH_CIPHER;
114
115         return -1;
116 }
117
118 static struct rte_crypto_auth_xform *
119 qat_get_auth_xform(struct rte_crypto_xform *xform)
120 {
121         do {
122                 if (xform->type == RTE_CRYPTO_XFORM_AUTH)
123                         return &xform->auth;
124
125                 xform = xform->next;
126         } while (xform);
127
128         return NULL;
129 }
130
131 static struct rte_crypto_cipher_xform *
132 qat_get_cipher_xform(struct rte_crypto_xform *xform)
133 {
134         do {
135                 if (xform->type == RTE_CRYPTO_XFORM_CIPHER)
136                         return &xform->cipher;
137
138                 xform = xform->next;
139         } while (xform);
140
141         return NULL;
142 }
143
144
145 void *
146 qat_crypto_sym_configure_session(struct rte_cryptodev *dev,
147                 struct rte_crypto_xform *xform, void *session_private)
148 {
149         struct qat_pmd_private *internals = dev->data->dev_private;
150
151         struct qat_session *session = session_private;
152
153         struct rte_crypto_auth_xform *auth_xform = NULL;
154         struct rte_crypto_cipher_xform *cipher_xform = NULL;
155
156         int qat_cmd_id;
157
158         PMD_INIT_FUNC_TRACE();
159
160         /* Get requested QAT command id */
161         qat_cmd_id = qat_get_cmd_id(xform);
162         if (qat_cmd_id < 0 || qat_cmd_id >= ICP_QAT_FW_LA_CMD_DELIMITER) {
163                 PMD_DRV_LOG(ERR, "Unsupported xform chain requested");
164                 goto error_out;
165         }
166         session->qat_cmd = (enum icp_qat_fw_la_cmd_id)qat_cmd_id;
167
168         /* Get cipher xform from crypto xform chain */
169         cipher_xform = qat_get_cipher_xform(xform);
170
171         switch (cipher_xform->algo) {
172         case RTE_CRYPTO_CIPHER_AES_CBC:
173                 if (qat_alg_validate_aes_key(cipher_xform->key.length,
174                                 &session->qat_cipher_alg) != 0) {
175                         PMD_DRV_LOG(ERR, "Invalid AES cipher key size");
176                         goto error_out;
177                 }
178                 session->qat_mode = ICP_QAT_HW_CIPHER_CBC_MODE;
179                 break;
180         case RTE_CRYPTO_CIPHER_AES_GCM:
181                 if (qat_alg_validate_aes_key(cipher_xform->key.length,
182                                 &session->qat_cipher_alg) != 0) {
183                         PMD_DRV_LOG(ERR, "Invalid AES cipher key size");
184                         goto error_out;
185                 }
186                 session->qat_mode = ICP_QAT_HW_CIPHER_CTR_MODE;
187                 break;
188         case RTE_CRYPTO_CIPHER_NULL:
189         case RTE_CRYPTO_CIPHER_3DES_ECB:
190         case RTE_CRYPTO_CIPHER_3DES_CBC:
191         case RTE_CRYPTO_CIPHER_AES_ECB:
192         case RTE_CRYPTO_CIPHER_AES_CTR:
193         case RTE_CRYPTO_CIPHER_AES_CCM:
194         case RTE_CRYPTO_CIPHER_KASUMI_F8:
195                 PMD_DRV_LOG(ERR, "Crypto: Unsupported Cipher alg %u",
196                                 cipher_xform->algo);
197                 goto error_out;
198         default:
199                 PMD_DRV_LOG(ERR, "Crypto: Undefined Cipher specified %u\n",
200                                 cipher_xform->algo);
201                 goto error_out;
202         }
203
204         if (cipher_xform->op == RTE_CRYPTO_CIPHER_OP_ENCRYPT)
205                 session->qat_dir = ICP_QAT_HW_CIPHER_ENCRYPT;
206         else
207                 session->qat_dir = ICP_QAT_HW_CIPHER_DECRYPT;
208
209
210         /* Get authentication xform from Crypto xform chain */
211         auth_xform = qat_get_auth_xform(xform);
212
213         switch (auth_xform->algo) {
214         case RTE_CRYPTO_AUTH_SHA1_HMAC:
215                 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SHA1;
216                 break;
217         case RTE_CRYPTO_AUTH_SHA256_HMAC:
218                 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SHA256;
219                 break;
220         case RTE_CRYPTO_AUTH_SHA512_HMAC:
221                 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_SHA512;
222                 break;
223         case RTE_CRYPTO_AUTH_AES_XCBC_MAC:
224                 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_AES_XCBC_MAC;
225                 break;
226         case RTE_CRYPTO_AUTH_AES_GCM:
227         case RTE_CRYPTO_AUTH_AES_GMAC:
228                 session->qat_hash_alg = ICP_QAT_HW_AUTH_ALGO_GALOIS_128;
229                 break;
230         case RTE_CRYPTO_AUTH_NULL:
231         case RTE_CRYPTO_AUTH_SHA1:
232         case RTE_CRYPTO_AUTH_SHA256:
233         case RTE_CRYPTO_AUTH_SHA512:
234         case RTE_CRYPTO_AUTH_SHA224:
235         case RTE_CRYPTO_AUTH_SHA224_HMAC:
236         case RTE_CRYPTO_AUTH_SHA384:
237         case RTE_CRYPTO_AUTH_SHA384_HMAC:
238         case RTE_CRYPTO_AUTH_MD5:
239         case RTE_CRYPTO_AUTH_MD5_HMAC:
240         case RTE_CRYPTO_AUTH_AES_CCM:
241         case RTE_CRYPTO_AUTH_KASUMI_F9:
242         case RTE_CRYPTO_AUTH_SNOW3G_UIA2:
243         case RTE_CRYPTO_AUTH_AES_CMAC:
244         case RTE_CRYPTO_AUTH_AES_CBC_MAC:
245         case RTE_CRYPTO_AUTH_ZUC_EIA3:
246                 PMD_DRV_LOG(ERR, "Crypto: Unsupported hash alg %u",
247                                 auth_xform->algo);
248                 goto error_out;
249         default:
250                 PMD_DRV_LOG(ERR, "Crypto: Undefined Hash algo %u specified",
251                                 auth_xform->algo);
252                 goto error_out;
253         }
254
255         if (qat_alg_aead_session_create_content_desc(session,
256                 cipher_xform->key.data,
257                 cipher_xform->key.length,
258                 auth_xform->key.data,
259                 auth_xform->key.length,
260                 auth_xform->add_auth_data_length,
261                 auth_xform->digest_length))
262                 goto error_out;
263
264         return (struct rte_cryptodev_session *)session;
265
266 error_out:
267         rte_mempool_put(internals->sess_mp, session);
268         return NULL;
269 }
270
271 unsigned qat_crypto_sym_get_session_private_size(
272                 struct rte_cryptodev *dev __rte_unused)
273 {
274         return RTE_ALIGN_CEIL(sizeof(struct qat_session), 8);
275 }
276
277
278 uint16_t qat_crypto_pkt_tx_burst(void *qp, struct rte_mbuf **tx_pkts,
279                 uint16_t nb_pkts)
280 {
281         register struct qat_queue *queue;
282         struct qat_qp *tmp_qp = (struct qat_qp *)qp;
283         register uint32_t nb_pkts_sent = 0;
284         register struct rte_mbuf **cur_tx_pkt = tx_pkts;
285         register int ret;
286         uint16_t nb_pkts_possible = nb_pkts;
287         register uint8_t *base_addr;
288         register uint32_t tail;
289         int overflow;
290
291         /* read params used a lot in main loop into registers */
292         queue = &(tmp_qp->tx_q);
293         base_addr = (uint8_t *)queue->base_addr;
294         tail = queue->tail;
295
296         /* Find how many can actually fit on the ring */
297         overflow = rte_atomic16_add_return(&tmp_qp->inflights16, nb_pkts)
298                                 - queue->max_inflights;
299         if (overflow > 0) {
300                 rte_atomic16_sub(&tmp_qp->inflights16, overflow);
301                 nb_pkts_possible = nb_pkts - overflow;
302                 if (nb_pkts_possible == 0)
303                         return 0;
304         }
305
306         while (nb_pkts_sent != nb_pkts_possible) {
307
308                 ret = qat_alg_write_mbuf_entry(*cur_tx_pkt,
309                         base_addr + tail);
310                 if (ret != 0) {
311                         tmp_qp->stats.enqueue_err_count++;
312                         if (nb_pkts_sent == 0)
313                                 return 0;
314                         goto kick_tail;
315                 }
316
317                 tail = adf_modulo(tail + queue->msg_size, queue->modulo);
318                 nb_pkts_sent++;
319                 cur_tx_pkt++;
320         }
321 kick_tail:
322         WRITE_CSR_RING_TAIL(tmp_qp->mmap_bar_addr, queue->hw_bundle_number,
323                         queue->hw_queue_number, tail);
324         queue->tail = tail;
325         tmp_qp->stats.enqueued_count += nb_pkts_sent;
326         return nb_pkts_sent;
327 }
328
329 uint16_t
330 qat_crypto_pkt_rx_burst(void *qp, struct rte_mbuf **rx_pkts, uint16_t nb_pkts)
331 {
332         struct rte_mbuf_offload *ol;
333         struct qat_queue *queue;
334         struct qat_qp *tmp_qp = (struct qat_qp *)qp;
335         uint32_t msg_counter = 0;
336         struct rte_mbuf *rx_mbuf;
337         struct icp_qat_fw_comn_resp *resp_msg;
338
339         queue = &(tmp_qp->rx_q);
340         resp_msg = (struct icp_qat_fw_comn_resp *)
341                         ((uint8_t *)queue->base_addr + queue->head);
342
343         while (*(uint32_t *)resp_msg != ADF_RING_EMPTY_SIG &&
344                         msg_counter != nb_pkts) {
345                 rx_mbuf = (struct rte_mbuf *)(resp_msg->opaque_data);
346                 ol = rte_pktmbuf_offload_get(rx_mbuf, RTE_PKTMBUF_OL_CRYPTO);
347
348                 if (ICP_QAT_FW_COMN_STATUS_FLAG_OK !=
349                                 ICP_QAT_FW_COMN_RESP_CRYPTO_STAT_GET(
350                                         resp_msg->comn_hdr.comn_status)) {
351                         ol->op.crypto.status = RTE_CRYPTO_OP_STATUS_AUTH_FAILED;
352                 } else {
353                         ol->op.crypto.status = RTE_CRYPTO_OP_STATUS_SUCCESS;
354                 }
355                 *(uint32_t *)resp_msg = ADF_RING_EMPTY_SIG;
356                 queue->head = adf_modulo(queue->head +
357                                 queue->msg_size,
358                                 ADF_RING_SIZE_MODULO(queue->queue_size));
359                 resp_msg = (struct icp_qat_fw_comn_resp *)
360                                         ((uint8_t *)queue->base_addr +
361                                                         queue->head);
362
363                 *rx_pkts = rx_mbuf;
364                 rx_pkts++;
365                 msg_counter++;
366         }
367         if (msg_counter > 0) {
368                 WRITE_CSR_RING_HEAD(tmp_qp->mmap_bar_addr,
369                                         queue->hw_bundle_number,
370                                         queue->hw_queue_number, queue->head);
371                 rte_atomic16_sub(&tmp_qp->inflights16, msg_counter);
372                 tmp_qp->stats.dequeued_count += msg_counter;
373         }
374         return msg_counter;
375 }
376
377 static inline int
378 qat_alg_write_mbuf_entry(struct rte_mbuf *mbuf, uint8_t *out_msg)
379 {
380         struct rte_mbuf_offload *ol;
381
382         struct qat_session *ctx;
383         struct icp_qat_fw_la_cipher_req_params *cipher_param;
384         struct icp_qat_fw_la_auth_req_params *auth_param;
385         register struct icp_qat_fw_la_bulk_req *qat_req;
386
387         ol = rte_pktmbuf_offload_get(mbuf, RTE_PKTMBUF_OL_CRYPTO);
388         if (unlikely(ol == NULL)) {
389                 PMD_DRV_LOG(ERR, "No valid crypto off-load operation attached "
390                                 "to (%p) mbuf.", mbuf);
391                 return -EINVAL;
392         }
393
394         if (unlikely(ol->op.crypto.type == RTE_CRYPTO_OP_SESSIONLESS)) {
395                 PMD_DRV_LOG(ERR, "QAT PMD only supports session oriented"
396                                 " requests mbuf (%p) is sessionless.", mbuf);
397                 return -EINVAL;
398         }
399
400         if (unlikely(ol->op.crypto.session->type != RTE_CRYPTODEV_QAT_PMD)) {
401                 PMD_DRV_LOG(ERR, "Session was not created for this device");
402                 return -EINVAL;
403         }
404
405         ctx = (struct qat_session *)ol->op.crypto.session->_private;
406         qat_req = (struct icp_qat_fw_la_bulk_req *)out_msg;
407         *qat_req = ctx->fw_req;
408         qat_req->comn_mid.opaque_data = (uint64_t)mbuf;
409
410         /*
411          * The following code assumes:
412          * - single entry buffer.
413          * - always in place.
414          */
415         qat_req->comn_mid.dst_length =
416                         qat_req->comn_mid.src_length = mbuf->data_len;
417         qat_req->comn_mid.dest_data_addr =
418                         qat_req->comn_mid.src_data_addr =
419                                         rte_pktmbuf_mtophys(mbuf);
420
421         cipher_param = (void *)&qat_req->serv_specif_rqpars;
422         auth_param = (void *)((uint8_t *)cipher_param + sizeof(*cipher_param));
423
424         cipher_param->cipher_length = ol->op.crypto.data.to_cipher.length;
425         cipher_param->cipher_offset = ol->op.crypto.data.to_cipher.offset;
426         if (ol->op.crypto.iv.length &&
427                 (ol->op.crypto.iv.length <=
428                                 sizeof(cipher_param->u.cipher_IV_array))) {
429                 rte_memcpy(cipher_param->u.cipher_IV_array,
430                                 ol->op.crypto.iv.data, ol->op.crypto.iv.length);
431         } else {
432                 ICP_QAT_FW_LA_CIPH_IV_FLD_FLAG_SET(
433                                 qat_req->comn_hdr.serv_specif_flags,
434                                 ICP_QAT_FW_CIPH_IV_64BIT_PTR);
435                 cipher_param->u.s.cipher_IV_ptr = ol->op.crypto.iv.phys_addr;
436         }
437         if (ol->op.crypto.digest.phys_addr) {
438                 ICP_QAT_FW_LA_DIGEST_IN_BUFFER_SET(
439                                 qat_req->comn_hdr.serv_specif_flags,
440                                 ICP_QAT_FW_LA_NO_DIGEST_IN_BUFFER);
441                 auth_param->auth_res_addr = ol->op.crypto.digest.phys_addr;
442         }
443         auth_param->auth_off = ol->op.crypto.data.to_hash.offset;
444         auth_param->auth_len = ol->op.crypto.data.to_hash.length;
445         auth_param->u1.aad_adr = ol->op.crypto.additional_auth.phys_addr;
446
447         /* (GCM) aad length(240 max) will be at this location after precompute */
448         if (ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_GALOIS_128 ||
449                 ctx->qat_hash_alg == ICP_QAT_HW_AUTH_ALGO_GALOIS_64) {
450                 auth_param->u2.aad_sz =
451                 ALIGN_POW2_ROUNDUP(ctx->cd.hash.sha.state1[
452                                         ICP_QAT_HW_GALOIS_128_STATE1_SZ +
453                                         ICP_QAT_HW_GALOIS_H_SZ + 3], 16);
454         }
455         auth_param->hash_state_sz = (auth_param->u2.aad_sz) >> 3;
456
457 #ifdef RTE_LIBRTE_PMD_QAT_DEBUG_DRIVER
458         rte_hexdump(stdout, "qat_req:", qat_req,
459                         sizeof(struct icp_qat_fw_la_bulk_req));
460 #endif
461         return 0;
462 }
463
464 static inline uint32_t adf_modulo(uint32_t data, uint32_t shift)
465 {
466         uint32_t div = data >> shift;
467         uint32_t mult = div << shift;
468
469         return data - mult;
470 }
471
472 void qat_crypto_sym_session_init(struct rte_mempool *mp, void *priv_sess)
473 {
474         struct qat_session *s = priv_sess;
475
476         PMD_INIT_FUNC_TRACE();
477         s->cd_paddr = rte_mempool_virt2phy(mp, &s->cd);
478 }
479
480 int qat_dev_config(__rte_unused struct rte_cryptodev *dev)
481 {
482         PMD_INIT_FUNC_TRACE();
483         return -ENOTSUP;
484 }
485
486 int qat_dev_start(__rte_unused struct rte_cryptodev *dev)
487 {
488         PMD_INIT_FUNC_TRACE();
489         return 0;
490 }
491
492 void qat_dev_stop(__rte_unused struct rte_cryptodev *dev)
493 {
494         PMD_INIT_FUNC_TRACE();
495 }
496
497 int qat_dev_close(struct rte_cryptodev *dev)
498 {
499         int i, ret;
500
501         PMD_INIT_FUNC_TRACE();
502
503         for (i = 0; i < dev->data->nb_queue_pairs; i++) {
504                 ret = qat_crypto_sym_qp_release(dev, i);
505                 if (ret < 0)
506                         return ret;
507         }
508
509         return 0;
510 }
511
512 void qat_dev_info_get(__rte_unused struct rte_cryptodev *dev,
513                                 struct rte_cryptodev_info *info)
514 {
515         struct qat_pmd_private *internals = dev->data->dev_private;
516
517         PMD_INIT_FUNC_TRACE();
518         if (info != NULL) {
519                 info->max_nb_queue_pairs =
520                                 ADF_NUM_SYM_QPS_PER_BUNDLE *
521                                 ADF_NUM_BUNDLES_PER_DEV;
522
523                 info->max_nb_sessions = internals->max_nb_sessions;
524                 info->dev_type = RTE_CRYPTODEV_QAT_PMD;
525         }
526 }
527
528 void qat_crypto_sym_stats_get(struct rte_cryptodev *dev,
529                 struct rte_cryptodev_stats *stats)
530 {
531         int i;
532         struct qat_qp **qp = (struct qat_qp **)(dev->data->queue_pairs);
533
534         PMD_INIT_FUNC_TRACE();
535         if (stats == NULL) {
536                 PMD_DRV_LOG(ERR, "invalid stats ptr NULL");
537                 return;
538         }
539         for (i = 0; i < dev->data->nb_queue_pairs; i++) {
540                 if (qp[i] == NULL) {
541                         PMD_DRV_LOG(DEBUG, "Uninitialised queue pair");
542                         continue;
543                 }
544
545                 stats->enqueued_count += qp[i]->stats.enqueued_count;
546                 stats->dequeued_count += qp[i]->stats.enqueued_count;
547                 stats->enqueue_err_count += qp[i]->stats.enqueue_err_count;
548                 stats->dequeue_err_count += qp[i]->stats.enqueue_err_count;
549         }
550 }
551
552 void qat_crypto_sym_stats_reset(struct rte_cryptodev *dev)
553 {
554         int i;
555         struct qat_qp **qp = (struct qat_qp **)(dev->data->queue_pairs);
556
557         PMD_INIT_FUNC_TRACE();
558         for (i = 0; i < dev->data->nb_queue_pairs; i++)
559                 memset(&(qp[i]->stats), 0, sizeof(qp[i]->stats));
560         PMD_DRV_LOG(DEBUG, "QAT crypto: stats cleared");
561 }