X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=ceph%2Fsrc%2Ftracing%2Flibrbd.tp;h=f8c77142a784254f59686992bc3a013ac7709623;hb=31f18b776d001752a193a7cec8bb49033c1a904c;hp=7078390daed9cf4079b6f9346a6d1b4c757c04b6;hpb=40152f1e46a80b3405e5558a442ee632198dfd24;p=ceph.git diff --git a/ceph/src/tracing/librbd.tp b/ceph/src/tracing/librbd.tp index 7078390da..f8c77142a 100644 --- a/ceph/src/tracing/librbd.tp +++ b/ceph/src/tracing/librbd.tp @@ -1934,6 +1934,28 @@ TRACEPOINT_EVENT(librbd, get_stripe_count_exit, ) ) +TRACEPOINT_EVENT(librbd, get_create_timestamp_enter, + TP_ARGS( + void*, imagectx, + const char*, name, + char, read_only), + TP_FIELDS( + ctf_integer_hex(void*, imagectx, imagectx) + ctf_string(name, name) + ctf_integer(char, read_only, read_only) + ) +) + +TRACEPOINT_EVENT(librbd, get_create_timestamp_exit, + TP_ARGS( + int, retval, + struct timespec*, timestamp), + TP_FIELDS( + ctf_integer(int, retval, retval) + ctf_integer(uint64_t, timestamp, timestamp->tv_sec) + ) +) + TRACEPOINT_EVENT(librbd, get_features_enter, TP_ARGS( void*, imagectx,