mirror of
https://github.com/ceph/ceph
synced 2025-03-05 07:48:55 +00:00
librbd: fix lttng tracing argument mismatch
Signed-off-by: Haomai Wang <haomai@xsky.com>
This commit is contained in:
parent
1da3093543
commit
5cc9ff90f8
@ -507,8 +507,7 @@ TRACEPOINT_EVENT(librbd, invalidate_cache_exit,
|
||||
TRACEPOINT_EVENT(librbd, poll_io_events_enter,
|
||||
TP_ARGS(
|
||||
void*, imagectx,
|
||||
int, numcomp,
|
||||
int, max),
|
||||
int, numcomp),
|
||||
TP_FIELDS(
|
||||
ctf_integer_hex(void*, imagectx, imagectx)
|
||||
ctf_integer(int, numcomp, numcomp)
|
||||
@ -1657,7 +1656,7 @@ TRACEPOINT_EVENT(librbd, set_image_notification_enter,
|
||||
TP_ARGS(
|
||||
void*, imagectx,
|
||||
int, fd,
|
||||
int type),
|
||||
int, type),
|
||||
TP_FIELDS(
|
||||
ctf_integer_hex(void*, imagectx, imagectx)
|
||||
ctf_integer(int, fd, fd)
|
||||
@ -1668,7 +1667,7 @@ TRACEPOINT_EVENT(librbd, set_image_notification_enter,
|
||||
TRACEPOINT_EVENT(librbd, set_image_notification_exit,
|
||||
TP_ARGS(
|
||||
void*, imagectx,
|
||||
int, retval)
|
||||
int, retval),
|
||||
TP_FIELDS(
|
||||
ctf_integer_hex(void*, imagectx, imagectx)
|
||||
ctf_integer(int, retval, retval)
|
||||
|
Loading…
Reference in New Issue
Block a user