X-Git-Url: https://git.lttng.org/?a=blobdiff_plain;f=instrumentation%2Fevents%2Flttng-module%2Frpc.h;h=fd2c456633b7f6730fd3f97b44508c833b6dfffe;hb=fa91fcac4c680df04d6860ff365976d8ad08559b;hp=a208b5af56bbfedacf8f23d96de4353ae4c7d185;hpb=43a2a0fa96e8de4c67e5c6af1d2f34e850529fa7;p=lttng-modules.git diff --git a/instrumentation/events/lttng-module/rpc.h b/instrumentation/events/lttng-module/rpc.h index a208b5af..fd2c4566 100644 --- a/instrumentation/events/lttng-module/rpc.h +++ b/instrumentation/events/lttng-module/rpc.h @@ -15,8 +15,8 @@ LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_status, TP_ARGS(task), TP_FIELDS( - ctf_integer(const struct rpc_task *, task, task) - ctf_integer(const struct rpc_clnt *, clnt, task->tk_client) + ctf_integer_hex(const struct rpc_task *, task, task) + ctf_integer_hex(const struct rpc_clnt *, clnt, task->tk_client) ctf_integer(int, status, task->tk_status) ) ) @@ -39,8 +39,8 @@ LTTNG_TRACEPOINT_EVENT(rpc_connect_status, TP_ARGS(task, status), TP_FIELDS( - ctf_integer(const struct rpc_task *, task, task) - ctf_integer(const struct rpc_clnt *, clnt, task->tk_client) + ctf_integer_hex(const struct rpc_task *, task, task) + ctf_integer_hex(const struct rpc_clnt *, clnt, task->tk_client) ctf_integer(int, status, status) ) ) @@ -52,9 +52,9 @@ LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_running, TP_ARGS(clnt, task, action), TP_FIELDS( - ctf_integer(const struct rpc_clnt *, clnt, clnt) - ctf_integer(const struct rpc_task *, task, task) - ctf_integer(const void *, action, action) + ctf_integer_hex(const struct rpc_clnt *, clnt, clnt) + ctf_integer_hex(const struct rpc_task *, task, task) + ctf_integer_hex(const void *, action, action) ctf_integer(unsigned long, runstate, task->tk_runstate) ctf_integer(int, status, task->tk_status) ctf_integer(unsigned short, flags, task->tk_flags) @@ -92,8 +92,8 @@ LTTNG_TRACEPOINT_EVENT_CLASS(rpc_task_queued, TP_ARGS(clnt, task, q), TP_FIELDS( - ctf_integer(const struct rpc_clnt *, clnt, clnt) - ctf_integer(const struct rpc_task *, task, task) + ctf_integer_hex(const struct rpc_clnt *, clnt, clnt) + ctf_integer_hex(const struct rpc_task *, task, task) ctf_integer(unsigned long, timeout, task->tk_timeout) ctf_integer(unsigned long, runstate, task->tk_runstate) ctf_integer(int, status, task->tk_status)