test/ipsec: fix destroy SA

Call rte_cryptodev_sym_session_clear() function.

Fixes: 05fe65eb66b2 ("test/ipsec: introduce functional test")
Cc: stable@dpdk.org

Signed-off-by: Bernard Iremonger <bernard.iremonger@intel.com>
Acked-by: Akhil Goyal <akhil.goyal@nxp.com>
This commit is contained in:
Bernard Iremonger 2019-06-28 14:29:22 +01:00 committed by Akhil Goyal
parent 74f44dd807
commit 00f846ca9c

View File

@ -1171,9 +1171,11 @@ static void
destroy_sa(uint32_t j) destroy_sa(uint32_t j)
{ {
struct ipsec_unitest_params *ut = &unittest_params; struct ipsec_unitest_params *ut = &unittest_params;
struct ipsec_testsuite_params *ts = &testsuite_params;
rte_ipsec_sa_fini(ut->ss[j].sa); rte_ipsec_sa_fini(ut->ss[j].sa);
rte_free(ut->ss[j].sa); rte_free(ut->ss[j].sa);
rte_cryptodev_sym_session_clear(ts->valid_dev, ut->ss[j].crypto.ses);
rte_cryptodev_sym_session_free(ut->ss[j].crypto.ses); rte_cryptodev_sym_session_free(ut->ss[j].crypto.ses);
memset(&ut->ss[j], 0, sizeof(ut->ss[j])); memset(&ut->ss[j], 0, sizeof(ut->ss[j]));
} }