X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=blobdiff_plain;f=src%2Fceph%2Fsrc%2Ftracing%2Feventtrace.tp;fp=src%2Fceph%2Fsrc%2Ftracing%2Feventtrace.tp;h=0000000000000000000000000000000000000000;hb=7da45d65be36d36b880cc55c5036e96c24b53f00;hp=f28ded100ecfeb703c8d842c8db929d2991b8a20;hpb=691462d09d0987b47e112d6ee8740375df3c51b2;p=stor4nfv.git diff --git a/src/ceph/src/tracing/eventtrace.tp b/src/ceph/src/tracing/eventtrace.tp deleted file mode 100644 index f28ded1..0000000 --- a/src/ceph/src/tracing/eventtrace.tp +++ /dev/null @@ -1,61 +0,0 @@ -#include "include/int_types.h" - -TRACEPOINT_EVENT(eventtrace, func_enter, - TP_ARGS( - const char*, file, - const char*, func, - uint32_t, line), - TP_FIELDS( - ctf_string(file, file) - ctf_string(func, func) - ctf_integer(uint32_t, line, line) - ) -) - -TRACEPOINT_EVENT(eventtrace, func_exit, - TP_ARGS( - const char*, file, - const char*, func), - TP_FIELDS( - ctf_string(file, file) - ctf_string(func, func) - ) -) - -TRACEPOINT_EVENT(eventtrace, oid_event, - TP_ARGS( - const char*, oid, - const char*, event, - const char*, context, - const char*, file, - const char*, func, - uint32_t, line), - TP_FIELDS( - ctf_string(oid, oid) - ctf_string(event, event) - ctf_string(context, context) - ctf_string(file, file) - ctf_string(func, func) - ctf_integer(uint32_t, line, line) - ) -) - -TRACEPOINT_EVENT(eventtrace, oid_elapsed, - TP_ARGS( - const char*, oid, - const char*, event, - const char*, context, - double, elapsed, - const char*, file, - const char*, func, - uint32_t, line), - TP_FIELDS( - ctf_string(oid, oid) - ctf_string(event, event) - ctf_string(context, context) - ctf_float(double, elapsed, elapsed) - ctf_string(file, file) - ctf_string(func, func) - ctf_integer(uint32_t, line, line) - ) -)