app/bbdev: fix unchecked return value
add check for rte_bbdev_callback_register() retun Coverity issue: 257027 Fixes: f714a18885a6 ("app/testbbdev: add test application for bbdev") Signed-off-by: Amr Mokhtar <amr.mokhtar@intel.com>
This commit is contained in:
parent
218203502c
commit
d3345d4070
@ -1557,9 +1557,11 @@ throughput_test(struct active_device *ad,
|
|||||||
throughput_function = throughput_intr_lcore_enc;
|
throughput_function = throughput_intr_lcore_enc;
|
||||||
|
|
||||||
/* Dequeue interrupt callback registration */
|
/* Dequeue interrupt callback registration */
|
||||||
rte_bbdev_callback_register(ad->dev_id, RTE_BBDEV_EVENT_DEQUEUE,
|
ret = rte_bbdev_callback_register(ad->dev_id,
|
||||||
dequeue_event_callback,
|
RTE_BBDEV_EVENT_DEQUEUE, dequeue_event_callback,
|
||||||
&t_params);
|
&t_params);
|
||||||
|
if (ret < 0)
|
||||||
|
return ret;
|
||||||
} else {
|
} else {
|
||||||
if (test_vector.op_type == RTE_BBDEV_OP_TURBO_DEC)
|
if (test_vector.op_type == RTE_BBDEV_OP_TURBO_DEC)
|
||||||
throughput_function = throughput_pmd_lcore_dec;
|
throughput_function = throughput_pmd_lcore_dec;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user