]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_mempool/rte_mempool_ops.c
net/sfc: specify correct scale table size on Rx start
[dpdk.git] / lib / librte_mempool / rte_mempool_ops.c
index fd0b64cf9e40492d0ec679b42131bbb702b23807..5f24de2505f8239b8a15e0ab42668a723a50be58 100644 (file)
@@ -81,6 +81,7 @@ rte_mempool_register_ops(const struct rte_mempool_ops *h)
        ops = &rte_mempool_ops_table.ops[ops_index];
        snprintf(ops->name, sizeof(ops->name), "%s", h->name);
        ops->alloc = h->alloc;
+       ops->free = h->free;
        ops->enqueue = h->enqueue;
        ops->dequeue = h->dequeue;
        ops->get_count = h->get_count;