]> git.droids-corp.org - dpdk.git/commitdiff
ethdev: add tracepoints
authorSunil Kumar Kori <skori@marvell.com>
Wed, 22 Apr 2020 19:03:45 +0000 (00:33 +0530)
committerDavid Marchand <david.marchand@redhat.com>
Thu, 23 Apr 2020 13:40:06 +0000 (15:40 +0200)
Add tracepoints at important and mandatory APIs for tracing support.

Signed-off-by: Sunil Kumar Kori <skori@marvell.com>
Acked-by: David Marchand <david.marchand@redhat.com>
80 files changed:
examples/cmdline/Makefile
examples/cmdline/meson.build
examples/distributor/Makefile
examples/distributor/meson.build
examples/ethtool/ethtool-app/Makefile
examples/eventdev_pipeline/meson.build
examples/flow_filtering/Makefile
examples/flow_filtering/meson.build
examples/helloworld/Makefile
examples/helloworld/meson.build
examples/ioat/Makefile
examples/ioat/meson.build
examples/ip_fragmentation/Makefile
examples/ip_fragmentation/meson.build
examples/ip_reassembly/Makefile
examples/ip_reassembly/meson.build
examples/ipv4_multicast/Makefile
examples/ipv4_multicast/meson.build
examples/l2fwd-cat/Makefile
examples/l2fwd-cat/meson.build
examples/l2fwd-event/Makefile
examples/l2fwd-event/meson.build
examples/l2fwd-jobstats/Makefile
examples/l2fwd-jobstats/meson.build
examples/l2fwd-keepalive/Makefile
examples/l2fwd-keepalive/ka-agent/Makefile
examples/l2fwd-keepalive/meson.build
examples/l3fwd-acl/Makefile
examples/l3fwd-acl/meson.build
examples/l3fwd/Makefile
examples/l3fwd/meson.build
examples/link_status_interrupt/Makefile
examples/link_status_interrupt/meson.build
examples/multi_process/client_server_mp/mp_client/Makefile
examples/multi_process/client_server_mp/mp_client/meson.build
examples/multi_process/client_server_mp/mp_server/meson.build
examples/multi_process/hotplug_mp/Makefile
examples/multi_process/hotplug_mp/meson.build
examples/multi_process/simple_mp/Makefile
examples/multi_process/simple_mp/meson.build
examples/multi_process/symmetric_mp/Makefile
examples/multi_process/symmetric_mp/meson.build
examples/ntb/Makefile
examples/ntb/meson.build
examples/packet_ordering/Makefile
examples/packet_ordering/meson.build
examples/performance-thread/l3fwd-thread/Makefile
examples/performance-thread/l3fwd-thread/meson.build
examples/performance-thread/pthread_shim/Makefile
examples/performance-thread/pthread_shim/meson.build
examples/ptpclient/Makefile
examples/ptpclient/meson.build
examples/qos_meter/Makefile
examples/qos_meter/meson.build
examples/qos_sched/Makefile
examples/qos_sched/meson.build
examples/server_node_efd/node/Makefile
examples/server_node_efd/node/meson.build
examples/server_node_efd/server/Makefile
examples/server_node_efd/server/meson.build
examples/service_cores/Makefile
examples/service_cores/meson.build
examples/skeleton/Makefile
examples/skeleton/meson.build
examples/timer/Makefile
examples/timer/meson.build
examples/vm_power_manager/Makefile
examples/vm_power_manager/meson.build
examples/vmdq/Makefile
examples/vmdq/meson.build
examples/vmdq_dcb/Makefile
examples/vmdq_dcb/meson.build
lib/librte_ethdev/Makefile
lib/librte_ethdev/ethdev_trace_points.c [new file with mode: 0644]
lib/librte_ethdev/meson.build
lib/librte_ethdev/rte_ethdev.c
lib/librte_ethdev/rte_ethdev.h
lib/librte_ethdev/rte_ethdev_trace.h [new file with mode: 0644]
lib/librte_ethdev/rte_ethdev_trace_fp.h [new file with mode: 0644]
lib/librte_ethdev/rte_ethdev_version.map

index 0b6b54540a3d199b18388d49fe19a8a45df2d53e..9a33355d0b8aa04cf8286ae7472165e863b6a327 100644 (file)
@@ -57,6 +57,7 @@ SRCS-y := main.c commands.c parse_obj_list.c
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 
index a8608c21a659668cd928c87361ef35255b8a2694..7de0f162514758700b69716500515cd1a74d98e2 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'commands.c', 'main.c', 'parse_obj_list.c'
 )
index 4192d8a4ae46e9b11b1f8271a912f80d3895cb77..63c14dfcad94c4fa91a07c617feb1c0e9be01448 100644 (file)
@@ -50,6 +50,7 @@ RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.conf
 include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index 26f108d6530868e20a56100b179b92b16ed93871..9fec7f883f3b4a3e1889d78ff073402d7c23face 100644 (file)
