1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
#include "tracing/tracing-common.h"
#include "include/int_types.h"
TRACEPOINT_EVENT(rgw_op, before_data_transfer,
TP_ARGS(
const char*, req_id),
TP_FIELDS(
ctf_string(req_id, req_id)
)
)
TRACEPOINT_EVENT(rgw_op, after_data_transfer,
TP_ARGS(
const char*, req_id,
long, ofs),
TP_FIELDS(
ctf_string(req_id, req_id)
ctf_integer(long, ofs, ofs)
)
)
TRACEPOINT_EVENT(rgw_op, processor_complete_enter,
TP_ARGS(
const char*, req_id),
TP_FIELDS(
ctf_string(req_id, req_id)
)
)
TRACEPOINT_EVENT(rgw_op, processor_complete_exit,
TP_ARGS(
const char*, req_id),
TP_FIELDS(
ctf_string(req_id, req_id)
)
)
|