@@ -44,6 +44,7 @@ int odp_classification_term_global(void);
int odp_queue_init_global(void);
int odp_crypto_init_global(void);
+int odp_crypto_term_global(void);
int odp_schedule_init_global(void);
int odp_schedule_init_local(void);
@@ -428,6 +428,19 @@ odp_crypto_init_global(void)
return 0;
}
+int odp_crypto_term_global(void)
+{
+ odp_shm_t shm;
+ int ret = 0;
+
+ shm = odp_shm_lookup("crypto_pool");
+ if (shm == ODP_SHM_INVALID)
+ return -1;
+ ret = odp_shm_free(shm);
+
+ return ret;
+}
+
int
odp_hw_random_get(uint8_t *buf, size_t *len, bool use_entropy ODP_UNUSED)
{
@@ -77,6 +77,11 @@ int odp_term_global(void)
return -1;
}
+ if (odp_crypto_term_global()) {
+ ODP_ERR("ODP crypto term failed.\n");
+ return -1;
+ }
+
return 0;
}