@@ -9,6 +9,7 @@
 # require the power library
 build = dpdk_conf.has('RTE_LIBRTE_POWER')
 
+allow_experimental_apis = true
 deps += ['distributor', 'power']
 sources = files(
        'main.c'
index 3543bdee0cfe1bd87b46ba4a52069585cd074a97..20ac0d3240ee1b5d10453c32acdcdcaf6af98960 100644 (file)
@@ -18,6 +18,7 @@ SRCS-y := main.c ethapp.c
 
 CFLAGS += -O3 -pthread -I$(SRCDIR)/../lib
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 LDLIBS += -L$(subst ethtool-app,lib,$(RTE_OUTPUT))/lib
 LDLIBS += -lrte_ethtool
index a54c35aa7f44e508f75b9bdcdf7544e63ce575a2..1dfeba0d3f58e3a247510f647f1383169417b34a 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += 'eventdev'
 sources = files(
        'main.c',
index 6c51c0b7a03ec63ae2f2d1c573ecd9560b526377..e0d546de96659f553b3a11cb63ed8fc66829fbfd 100644 (file)
@@ -49,6 +49,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 
index 407795c428cf4ed7a717a45e79630b1006f4de57..6f5d1b08a93b30930539f26645afa234d9424725 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'main.c',
 )
index 16d82b02f0e67953e2c7cbef2a2e87abb62a99aa..0f5af0806b3fed2212a2c80f17885c9d371bf2f6 100644 (file)
@@ -51,6 +51,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 
index c34e11e36d214b8deea947d0ae346b0a05db27d9..2b0a25036125381fe131a60eef688103ace49f77 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'main.c'
 )
index ef63f5d6890292e9e6c48bfad0eb9020af0447fb..9b277eb7b91cdb8879794d10174aa5044848f9ce 100644 (file)
@@ -51,6 +51,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 endif
index ed832896365ef2897ac5c3a6337971b4229cfbe9..f72cf70e7e613c8eac12230333eb3bb8a47cd27f 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 build = dpdk_conf.has('RTE_LIBRTE_PMD_IOAT_RAWDEV')
 
 deps += ['rawdev_ioat']
index ede0c4f02bd286eb51f7cee4fe43ca19dd8e20f9..8babbbf827be2e8681f527b238b892f083632bd0 100644 (file)
@@ -22,6 +22,7 @@ PKGCONF ?= pkg-config
 
 PC_FILE := $(shell $(PKGCONF) --path libdpdk 2>/dev/null)
 CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk)
 LDFLAGS_STATIC = -Wl,-Bstatic $(shell $(PKGCONF) --static --libs libdpdk)
 
