xref: /dpdk/lib/mempool/mempool_trace_points.c (revision 1159d8fb18633fb6bbf1864a158b9eeeba317298)
199a2dd95SBruce Richardson /* SPDX-License-Identifier: BSD-3-Clause
299a2dd95SBruce Richardson  * Copyright(C) 2020 Marvell International Ltd.
399a2dd95SBruce Richardson  */
499a2dd95SBruce Richardson 
599a2dd95SBruce Richardson #include <rte_trace_point_register.h>
699a2dd95SBruce Richardson 
7*1159d8fbSAnkur Dwivedi #include "mempool_trace.h"
899a2dd95SBruce Richardson 
999a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_ops_dequeue_bulk,
1099a2dd95SBruce Richardson 	lib.mempool.ops.deq.bulk)
1199a2dd95SBruce Richardson 
1299a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_ops_dequeue_contig_blocks,
1399a2dd95SBruce Richardson 	lib.mempool.ops.deq.contig)
1499a2dd95SBruce Richardson 
1599a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_ops_enqueue_bulk,
1699a2dd95SBruce Richardson 	lib.mempool.ops.enq.bulk)
1799a2dd95SBruce Richardson 
1899a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_generic_put,
1999a2dd95SBruce Richardson 	lib.mempool.generic.put)
2099a2dd95SBruce Richardson 
2199a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_put_bulk,
2299a2dd95SBruce Richardson 	lib.mempool.put.bulk)
2399a2dd95SBruce Richardson 
2499a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_generic_get,
2599a2dd95SBruce Richardson 	lib.mempool.generic.get)
2699a2dd95SBruce Richardson 
2799a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_get_bulk,
2899a2dd95SBruce Richardson 	lib.mempool.get.bulk)
2999a2dd95SBruce Richardson 
3099a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_get_contig_blocks,
3199a2dd95SBruce Richardson 	lib.mempool.get.blocks)
3299a2dd95SBruce Richardson 
3399a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_create,
3499a2dd95SBruce Richardson 	lib.mempool.create)
3599a2dd95SBruce Richardson 
3699a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_create_empty,
3799a2dd95SBruce Richardson 	lib.mempool.create.empty)
3899a2dd95SBruce Richardson 
3999a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_free,
4099a2dd95SBruce Richardson 	lib.mempool.free)
4199a2dd95SBruce Richardson 
4299a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_populate_iova,
4399a2dd95SBruce Richardson 	lib.mempool.populate.iova)
4499a2dd95SBruce Richardson 
4599a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_populate_virt,
4699a2dd95SBruce Richardson 	lib.mempool.populate.virt)
4799a2dd95SBruce Richardson 
4899a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_populate_default,
4999a2dd95SBruce Richardson 	lib.mempool.populate.default)
5099a2dd95SBruce Richardson 
5199a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_populate_anon,
5299a2dd95SBruce Richardson 	lib.mempool.populate.anon)
5399a2dd95SBruce Richardson 
5499a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_cache_create,
5599a2dd95SBruce Richardson 	lib.mempool.cache_create)
5699a2dd95SBruce Richardson 
5799a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_cache_free,
5899a2dd95SBruce Richardson 	lib.mempool.cache.free)
5999a2dd95SBruce Richardson 
6099a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_default_cache,
6199a2dd95SBruce Richardson 	lib.mempool.default.cache)
6299a2dd95SBruce Richardson 
6399a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_get_page_size,
6499a2dd95SBruce Richardson 	lib.mempool.get.page.size)
6599a2dd95SBruce Richardson 
6699a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_cache_flush,
6799a2dd95SBruce Richardson 	lib.mempool.cache.flush)
6899a2dd95SBruce Richardson 
6999a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_ops_populate,
7099a2dd95SBruce Richardson 	lib.mempool.ops.populate)
7199a2dd95SBruce Richardson 
7299a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_ops_alloc,
7399a2dd95SBruce Richardson 	lib.mempool.ops.alloc)
7499a2dd95SBruce Richardson 
7599a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_ops_free,
7699a2dd95SBruce Richardson 	lib.mempool.ops.free)
7799a2dd95SBruce Richardson 
7899a2dd95SBruce Richardson RTE_TRACE_POINT_REGISTER(rte_mempool_trace_set_ops_byname,
7999a2dd95SBruce Richardson 	lib.mempool.set.ops.byname)
80