Skip to content

Commit

Permalink
test/crypto: remove unused stats in setup
Browse files Browse the repository at this point in the history
Remove unused stats in test setup.

Coverity issue: 373869
Fixes: 2c6dab9 ("test/crypto: add RSA and Mod tests")
Cc: stable@dpdk.org

Signed-off-by: Gowrishankar Muthukrishnan <gmuthukrishn@marvell.com>
Acked-by: Anoob Joseph <anoobj@marvell.com>
  • Loading branch information
gmuthukrishn authored and Akhil Goyal committed Jul 18, 2024
1 parent 8ccc996 commit 51941ea
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions app/test/test_cryptodev_asym.c
Original file line number Diff line number Diff line change
Expand Up @@ -547,8 +547,6 @@ ut_setup_asym(void)
qp_id, ts_params->valid_devs[0]);
}

rte_cryptodev_stats_reset(ts_params->valid_devs[0]);

/* Start the device */
TEST_ASSERT_SUCCESS(rte_cryptodev_start(ts_params->valid_devs[0]),
"Failed to start cryptodev %u",
Expand All @@ -561,7 +559,6 @@ static void
ut_teardown_asym(void)
{
struct crypto_testsuite_params_asym *ts_params = &testsuite_params;
struct rte_cryptodev_stats stats;
uint8_t dev_id = ts_params->valid_devs[0];

if (self->sess != NULL)
Expand All @@ -571,8 +568,6 @@ ut_teardown_asym(void)
self->op = NULL;
self->result_op = NULL;

rte_cryptodev_stats_get(ts_params->valid_devs[0], &stats);

/* Stop the device */
rte_cryptodev_stop(ts_params->valid_devs[0]);
}
Expand Down

0 comments on commit 51941ea

Please sign in to comment.