@@ -52,6 +53,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index 304203eedd1aa96514db0a0bd1a957ac9167960a..1230db477642304ba1b6729d856022572c3c022d 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps +=  ['ip_frag', 'lpm']
 sources = files(
        'main.c'
index 3f2888b338a403310b9b6924d9d12f0589426f5e..11be2a74acaebb52d2917c5dc0432fd7c60089a4 100644 (file)
@@ -52,6 +52,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index 8ebd4829154169c5f99f8be26ba29ab40d42ec95..517bd4e19ab5409da1a84102e2005824ed66040d 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += ['lpm', 'ip_frag']
 sources = files(
        'main.c'
index 92d3db0f4d531d2cf623a39eb82de5a4ea92d579..b9f0813ede6ea2f24e6fe6a6d78d8b6cb23e552f 100644 (file)
@@ -52,6 +52,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index d9e4c7c2190a878754425906769b626c6d4ea960..7dc13fb8fcbad9c6b19f0b7c6667e32aba29f16f 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += 'hash'
 sources = files(
        'main.c'
index b0e53c37e8d83c2c3cebb6d7ce467ff2c04eea1e..ca1202be17bbab905a868534a5f1a8cf2127cc2a 100644 (file)
@@ -56,6 +56,7 @@ RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.conf
 include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index 4e2777a03358d979eb733645d7a4f57e6556b943..2bed18e74954fb4ce0c1bdb685c8c411abca9cfa 100644 (file)
@@ -9,6 +9,7 @@
 pqos = cc.find_library('pqos', required: false)
 build = pqos.found()
 ext_deps += pqos
+allow_experimental_apis = true
 cflags += '-I/usr/local/include' # assume pqos lib installed in /usr/local
 sources = files(
        'cat.c', 'l2fwd-cat.c'
index 4cdae36f17dd14dd41af5ce3b7a95a672cdddff5..807f7f1b8be0fb37d9342bf551c7d6a4ca6f30e3 100644 (file)
@@ -57,6 +57,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 endif
index 4e9a069d6aa4c244d063c20d9ba0d5e2d9695494..4a546eaf81f5add4265739a40fba797dd30dc734 100644 (file)
@@ -7,6 +7,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += 'eventdev'
 sources = files(
        'main.c',
index 73c91faa8d5e395b2b341cbc7a571adbea9351df..6cd9dcd9c0b3f27c69a9e038799a142a5652e6d6 100644 (file)
@@ -52,6 +52,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 endif
index 1ffd484e2350051155f886979ccb7de60b3aa32e..72273736b6804f36a9ad77da0666ca0173bddd0f 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += ['jobstats', 'timer']
 sources = files(
        'main.c'
index 94d1e58bb5064400495febefbb4abef240661b61..0db5e6015483bb5ebc473e6fa1f8505be9f3a687 100644 (file)
@@ -53,6 +53,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 LDFLAGS += -lrt
 
 include $(RTE_SDK)/mk/rte.extapp.mk
index 755e474383bf2d35ecd212d68c4a4dd548e43d93..8d5061b1782ce10efdc0f6f5eff290bff409b586 100644 (file)
@@ -17,5 +17,6 @@ APP = ka-agent
 SRCS-y := main.c
 
 CFLAGS += $(WERROR_FLAGS) -I$(SRCDIR)/../
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 LDFLAGS += -lrt
 include $(RTE_SDK)/mk/rte.extapp.mk
index 6f7b007e1e4378f5c2f7577d96d9e7697331f947..d678a8ddd0e9a625cccb1bba09f7b78406532616 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 ext_deps += cc.find_library('rt')
 deps += 'timer'
 sources = files(
index d9909584b1c6cb1bad29abb6eb532aba11dc6eda..9f31abef80502f6883173e9d149770d2add4d399 100644 (file)
@@ -51,6 +51,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index 7096e00c107351ac99da879200a26d10b7c839c1..6fa468b3aa9c6926c80b5032ff0ec4cecd787135 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += ['acl', 'lpm', 'hash']
 sources = files(
        'main.c'
index 59a110d12a490b707cf542b1a3bf2784c311b7c4..839439f0fffbb413b739e789950031aca2941c89 100644 (file)
@@ -53,6 +53,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 CFLAGS += -I$(SRCDIR)
 CFLAGS += -O3 $(USER_FLAGS)
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 endif
index ebed3b518c4b5800702198e0c2fba641b3a97986..7d72b1b365aea73239140d71a0124cce89c45943 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += ['hash', 'lpm', 'eventdev']
 sources = files(
        'l3fwd_em.c', 'l3fwd_lpm.c', 'l3fwd_event.c',
index 4f02a89013aeb4d88ba584beec9b170f7cea401b..613bb1167ae0486a0c46ed76646b3ca68c2d5853 100644 (file)
@@ -51,6 +51,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 endif
index c34e11e36d214b8deea947d0ae346b0a05db27d9..2b0a25036125381fe131a60eef688103ace49f77 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'main.c'
 )
index 298e1b0204e26e0f78901af909f1950f62345835..7c447feba395b1d025a3d3b510e3e448e12ce136 100644 (file)
@@ -16,5 +16,6 @@ SRCS-y := client.c
 
 CFLAGS += $(WERROR_FLAGS) -O3
 CFLAGS += -I$(SRCDIR)/../shared
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
index a6241b83a3b13690b840e729ceb3cd144aba6ac8..69c3d3bfbed7770a35658e03c9f277fc8bab9d64 100644 (file)
@@ -8,6 +8,7 @@
 
 includes += include_directories('../shared')
 
+allow_experimental_apis = true
 sources = files(
        'client.c'
 )
index 1b2f786389ed78d4892ebacf6fe950f0a6128527..0ef6424f4bd1549299aa3e7bcd934e7f115df1e9 100644 (file)
@@ -8,6 +8,7 @@
 
 includes += include_directories('../shared')
 
+allow_experimental_apis = true
 sources = files(
        'args.c', 'init.c', 'main.c'
 )
index 3ff74d52a839ceea406c2d354acc6e4a3674b0f3..1fd7aa085c91cb028087c2d9cb1fb2ff5618ac99 100644 (file)
@@ -18,5 +18,6 @@ SRCS-y := main.c commands.c
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
index 076f4e3dcbb3fe546a0caa646bf7b975d7bdc374..f82f4d48a2f5b2cd752df27ba9ea3b5d09be9281 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'commands.c', 'main.c'
 )
index 4c0764451ab2c7e5f0fdceb9feb08e653383e429..f88b499bdc686211c60e9963e926b7671da28daf 100644 (file)
@@ -18,5 +18,6 @@ SRCS-y := main.c mp_commands.c
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
index b2261e00e9d5d1db248d94747c36bc7de61ebd15..cb02c65a6970f1a4c36f9b5aa86199f9938b693d 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'mp_commands.c', 'main.c'
 )
index bdc415621f1d1a44cac142040416b3d587c4cb08..b7544489bb2547264f14d50134a66efdaaa3e3f1 100644 (file)
@@ -18,5 +18,6 @@ SRCS-y := main.c
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
index 458f83642a4a5ead20478f0514479981fd9ca1b7..14167825b0eb7bcca2fcc81162624565a48bfea1 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'main.c'
 )
index baeba11e85e6a6840c1378a00be8f60b4394b8ee..f2920ed54849cbb24c69933d67fb4b2b709fe46a 100644 (file)
@@ -25,6 +25,7 @@ LDFLAGS += -pthread
 
 PC_FILE := $(shell $(PKGCONF) --path libdpdk 2>/dev/null)
 CFLAGS += -O3 $(shell $(PKGCONF) --cflags libdpdk)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 LDFLAGS_SHARED = $(shell $(PKGCONF) --libs libdpdk)
 LDFLAGS_STATIC = -Wl,-Bstatic $(shell $(PKGCONF) --static --libs libdpdk)
 
index f5435fe1207980219106f8340cda6f5a3a4128c4..ab449d0939ee75c49a3fc71a39de3324da3ca735 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 if host_machine.system() != 'linux'
        build = false
 endif
index 261b7f06a836fca9e3dcf7175e2c725741439137..f5b68c97e882fea2b34319f26767d311760a5210 100644 (file)
@@ -51,6 +51,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 endif
index 6c2fccdcb0902b9e62d658dbd01f4a81d5dd5786..b38195914515d628f8107716af7ecfeb51e34556 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += 'reorder'
 sources = files(
        'main.c'
index b14b21e30b547f45b3545c0160569e9d0d32f1d4..c6cf05a4381eee91f74535a2d1f5da7bb83ba9bf 100644 (file)
@@ -19,5 +19,6 @@ SRCS-y := main.c
 include $(RTE_SDK)/examples/performance-thread/common/common.mk
 
 CFLAGS += -O3 -g $(USER_FLAGS) $(INCLUDES) $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
index 185fa59a425119ede4d39edddaf3af9127cee361..99de24be7dec5b4611bede4f9b9a560f90a495d6 100644 (file)
@@ -8,6 +8,7 @@
 
 build = dpdk_conf.has('RTE_ARCH_X86_64')
 deps += ['timer', 'lpm']
+allow_experimental_apis = true
 
 # get the performance thread (pt) architecture subdir
 if dpdk_conf.has('RTE_ARCH_ARM64')
index efd66febf48fae30f406346aebe25418aaa71f81..cdadf2cb77242f15e2f164ad73f84e98460742f5 100644 (file)
@@ -20,6 +20,7 @@ include $(RTE_SDK)/examples/performance-thread/common/common.mk
 
 CFLAGS += -g -O3 $(USER_FLAGS) $(INCLUDES)
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 LDFLAGS += -lpthread
 
index 393fbd122c8c00b7bdca5369ac3ddb3bbcf135b7..26ef78635a06a873853a173bd246f0cf53757a66 100644 (file)
@@ -8,6 +8,7 @@
 
 build = dpdk_conf.has('RTE_ARCH_X86_64') or dpdk_conf.has('RTE_ARCH_ARM64')
 deps += ['timer']
+allow_experimental_apis = true
 
 # get the performance thread (pt) architecture subdir
 if dpdk_conf.has('RTE_ARCH_ARM64')
index 82d72b3e319f955aab4a7ad4500d9416015828d6..7cd36632a996001781a78a4a7df4bb70c58af6c7 100644 (file)
@@ -51,6 +51,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index fa0cbe93c82990b5b3f48f49452e984c74ac7913..d4171a21832b89ad4cfb8925a10e3de2e09e3612 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'ptpclient.c'
 )
index 7c2bf88a90f930d4fea9065c6ddb537875f6e9a0..90e3533d1008e7ce6528b857e1e782518a049a43 100644 (file)
@@ -53,6 +53,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index ef7779f2f164c1ab19e4bbd7f96dd255ebdd64d7..2f9ab13afd3ac4c71027a28d12a0c2d4d1e1eb26 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += 'meter'
 sources = files(
        'main.c', 'rte_policer.c'
index 525061ca07c9a617ced74083c4b9abee42fadc99..92e3de79be7ddff0a3b97f38fd5ba59037645b6d 100644 (file)
@@ -58,6 +58,7 @@ else
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
 
index 289b81ce809af762b4a06a3fc6c364c7c73f2dca..ba59d3c9e533d6dd9619d2c03c3b7643144f9db0 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += ['sched', 'cfgfile']
 sources = files(
        'app_thread.c', 'args.c', 'cfg_file.c', 'cmdline.c',
index fffbe3576720bd0498fa2b1d21882afb6a01e406..ecc551e1d67a3cf29d96dc1c7ea7f5010e22b646 100644 (file)
@@ -16,5 +16,6 @@ SRCS-y := node.c
 
 CFLAGS += $(WERROR_FLAGS) -O3
 CFLAGS += -I$(SRCDIR)/../shared
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
index 30f28761fefa0687a8f7a97a0fac4cf6f8afadb8..1c720968afe6366dbd4dff66a144023b9aa914d2 100644 (file)
@@ -8,6 +8,7 @@
 
 name = 'efd_node'
 
+allow_experimental_apis = true
 deps += ['hash']
 sources += files('node.c')
 includes += include_directories('../shared')
index 4837bd3eab6499efd56ddb19456edbf0e1e3db0b..acbd12ae230561ddcb2b75078975e421d9a390c1 100644 (file)
@@ -25,5 +25,6 @@ INC := $(sort $(wildcard *.h))
 
 CFLAGS += $(WERROR_FLAGS) -O3
 CFLAGS += -I$(SRCDIR)/../shared
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 include $(RTE_SDK)/mk/rte.extapp.mk
index 23e08d1ae6568f22a72fd7cbc10a7ba3cc5a4e2e..7abc333e1d54e0fff6b0986afe79e40122f2a895 100644 (file)
@@ -8,6 +8,7 @@
 
 name = 'efd_server'
 
+allow_experimental_apis = true
 deps += 'efd'
 sources += files('args.c', 'init.c', 'main.c')
 includes += include_directories('../shared')
index c47055813e9c52b6d87ba9b212327ddc91b2dc69..aac207bd9960653f0870c75dd1754fceda02d2ac 100644 (file)
@@ -50,6 +50,7 @@ RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.conf
 include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index c34e11e36d214b8deea947d0ae346b0a05db27d9..2b0a25036125381fe131a60eef688103ace49f77 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'main.c'
 )
index 2c29004d79f5d62c133282ad4636798c76e554a1..2612688c0e8e87dfcce45e7eaa87d70546ce39e7 100644 (file)
@@ -50,6 +50,7 @@ RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.conf
 include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index 9bb9ec3294d5415fb873e634e15da13d7a853cb3..ef46b187e7003c4c058438738b4fd20a3405fddf 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'basicfwd.c'
 )
index bf86339ab72125f2dc0f2f061baa85460aa6f941..e58e90a286c6c76c4928da147e09f74282994742 100644 (file)
@@ -51,6 +51,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index c3d9016378fd2ea425656535b79ffb2f363b8acd..87c21a867939e178870bca3d3af839fe6cff7a8b 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 deps += 'timer'
 sources = files(
        'main.c'
index 2fdb991d7c75afb1885e5a52638ff9ba46ccf8f5..65c2ad179e091f1739db03ebe3ff8ec7b115d260 100644 (file)
@@ -28,6 +28,7 @@ endif
 
 CFLAGS += -O3 -I$(RTE_SDK)/lib/librte_power/
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 LDLIBS += -lvirt
 
index 20a4a05b3bd23ebf3686cb491fc297cf67a62aa8..54e2b584f666b9a0647f8c1bb25cc9ff3087d0ca 100644 (file)
@@ -25,6 +25,7 @@ if dpdk_conf.has('RTE_LIBRTE_IXGBE_PMD')
        deps += ['pmd_ixgbe']
 endif
 
+allow_experimental_apis = true
 sources = files(
        'channel_manager.c', 'channel_monitor.c', 'main.c', 'parse.c', 'power_manager.c', 'vm_power_cli.c'
 )
index 0767c715a1b2b04e58f5dab6277501640414218f..98e644fa7305860dc0682ab6115609cc30825207 100644 (file)
@@ -50,6 +50,7 @@ RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.conf
 include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 EXTRA_CFLAGS += -O3
 
index c34e11e36d214b8deea947d0ae346b0a05db27d9..2b0a25036125381fe131a60eef688103ace49f77 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'main.c'
 )
index 2a9b04143f641543c4e3efde878b59080c49ca51..3eb7c9f43b0c158f425080d87ae4812bcc69ac12 100644 (file)
@@ -50,6 +50,7 @@ RTE_TARGET ?= $(notdir $(abspath $(dir $(firstword $(wildcard $(RTE_SDK)/*/.conf
 include $(RTE_SDK)/mk/rte.vars.mk
 
 CFLAGS += $(WERROR_FLAGS)
+CFLAGS += -DALLOW_EXPERIMENTAL_API
 
 # workaround for a gcc bug with noreturn attribute
 # http://gcc.gnu.org/bugzilla/show_bug.cgi?id=12603
index c34e11e36d214b8deea947d0ae346b0a05db27d9..2b0a25036125381fe131a60eef688103ace49f77 100644 (file)
@@ -6,6 +6,7 @@
 # To build this example as a standalone application with an already-installed
 # DPDK instance, use 'make'
 
+allow_experimental_apis = true
 sources = files(
        'main.c'
 )
index 943fb8c877503d211f67514b6843e9067b513a7d..d50b7ddf10b62d343139f20afdf747a4654ccbc7 100644 (file)
@@ -22,6 +22,7 @@ SRCS-y += rte_flow.c
 SRCS-y += rte_tm.c
 SRCS-y += rte_mtr.c
 SRCS-y += ethdev_profile.c
+SRCS-y += ethdev_trace_points.c
 
 #
 # Export include files
@@ -30,6 +31,8 @@ SYMLINK-y-include += rte_ethdev.h
 SYMLINK-y-include += rte_ethdev_driver.h
 SYMLINK-y-include += rte_ethdev_core.h
 SYMLINK-y-include += rte_ethdev_pci.h
+SYMLINK-y-include += rte_ethdev_trace.h
+SYMLINK-y-include += rte_ethdev_trace_fp.h
 SYMLINK-y-include += rte_ethdev_vdev.h
 SYMLINK-y-include += rte_eth_ctrl.h
 SYMLINK-y-include += rte_dev_info.h
diff --git a/lib/librte_ethdev/ethdev_trace_points.c b/lib/librte_ethdev/ethdev_trace_points.c
new file mode 100644 (file)
index 0000000..05de34f
--- /dev/null
@@ -0,0 +1,43 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(C) 2020 Marvell International Ltd.
+ */
+
+#define RTE_TRACE_POINT_REGISTER_SELECT
+
+#include <rte_ethdev_trace.h>
+
+RTE_TRACE_POINT_DEFINE(rte_ethdev_trace_configure);
+RTE_TRACE_POINT_DEFINE(rte_ethdev_trace_rxq_setup);
+RTE_TRACE_POINT_DEFINE(rte_ethdev_trace_txq_setup);
+RTE_TRACE_POINT_DEFINE(rte_ethdev_trace_start);
+RTE_TRACE_POINT_DEFINE(rte_ethdev_trace_stop);
+RTE_TRACE_POINT_DEFINE(rte_ethdev_trace_close);
+RTE_TRACE_POINT_DEFINE(rte_ethdev_trace_rx_burst);
+RTE_TRACE_POINT_DEFINE(rte_ethdev_trace_tx_burst);
+
+RTE_INIT(ethdev_trace_init)
+{
+       RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_configure,
+               lib.ethdev.configure);
+
+       RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_rxq_setup,
+               lib.ethdev.rxq.setup);
+
+       RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_txq_setup,
+               lib.ethdev.txq.setup);
+
+       RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_start,
+               lib.ethdev.start);
+
+       RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_stop,
+               lib.ethdev.stop);
+
+       RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_close,
+               lib.ethdev.close);
+
+       RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_rx_burst,
+               lib.ethdev.rx.burst);
+
+       RTE_TRACE_POINT_REGISTER(rte_ethdev_trace_tx_burst,
+               lib.ethdev.tx.burst);
+}
index ab341d9c04f66e313752d76e9d8e3b629cf19dab..e5fd82e93c2bc97da48de4e53a999ceba26fc275 100644 (file)
@@ -4,6 +4,7 @@
 name = 'ethdev'
 sources = files('ethdev_private.c',
        'ethdev_profile.c',
+       'ethdev_trace_points.c',
        'rte_class_eth.c',
        'rte_ethdev.c',
        'rte_flow.c',
@@ -14,6 +15,8 @@ headers = files('rte_ethdev.h',
        'rte_ethdev_driver.h',
        'rte_ethdev_core.h',
        'rte_ethdev_pci.h',
+       'rte_ethdev_trace.h',
+       'rte_ethdev_trace_fp.h',
        'rte_ethdev_vdev.h',
        'rte_eth_ctrl.h',
        'rte_dev_info.h',
index 0854ef8832707b88068d2795ee0f5c570b1dd907..72aed59a54f7c739416fbb592b094ec0bb185e95 100644 (file)
@@ -39,6 +39,7 @@
 #include <rte_class.h>
 #include <rte_ether.h>
 
+#include "rte_ethdev_trace.h"
 #include "rte_ethdev.h"
 #include "rte_ethdev_driver.h"
 #include "ethdev_profile.h"
@@ -1470,6 +1471,7 @@ rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
                goto reset_queues;
        }
 
+       rte_ethdev_trace_configure(port_id, nb_rx_q, nb_tx_q, dev_conf, 0);
        return 0;
 reset_queues:
        rte_eth_dev_rx_queue_config(dev, 0);
@@ -1477,6 +1479,7 @@ reset_queues:
 rollback:
        memcpy(&dev->data->dev_conf, &orig_conf, sizeof(dev->data->dev_conf));
 
+       rte_ethdev_trace_configure(port_id, nb_rx_q, nb_tx_q, dev_conf, ret);
        return ret;
 }
 
@@ -1647,6 +1650,8 @@ rte_eth_dev_start(uint16_t port_id)
                RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP);
                (*dev->dev_ops->link_update)(dev, 0);
        }
+
+       rte_ethdev_trace_start(port_id);
        return 0;
 }
 
