New upstream version 18.08
[deb_dpdk.git] / app / test-crypto-perf / main.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2016-2017 Intel Corporation
3  */
4
5 #include <stdio.h>
6 #include <unistd.h>
7
8 #include <rte_malloc.h>
9 #include <rte_random.h>
10 #include <rte_eal.h>
11 #include <rte_cryptodev.h>
12 #ifdef RTE_LIBRTE_PMD_CRYPTO_SCHEDULER
13 #include <rte_cryptodev_scheduler.h>
14 #endif
15
16 #include "cperf.h"
17 #include "cperf_options.h"
18 #include "cperf_test_vector_parsing.h"
19 #include "cperf_test_throughput.h"
20 #include "cperf_test_latency.h"
21 #include "cperf_test_verify.h"
22 #include "cperf_test_pmd_cyclecount.h"
23
24
25 const char *cperf_test_type_strs[] = {
26         [CPERF_TEST_TYPE_THROUGHPUT] = "throughput",
27         [CPERF_TEST_TYPE_LATENCY] = "latency",
28         [CPERF_TEST_TYPE_VERIFY] = "verify",
29         [CPERF_TEST_TYPE_PMDCC] = "pmd-cyclecount"
30 };
31
32 const char *cperf_op_type_strs[] = {
33         [CPERF_CIPHER_ONLY] = "cipher-only",
34         [CPERF_AUTH_ONLY] = "auth-only",
35         [CPERF_CIPHER_THEN_AUTH] = "cipher-then-auth",
36         [CPERF_AUTH_THEN_CIPHER] = "auth-then-cipher",
37         [CPERF_AEAD] = "aead"
38 };
39
40 const struct cperf_test cperf_testmap[] = {
41                 [CPERF_TEST_TYPE_THROUGHPUT] = {
42                                 cperf_throughput_test_constructor,
43                                 cperf_throughput_test_runner,
44                                 cperf_throughput_test_destructor
45                 },
46                 [CPERF_TEST_TYPE_LATENCY] = {
47                                 cperf_latency_test_constructor,
48                                 cperf_latency_test_runner,
49                                 cperf_latency_test_destructor
50                 },
51                 [CPERF_TEST_TYPE_VERIFY] = {
52                                 cperf_verify_test_constructor,
53                                 cperf_verify_test_runner,
54                                 cperf_verify_test_destructor
55                 },
56                 [CPERF_TEST_TYPE_PMDCC] = {
57                                 cperf_pmd_cyclecount_test_constructor,
58                                 cperf_pmd_cyclecount_test_runner,
59                                 cperf_pmd_cyclecount_test_destructor
60                 }
61 };
62
63 static int
64 cperf_initialize_cryptodev(struct cperf_options *opts, uint8_t *enabled_cdevs,
65                         struct rte_mempool *session_pool_socket[])
66 {
67         uint8_t enabled_cdev_count = 0, nb_lcores, cdev_id;
68         uint32_t sessions_needed = 0;
69         unsigned int i, j;
70         int ret;
71
72         enabled_cdev_count = rte_cryptodev_devices_get(opts->device_type,
73                         enabled_cdevs, RTE_CRYPTO_MAX_DEVS);
74         if (enabled_cdev_count == 0) {
75                 printf("No crypto devices type %s available\n",
76                                 opts->device_type);
77                 return -EINVAL;
78         }
79
80         nb_lcores = rte_lcore_count() - 1;
81
82         if (nb_lcores < 1) {
83                 RTE_LOG(ERR, USER1,
84                         "Number of enabled cores need to be higher than 1\n");
85                 return -EINVAL;
86         }
87
88         /*
89          * Use less number of devices,
90          * if there are more available than cores.
91          */
92         if (enabled_cdev_count > nb_lcores)
93                 enabled_cdev_count = nb_lcores;
94
95         /* Create a mempool shared by all the devices */
96         uint32_t max_sess_size = 0, sess_size;
97
98         for (cdev_id = 0; cdev_id < rte_cryptodev_count(); cdev_id++) {
99                 sess_size = rte_cryptodev_sym_get_private_session_size(cdev_id);
100                 if (sess_size > max_sess_size)
101                         max_sess_size = sess_size;
102         }
103
104         /*
105          * Calculate number of needed queue pairs, based on the amount
106          * of available number of logical cores and crypto devices.
107          * For instance, if there are 4 cores and 2 crypto devices,
108          * 2 queue pairs will be set up per device.
109          */
110         opts->nb_qps = (nb_lcores % enabled_cdev_count) ?
111                                 (nb_lcores / enabled_cdev_count) + 1 :
112                                 nb_lcores / enabled_cdev_count;
113
114         for (i = 0; i < enabled_cdev_count &&
115                         i < RTE_CRYPTO_MAX_DEVS; i++) {
116                 cdev_id = enabled_cdevs[i];
117 #ifdef RTE_LIBRTE_PMD_CRYPTO_SCHEDULER
118                 /*
119                  * If multi-core scheduler is used, limit the number
120                  * of queue pairs to 1, as there is no way to know
121                  * how many cores are being used by the PMD, and
122                  * how many will be available for the application.
123                  */
124                 if (!strcmp((const char *)opts->device_type, "crypto_scheduler") &&
125                                 rte_cryptodev_scheduler_mode_get(cdev_id) ==
126                                 CDEV_SCHED_MODE_MULTICORE)
127                         opts->nb_qps = 1;
128 #endif
129
130                 struct rte_cryptodev_info cdev_info;
131                 uint8_t socket_id = rte_cryptodev_socket_id(cdev_id);
132
133                 rte_cryptodev_info_get(cdev_id, &cdev_info);
134                 if (opts->nb_qps > cdev_info.max_nb_queue_pairs) {
135                         printf("Number of needed queue pairs is higher "
136                                 "than the maximum number of queue pairs "
137                                 "per device.\n");
138                         printf("Lower the number of cores or increase "
139                                 "the number of crypto devices\n");
140                         return -EINVAL;
141                 }
142                 struct rte_cryptodev_config conf = {
143                         .nb_queue_pairs = opts->nb_qps,
144                         .socket_id = socket_id
145                 };
146
147                 struct rte_cryptodev_qp_conf qp_conf = {
148                         .nb_descriptors = opts->nb_descriptors
149                 };
150
151                 /**
152                  * Device info specifies the min headroom and tailroom
153                  * requirement for the crypto PMD. This need to be honoured
154                  * by the application, while creating mbuf.
155                  */
156                 if (opts->headroom_sz < cdev_info.min_mbuf_headroom_req) {
157                         /* Update headroom */
158                         opts->headroom_sz = cdev_info.min_mbuf_headroom_req;
159                 }
160                 if (opts->tailroom_sz < cdev_info.min_mbuf_tailroom_req) {
161                         /* Update tailroom */
162                         opts->tailroom_sz = cdev_info.min_mbuf_tailroom_req;
163                 }
164
165                 /* Update segment size to include headroom & tailroom */
166                 opts->segment_sz += (opts->headroom_sz + opts->tailroom_sz);
167
168                 uint32_t dev_max_nb_sess = cdev_info.sym.max_nb_sessions;
169                 /*
170                  * Two sessions objects are required for each session
171                  * (one for the header, one for the private data)
172                  */
173                 if (!strcmp((const char *)opts->device_type,
174                                         "crypto_scheduler")) {
175 #ifdef RTE_LIBRTE_PMD_CRYPTO_SCHEDULER
176                         uint32_t nb_slaves =
177                                 rte_cryptodev_scheduler_slaves_get(cdev_id,
178                                                                 NULL);
179
180                         sessions_needed = 2 * enabled_cdev_count *
181                                 opts->nb_qps * nb_slaves;
182 #endif
183                 } else
184                         sessions_needed = 2 * enabled_cdev_count *
185                                                 opts->nb_qps;
186
187                 /*
188                  * A single session is required per queue pair
189                  * in each device
190                  */
191                 if (dev_max_nb_sess != 0 && dev_max_nb_sess < opts->nb_qps) {
192                         RTE_LOG(ERR, USER1,
193                                 "Device does not support at least "
194                                 "%u sessions\n", opts->nb_qps);
195                         return -ENOTSUP;
196                 }
197                 if (session_pool_socket[socket_id] == NULL) {
198                         char mp_name[RTE_MEMPOOL_NAMESIZE];
199                         struct rte_mempool *sess_mp;
200
201                         snprintf(mp_name, RTE_MEMPOOL_NAMESIZE,
202                                 "sess_mp_%u", socket_id);
203                         sess_mp = rte_mempool_create(mp_name,
204                                                 sessions_needed,
205                                                 max_sess_size,
206                                                 0,
207                                                 0, NULL, NULL, NULL,
208                                                 NULL, socket_id,
209                                                 0);
210
211                         if (sess_mp == NULL) {
212                                 printf("Cannot create session pool on socket %d\n",
213                                         socket_id);
214                                 return -ENOMEM;
215                         }
216
217                         printf("Allocated session pool on socket %d\n", socket_id);
218                         session_pool_socket[socket_id] = sess_mp;
219                 }
220
221                 ret = rte_cryptodev_configure(cdev_id, &conf);
222                 if (ret < 0) {
223                         printf("Failed to configure cryptodev %u", cdev_id);
224                         return -EINVAL;
225                 }
226
227                 for (j = 0; j < opts->nb_qps; j++) {
228                         ret = rte_cryptodev_queue_pair_setup(cdev_id, j,
229                                 &qp_conf, socket_id,
230                                 session_pool_socket[socket_id]);
231                         if (ret < 0) {
232                                 printf("Failed to setup queue pair %u on "
233                                         "cryptodev %u", j, cdev_id);
234                                 return -EINVAL;
235                         }
236                 }
237
238                 ret = rte_cryptodev_start(cdev_id);
239                 if (ret < 0) {
240                         printf("Failed to start device %u: error %d\n",
241                                         cdev_id, ret);
242                         return -EPERM;
243                 }
244         }
245
246         return enabled_cdev_count;
247 }
248
249 static int
250 cperf_verify_devices_capabilities(struct cperf_options *opts,
251                 uint8_t *enabled_cdevs, uint8_t nb_cryptodevs)
252 {
253         struct rte_cryptodev_sym_capability_idx cap_idx;
254         const struct rte_cryptodev_symmetric_capability *capability;
255
256         uint8_t i, cdev_id;
257         int ret;
258
259         for (i = 0; i < nb_cryptodevs; i++) {
260
261                 cdev_id = enabled_cdevs[i];
262
263                 if (opts->op_type == CPERF_AUTH_ONLY ||
264                                 opts->op_type == CPERF_CIPHER_THEN_AUTH ||
265                                 opts->op_type == CPERF_AUTH_THEN_CIPHER) {
266
267                         cap_idx.type = RTE_CRYPTO_SYM_XFORM_AUTH;
268                         cap_idx.algo.auth = opts->auth_algo;
269
270                         capability = rte_cryptodev_sym_capability_get(cdev_id,
271                                         &cap_idx);
272                         if (capability == NULL)
273                                 return -1;
274
275                         ret = rte_cryptodev_sym_capability_check_auth(
276                                         capability,
277                                         opts->auth_key_sz,
278                                         opts->digest_sz,
279                                         opts->auth_iv_sz);
280                         if (ret != 0)
281                                 return ret;
282                 }
283
284                 if (opts->op_type == CPERF_CIPHER_ONLY ||
285                                 opts->op_type == CPERF_CIPHER_THEN_AUTH ||
286                                 opts->op_type == CPERF_AUTH_THEN_CIPHER) {
287
288                         cap_idx.type = RTE_CRYPTO_SYM_XFORM_CIPHER;
289                         cap_idx.algo.cipher = opts->cipher_algo;
290
291                         capability = rte_cryptodev_sym_capability_get(cdev_id,
292                                         &cap_idx);
293                         if (capability == NULL)
294                                 return -1;
295
296                         ret = rte_cryptodev_sym_capability_check_cipher(
297                                         capability,
298                                         opts->cipher_key_sz,
299                                         opts->cipher_iv_sz);
300                         if (ret != 0)
301                                 return ret;
302                 }
303
304                 if (opts->op_type == CPERF_AEAD) {
305
306                         cap_idx.type = RTE_CRYPTO_SYM_XFORM_AEAD;
307                         cap_idx.algo.aead = opts->aead_algo;
308
309                         capability = rte_cryptodev_sym_capability_get(cdev_id,
310                                         &cap_idx);
311                         if (capability == NULL)
312                                 return -1;
313
314                         ret = rte_cryptodev_sym_capability_check_aead(
315                                         capability,
316                                         opts->aead_key_sz,
317                                         opts->digest_sz,
318                                         opts->aead_aad_sz,
319                                         opts->aead_iv_sz);
320                         if (ret != 0)
321                                 return ret;
322                 }
323         }
324
325         return 0;
326 }
327
328 static int
329 cperf_check_test_vector(struct cperf_options *opts,
330                 struct cperf_test_vector *test_vec)
331 {
332         if (opts->op_type == CPERF_CIPHER_ONLY) {
333                 if (opts->cipher_algo == RTE_CRYPTO_CIPHER_NULL) {
334                         if (test_vec->plaintext.data == NULL)
335                                 return -1;
336                 } else if (opts->cipher_algo != RTE_CRYPTO_CIPHER_NULL) {
337                         if (test_vec->plaintext.data == NULL)
338                                 return -1;
339                         if (test_vec->plaintext.length < opts->max_buffer_size)
340                                 return -1;
341                         if (test_vec->ciphertext.data == NULL)
342                                 return -1;
343                         if (test_vec->ciphertext.length < opts->max_buffer_size)
344                                 return -1;
345                         if (test_vec->cipher_iv.data == NULL)
346                                 return -1;
347                         if (test_vec->cipher_iv.length != opts->cipher_iv_sz)
348                                 return -1;
349                         if (test_vec->cipher_key.data == NULL)
350                                 return -1;
351                         if (test_vec->cipher_key.length != opts->cipher_key_sz)
352                                 return -1;
353                 }
354         } else if (opts->op_type == CPERF_AUTH_ONLY) {
355                 if (opts->auth_algo != RTE_CRYPTO_AUTH_NULL) {
356                         if (test_vec->plaintext.data == NULL)
357                                 return -1;
358                         if (test_vec->plaintext.length < opts->max_buffer_size)
359                                 return -1;
360                         if (test_vec->auth_key.data == NULL)
361                                 return -1;
362                         if (test_vec->auth_key.length != opts->auth_key_sz)
363                                 return -1;
364                         if (test_vec->auth_iv.length != opts->auth_iv_sz)
365                                 return -1;
366                         /* Auth IV is only required for some algorithms */
367                         if (opts->auth_iv_sz && test_vec->auth_iv.data == NULL)
368                                 return -1;
369                         if (test_vec->digest.data == NULL)
370                                 return -1;
371                         if (test_vec->digest.length < opts->digest_sz)
372                                 return -1;
373                 }
374
375         } else if (opts->op_type == CPERF_CIPHER_THEN_AUTH ||
376                         opts->op_type == CPERF_AUTH_THEN_CIPHER) {
377                 if (opts->cipher_algo == RTE_CRYPTO_CIPHER_NULL) {
378                         if (test_vec->plaintext.data == NULL)
379                                 return -1;
380                         if (test_vec->plaintext.length < opts->max_buffer_size)
381                                 return -1;
382                 } else if (opts->cipher_algo != RTE_CRYPTO_CIPHER_NULL) {
383                         if (test_vec->plaintext.data == NULL)
384                                 return -1;
385                         if (test_vec->plaintext.length < opts->max_buffer_size)
386                                 return -1;
387                         if (test_vec->ciphertext.data == NULL)
388                                 return -1;
389                         if (test_vec->ciphertext.length < opts->max_buffer_size)
390                                 return -1;
391                         if (test_vec->cipher_iv.data == NULL)
392                                 return -1;
393                         if (test_vec->cipher_iv.length != opts->cipher_iv_sz)
394                                 return -1;
395                         if (test_vec->cipher_key.data == NULL)
396                                 return -1;
397                         if (test_vec->cipher_key.length != opts->cipher_key_sz)
398                                 return -1;
399                 }
400                 if (opts->auth_algo != RTE_CRYPTO_AUTH_NULL) {
401                         if (test_vec->auth_key.data == NULL)
402                                 return -1;
403                         if (test_vec->auth_key.length != opts->auth_key_sz)
404                                 return -1;
405                         if (test_vec->auth_iv.length != opts->auth_iv_sz)
406                                 return -1;
407                         /* Auth IV is only required for some algorithms */
408                         if (opts->auth_iv_sz && test_vec->auth_iv.data == NULL)
409                                 return -1;
410                         if (test_vec->digest.data == NULL)
411                                 return -1;
412                         if (test_vec->digest.length < opts->digest_sz)
413                                 return -1;
414                 }
415         } else if (opts->op_type == CPERF_AEAD) {
416                 if (test_vec->plaintext.data == NULL)
417                         return -1;
418                 if (test_vec->plaintext.length < opts->max_buffer_size)
419                         return -1;
420                 if (test_vec->ciphertext.data == NULL)
421                         return -1;
422                 if (test_vec->ciphertext.length < opts->max_buffer_size)
423                         return -1;
424                 if (test_vec->aead_iv.data == NULL)
425                         return -1;
426                 if (test_vec->aead_iv.length != opts->aead_iv_sz)
427                         return -1;
428                 if (test_vec->aad.data == NULL)
429                         return -1;
430                 if (test_vec->aad.length != opts->aead_aad_sz)
431                         return -1;
432                 if (test_vec->digest.data == NULL)
433                         return -1;
434                 if (test_vec->digest.length < opts->digest_sz)
435                         return -1;
436         }
437         return 0;
438 }
439
440 int
441 main(int argc, char **argv)
442 {
443         struct cperf_options opts = {0};
444         struct cperf_test_vector *t_vec = NULL;
445         struct cperf_op_fns op_fns;
446
447         void *ctx[RTE_MAX_LCORE] = { };
448         struct rte_mempool *session_pool_socket[RTE_MAX_NUMA_NODES] = { 0 };
449
450         int nb_cryptodevs = 0;
451         uint16_t total_nb_qps = 0;
452         uint8_t cdev_id, i;
453         uint8_t enabled_cdevs[RTE_CRYPTO_MAX_DEVS] = { 0 };
454
455         uint8_t buffer_size_idx = 0;
456
457         int ret;
458         uint32_t lcore_id;
459
460         /* Initialise DPDK EAL */
461         ret = rte_eal_init(argc, argv);
462         if (ret < 0)
463                 rte_exit(EXIT_FAILURE, "Invalid EAL arguments!\n");
464         argc -= ret;
465         argv += ret;
466
467         cperf_options_default(&opts);
468
469         ret = cperf_options_parse(&opts, argc, argv);
470         if (ret) {
471                 RTE_LOG(ERR, USER1, "Parsing on or more user options failed\n");
472                 goto err;
473         }
474
475         ret = cperf_options_check(&opts);
476         if (ret) {
477                 RTE_LOG(ERR, USER1,
478                                 "Checking on or more user options failed\n");
479                 goto err;
480         }
481
482         nb_cryptodevs = cperf_initialize_cryptodev(&opts, enabled_cdevs,
483                         session_pool_socket);
484
485         if (!opts.silent)
486                 cperf_options_dump(&opts);
487
488         if (nb_cryptodevs < 1) {
489                 RTE_LOG(ERR, USER1, "Failed to initialise requested crypto "
490                                 "device type\n");
491                 nb_cryptodevs = 0;
492                 goto err;
493         }
494
495         ret = cperf_verify_devices_capabilities(&opts, enabled_cdevs,
496                         nb_cryptodevs);
497         if (ret) {
498                 RTE_LOG(ERR, USER1, "Crypto device type does not support "
499                                 "capabilities requested\n");
500                 goto err;
501         }
502
503         if (opts.test_file != NULL) {
504                 t_vec = cperf_test_vector_get_from_file(&opts);
505                 if (t_vec == NULL) {
506                         RTE_LOG(ERR, USER1,
507                                         "Failed to create test vector for"
508                                         " specified file\n");
509                         goto err;
510                 }
511
512                 if (cperf_check_test_vector(&opts, t_vec)) {
513                         RTE_LOG(ERR, USER1, "Incomplete necessary test vectors"
514                                         "\n");
515                         goto err;
516                 }
517         } else {
518                 t_vec = cperf_test_vector_get_dummy(&opts);
519                 if (t_vec == NULL) {
520                         RTE_LOG(ERR, USER1,
521                                         "Failed to create test vector for"
522                                         " specified algorithms\n");
523                         goto err;
524                 }
525         }
526
527         ret = cperf_get_op_functions(&opts, &op_fns);
528         if (ret) {
529                 RTE_LOG(ERR, USER1, "Failed to find function ops set for "
530                                 "specified algorithms combination\n");
531                 goto err;
532         }
533
534         if (!opts.silent)
535                 show_test_vector(t_vec);
536
537         total_nb_qps = nb_cryptodevs * opts.nb_qps;
538
539         i = 0;
540         uint8_t qp_id = 0, cdev_index = 0;
541         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
542
543                 if (i == total_nb_qps)
544                         break;
545
546                 cdev_id = enabled_cdevs[cdev_index];
547
548                 uint8_t socket_id = rte_cryptodev_socket_id(cdev_id);
549
550                 ctx[i] = cperf_testmap[opts.test].constructor(
551                                 session_pool_socket[socket_id], cdev_id, qp_id,
552                                 &opts, t_vec, &op_fns);
553                 if (ctx[i] == NULL) {
554                         RTE_LOG(ERR, USER1, "Test run constructor failed\n");
555                         goto err;
556                 }
557                 qp_id = (qp_id + 1) % opts.nb_qps;
558                 if (qp_id == 0)
559                         cdev_index++;
560                 i++;
561         }
562
563         if (opts.imix_distribution_count != 0) {
564                 uint8_t buffer_size_count = opts.buffer_size_count;
565                 uint16_t distribution_total[buffer_size_count];
566                 uint32_t op_idx;
567                 uint32_t test_average_size = 0;
568                 const uint32_t *buffer_size_list = opts.buffer_size_list;
569                 const uint32_t *imix_distribution_list = opts.imix_distribution_list;
570
571                 opts.imix_buffer_sizes = rte_malloc(NULL,
572                                         sizeof(uint32_t) * opts.pool_sz,
573                                         0);
574                 /*
575                  * Calculate accumulated distribution of
576                  * probabilities per packet size
577                  */
578                 distribution_total[0] = imix_distribution_list[0];
579                 for (i = 1; i < buffer_size_count; i++)
580                         distribution_total[i] = imix_distribution_list[i] +
581                                 distribution_total[i-1];
582
583                 /* Calculate a random sequence of packet sizes, based on distribution */
584                 for (op_idx = 0; op_idx < opts.pool_sz; op_idx++) {
585                         uint16_t random_number = rte_rand() %
586                                 distribution_total[buffer_size_count - 1];
587                         for (i = 0; i < buffer_size_count; i++)
588                                 if (random_number < distribution_total[i])
589                                         break;
590
591                         opts.imix_buffer_sizes[op_idx] = buffer_size_list[i];
592                 }
593
594                 /* Calculate average buffer size for the IMIX distribution */
595                 for (i = 0; i < buffer_size_count; i++)
596                         test_average_size += buffer_size_list[i] *
597                                 imix_distribution_list[i];
598
599                 opts.test_buffer_size = test_average_size /
600                                 distribution_total[buffer_size_count - 1];
601
602                 i = 0;
603                 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
604
605                         if (i == total_nb_qps)
606                                 break;
607
608                         rte_eal_remote_launch(cperf_testmap[opts.test].runner,
609                                 ctx[i], lcore_id);
610                         i++;
611                 }
612                 i = 0;
613                 RTE_LCORE_FOREACH_SLAVE(lcore_id) {
614
615                         if (i == total_nb_qps)
616                                 break;
617                         rte_eal_wait_lcore(lcore_id);
618                         i++;
619                 }
620         } else {
621
622                 /* Get next size from range or list */
623                 if (opts.inc_buffer_size != 0)
624                         opts.test_buffer_size = opts.min_buffer_size;
625                 else
626                         opts.test_buffer_size = opts.buffer_size_list[0];
627
628                 while (opts.test_buffer_size <= opts.max_buffer_size) {
629                         i = 0;
630                         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
631
632                                 if (i == total_nb_qps)
633                                         break;
634
635                                 rte_eal_remote_launch(cperf_testmap[opts.test].runner,
636                                         ctx[i], lcore_id);
637                                 i++;
638                         }
639                         i = 0;
640                         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
641
642                                 if (i == total_nb_qps)
643                                         break;
644                                 rte_eal_wait_lcore(lcore_id);
645                                 i++;
646                         }
647
648                         /* Get next size from range or list */
649                         if (opts.inc_buffer_size != 0)
650                                 opts.test_buffer_size += opts.inc_buffer_size;
651                         else {
652                                 if (++buffer_size_idx == opts.buffer_size_count)
653                                         break;
654                                 opts.test_buffer_size =
655                                         opts.buffer_size_list[buffer_size_idx];
656                         }
657                 }
658         }
659
660         i = 0;
661         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
662
663                 if (i == total_nb_qps)
664                         break;
665
666                 cperf_testmap[opts.test].destructor(ctx[i]);
667                 i++;
668         }
669
670         for (i = 0; i < nb_cryptodevs &&
671                         i < RTE_CRYPTO_MAX_DEVS; i++)
672                 rte_cryptodev_stop(enabled_cdevs[i]);
673
674         free_test_vector(t_vec, &opts);
675
676         printf("\n");
677         return EXIT_SUCCESS;
678
679 err:
680         i = 0;
681         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
682                 if (i == total_nb_qps)
683                         break;
684
685                 if (ctx[i] && cperf_testmap[opts.test].destructor)
686                         cperf_testmap[opts.test].destructor(ctx[i]);
687                 i++;
688         }
689
690         for (i = 0; i < nb_cryptodevs &&
691                         i < RTE_CRYPTO_MAX_DEVS; i++)
692                 rte_cryptodev_stop(enabled_cdevs[i]);
693         rte_free(opts.imix_buffer_sizes);
694         free_test_vector(t_vec, &opts);
695
696         printf("\n");
697         return EXIT_FAILURE;
698 }