ceph/src/tracing/pg.tp
Noah Watkins d92e2cafee lttng: add int type definitions
The normal path through #include <lttng/tracepoint.h> doesn't
appear to include int defintions like uint64_t that are used
in Ceph so we add our definitions file.

Signed-off-by: Noah Watkins <noahwatkins@gmail.com>
2014-12-10 18:48:43 -07:00

19 lines
451 B
Plaintext

#include "include/int_types.h"
TRACEPOINT_EVENT(pg, queue_op,
TP_ARGS(
// osd_reqid_t
uint8_t, type,
int64_t, num,
uint64_t, tid,
int32_t, inc,
int, rmw_flags),
TP_FIELDS(
ctf_integer(uint8_t, type, type)
ctf_integer(int64_t, num, num)
ctf_integer(uint64_t, tid, tid)
ctf_integer(int32_t, inc, inc)
ctf_integer(int, rmw_flags, rmw_flags)
)
)