@@ -1669,6 +1674,7 @@ rte_eth_dev_stop(uint16_t port_id)
 
        dev->data->dev_started = 0;
        (*dev->dev_ops->dev_stop)(dev);
+       rte_ethdev_trace_stop(port_id);
 }
 
 int
@@ -1709,6 +1715,7 @@ rte_eth_dev_close(uint16_t port_id)
        dev->data->dev_started = 0;
        (*dev->dev_ops->dev_close)(dev);
 
+       rte_ethdev_trace_close(port_id);
        /* check behaviour flag - temporary for PMD migration */
        if ((dev->data->dev_flags & RTE_ETH_DEV_CLOSE_REMOVE) != 0) {
                /* new behaviour: send event + reset state + free all data */
@@ -1918,6 +1925,8 @@ rte_eth_rx_queue_setup(uint16_t port_id, uint16_t rx_queue_id,
                        dev->data->min_rx_buf_size = mbp_buf_size;
        }
 
+       rte_ethdev_trace_rxq_setup(port_id, rx_queue_id, nb_rx_desc, mp,
+               rx_conf, ret);
        return eth_err(port_id, ret);
 }
 
@@ -2088,6 +2097,7 @@ rte_eth_tx_queue_setup(uint16_t port_id, uint16_t tx_queue_id,
                return -EINVAL;
        }
 
