app/crypto-perf: fix return status detection
Checks
Commit Message
Currently, there's no return status check from lcore's jobs.
In case of fail - crypto-perf tool returns success anyway.
This patch adds such a detection and returns proper status at the end.
Fixes: ce8af1a4398d ("app/crypto-perf: wait for cores launched by app")
Cc: stable@dpdk.org
Signed-off-by: Tomasz Jozwiak <tjozwiakgm@gmail.com>
---
app/test-crypto-perf/main.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
Comments
>
> Currently, there's no return status check from lcore's jobs.
> In case of fail - crypto-perf tool returns success anyway.
> This patch adds such a detection and returns proper status at the end.
>
> Fixes: ce8af1a4398d ("app/crypto-perf: wait for cores launched by app")
> Cc: stable@dpdk.org
>
> Signed-off-by: Tomasz Jozwiak <tjozwiakgm@gmail.com>
> ---
Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
Applied to dpdk-next-crypto
Thanks.
@@ -664,9 +664,12 @@ main(int argc, char **argv)
if (i == total_nb_qps)
break;
- rte_eal_wait_lcore(lcore_id);
+ ret |= rte_eal_wait_lcore(lcore_id);
i++;
}
+
+ if (ret != EXIT_SUCCESS)
+ goto err;
} else {
/* Get next size from range or list */
@@ -691,10 +694,13 @@ main(int argc, char **argv)
if (i == total_nb_qps)
break;
- rte_eal_wait_lcore(lcore_id);
+ ret |= rte_eal_wait_lcore(lcore_id);
i++;
}
+ if (ret != EXIT_SUCCESS)
+ goto err;
+
/* Get next size from range or list */
if (opts.inc_buffer_size != 0)
opts.test_buffer_size += opts.inc_buffer_size;