app/crypto-perf: fix IV allocation for AEAD
[dpdk.git] / lib / librte_ip_frag / rte_ip_frag_common.c
index acd1864..8460f8e 100644 (file)
  */
 
 #include <stddef.h>
-#include <stdint.h>
 #include <stdio.h>
 
 #include <rte_memory.h>
 #include <rte_log.h>
-#include <rte_byteorder.h>
 
-#include "rte_ip_frag.h"
 #include "ip_frag_common.h"
 
 #define        IP_FRAG_HASH_FNUM       2
@@ -86,16 +83,16 @@ rte_ip_frag_table_create(uint32_t bucket_num, uint32_t bucket_entries,
                        nb_entries > UINT32_MAX || nb_entries == 0 ||
                        nb_entries < max_entries) {
                RTE_LOG(ERR, USER1, "%s: invalid input parameter\n", __func__);
-               return (NULL);
+               return NULL;
        }
 
        sz = sizeof (*tbl) + nb_entries * sizeof (tbl->pkt[0]);
-       if ((tbl = rte_zmalloc_socket(__func__, sz, CACHE_LINE_SIZE,
+       if ((tbl = rte_zmalloc_socket(__func__, sz, RTE_CACHE_LINE_SIZE,
                        socket_id)) == NULL) {
                RTE_LOG(ERR, USER1,
                        "%s: allocation of %zu bytes at socket %d failed do\n",
                        __func__, sz, socket_id);
-               return (NULL);
+               return NULL;
        }
 
        RTE_LOG(INFO, USER1, "%s: allocated of %zu bytes at socket %d\n",
@@ -109,7 +106,20 @@ rte_ip_frag_table_create(uint32_t bucket_num, uint32_t bucket_entries,
        tbl->entry_mask = (tbl->nb_entries - 1) & ~(tbl->bucket_entries  - 1);
 
        TAILQ_INIT(&(tbl->lru));
-       return (tbl);
+       return tbl;
+}
+
+/* delete fragmentation table */
+void
+rte_ip_frag_table_destroy(struct rte_ip_frag_tbl *tbl)
+{
+       struct ip_frag_pkt *fp;
+
+       TAILQ_FOREACH(fp, &tbl->lru, lru) {
+               ip_frag_free_immediate(fp);
+       }
+
+       rte_free(tbl);
 }
 
 /* dump frag table statistics to file */