+       rte_ethdev_trace_txq_setup(port_id, tx_queue_id, nb_tx_desc, tx_conf);
        return eth_err(port_id, (*dev->dev_ops->tx_queue_setup)(dev,
                       tx_queue_id, nb_tx_desc, socket_id, &local_conf));
 }
index e9e3a16995faa75075392e5c929592339588b11d..bd0bca6e00c8d06ed894e9a02865dd8f1ef0d5cd 100644 (file)
@@ -158,6 +158,7 @@ extern "C" {
 #include <rte_config.h>
 #include <rte_ether.h>
 
+#include "rte_ethdev_trace_fp.h"
 #include "rte_dev_info.h"
 
 extern int rte_eth_dev_logtype;
@@ -4400,6 +4401,7 @@ rte_eth_rx_burst(uint16_t port_id, uint16_t queue_id,
        }
 #endif
 
+       rte_ethdev_trace_rx_burst(port_id, queue_id, (void **)rx_pkts, nb_rx);
        return nb_rx;
 }
 
@@ -4663,6 +4665,8 @@ rte_eth_tx_burst(uint16_t port_id, uint16_t queue_id,
        }
 #endif
 
+       rte_ethdev_trace_tx_burst(port_id, queue_id, (void **)tx_pkts,
+               nb_pkts);
        return (*dev->tx_pkt_burst)(dev->data->tx_queues[queue_id], tx_pkts, nb_pkts);
 }
 
diff --git a/lib/librte_ethdev/rte_ethdev_trace.h b/lib/librte_ethdev/rte_ethdev_trace.h
new file mode 100644 (file)
index 0000000..16f5bf2
--- /dev/null
@@ -0,0 +1,94 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(C) 2020 Marvell International Ltd.
+ */
+
+#ifndef _RTE_ETHDEV_TRACE_H_
+#define _RTE_ETHDEV_TRACE_H_
+
+/**
+ * @file
+ *
+ * API for ethdev trace support
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <rte_trace_point.h>
+
+#include "rte_ethdev.h"
+
+RTE_TRACE_POINT(
+       rte_ethdev_trace_configure,
+       RTE_TRACE_POINT_ARGS(uint16_t port_id, uint16_t nb_rx_q,
+               uint16_t nb_tx_q, const struct rte_eth_conf *dev_conf, int rc),
+       rte_trace_point_emit_u16(port_id);
+       rte_trace_point_emit_u16(nb_rx_q);
+       rte_trace_point_emit_u16(nb_tx_q);
+       rte_trace_point_emit_u32(dev_conf->link_speeds);
+       rte_trace_point_emit_u32(dev_conf->rxmode.mq_mode);
+       rte_trace_point_emit_u32(dev_conf->rxmode.max_rx_pkt_len);
+       rte_trace_point_emit_u64(dev_conf->rxmode.offloads);
+       rte_trace_point_emit_u32(dev_conf->txmode.mq_mode);
+       rte_trace_point_emit_u64(dev_conf->txmode.offloads);
+       rte_trace_point_emit_u32(dev_conf->lpbk_mode);
+       rte_trace_point_emit_int(rc);
+)
+
+RTE_TRACE_POINT(
+       rte_ethdev_trace_rxq_setup,
+       RTE_TRACE_POINT_ARGS(uint16_t port_id, uint16_t rx_queue_id,
+               uint16_t nb_rx_desc, void *mp,
+               const struct rte_eth_rxconf *rx_conf, int rc),
+       rte_trace_point_emit_u16(port_id);
+       rte_trace_point_emit_u16(rx_queue_id);
+       rte_trace_point_emit_u16(nb_rx_desc);
+       rte_trace_point_emit_ptr(mp);
+       rte_trace_point_emit_u8(rx_conf->rx_thresh.pthresh);
+       rte_trace_point_emit_u8(rx_conf->rx_thresh.hthresh);
+       rte_trace_point_emit_u8(rx_conf->rx_thresh.wthresh);
+       rte_trace_point_emit_u8(rx_conf->rx_drop_en);
+       rte_trace_point_emit_u8(rx_conf->rx_deferred_start);
+       rte_trace_point_emit_u64(rx_conf->offloads);
+       rte_trace_point_emit_int(rc);
+)
+
+RTE_TRACE_POINT(
+       rte_ethdev_trace_txq_setup,
+       RTE_TRACE_POINT_ARGS(uint16_t port_id, uint16_t tx_queue_id,
+               uint16_t nb_tx_desc, const struct rte_eth_txconf *tx_conf),
+       rte_trace_point_emit_u16(port_id);
+       rte_trace_point_emit_u16(tx_queue_id);
+       rte_trace_point_emit_u16(nb_tx_desc);
+       rte_trace_point_emit_u8(tx_conf->tx_thresh.pthresh);
+       rte_trace_point_emit_u8(tx_conf->tx_thresh.hthresh);
+       rte_trace_point_emit_u8(tx_conf->tx_thresh.wthresh);
+       rte_trace_point_emit_u8(tx_conf->tx_deferred_start);
+       rte_trace_point_emit_u16(tx_conf->tx_free_thresh);
+       rte_trace_point_emit_u64(tx_conf->offloads);
+)
+
+RTE_TRACE_POINT(
+       rte_ethdev_trace_start,
+       RTE_TRACE_POINT_ARGS(uint16_t port_id),
+       rte_trace_point_emit_u16(port_id);
+)
+
+RTE_TRACE_POINT(
+       rte_ethdev_trace_stop,
+       RTE_TRACE_POINT_ARGS(uint16_t port_id),
+       rte_trace_point_emit_u16(port_id);
+)
+
+RTE_TRACE_POINT(
+       rte_ethdev_trace_close,
+       RTE_TRACE_POINT_ARGS(uint16_t port_id),
+       rte_trace_point_emit_u16(port_id);
+)
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _RTE_ETHDEV_TRACE_H_ */
diff --git a/lib/librte_ethdev/rte_ethdev_trace_fp.h b/lib/librte_ethdev/rte_ethdev_trace_fp.h
new file mode 100644 (file)
index 0000000..40084d1
--- /dev/null
@@ -0,0 +1,44 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(C) 2020 Marvell International Ltd.
+ */
+
+#ifndef _RTE_ETHDEV_TRACE_FP_H_
+#define _RTE_ETHDEV_TRACE_FP_H_
+
+/**
+ * @file
+ *
+ * API for ethdev trace support
+ */
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include <rte_trace_point.h>
+
+RTE_TRACE_POINT_FP(
+       rte_ethdev_trace_rx_burst,
+       RTE_TRACE_POINT_ARGS(uint16_t port_id, uint16_t queue_id,
+               void **pkt_tbl, uint16_t nb_rx),
+       rte_trace_point_emit_u16(port_id);
+       rte_trace_point_emit_u16(queue_id);
+       rte_trace_point_emit_ptr(pkt_tbl);
+       rte_trace_point_emit_u16(nb_rx);
+)
+
+RTE_TRACE_POINT_FP(
+       rte_ethdev_trace_tx_burst,
+       RTE_TRACE_POINT_ARGS(uint16_t port_id, uint16_t queue_id,
+               void **pkts_tbl, uint16_t nb_pkts),
+       rte_trace_point_emit_u16(port_id);
+       rte_trace_point_emit_u16(queue_id);
+       rte_trace_point_emit_ptr(pkts_tbl);
+       rte_trace_point_emit_u16(nb_pkts);
+)
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _RTE_ETHDEV_TRACE_FP_H_ */
index 3f32fdecf722da8ff4050a732d1b3d5562944500..95efe50fbb2c7804cfcfe57cb79476dc9d7f1927 100644 (file)
@@ -230,4 +230,14 @@ EXPERIMENTAL {
 
        # added in 20.02
        rte_flow_dev_dump;
+
+       # added in 20.05
+       __rte_ethdev_trace_configure;
+       __rte_ethdev_trace_rxq_setup;
+       __rte_ethdev_trace_txq_setup;
+       __rte_ethdev_trace_start;
+       __rte_ethdev_trace_stop;
+       __rte_ethdev_trace_close;
+       __rte_ethdev_trace_rx_burst;
+       __rte_ethdev_trace_tx_burst;
 };