X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;ds=sidebyside;f=instrumentation%2Fevents%2Flttng-module%2Flttng-statedump.h;h=e7c528dacfb91e5fea8dbb443b7df9875bffe653;hb=7a4793755ae078a89f409afb9266b4995ab236f9;hp=23690370774aaf4120b08a1a030b71ee4f4761a0;hpb=f127e61ee231d002fb9a7803643a157e06f6d2e2;p=lttng-modules.git diff --git a/instrumentation/events/lttng-module/lttng-statedump.h b/instrumentation/events/lttng-module/lttng-statedump.h index 23690370..e7c528da 100644 --- a/instrumentation/events/lttng-module/lttng-statedump.h +++ b/instrumentation/events/lttng-module/lttng-statedump.h @@ -4,10 +4,18 @@ #if !defined(LTTNG_TRACE_LTTNG_STATEDUMP_H) || defined(TRACE_HEADER_MULTI_READ) #define LTTNG_TRACE_LTTNG_STATEDUMP_H -#include "../../../probes/lttng-tracepoint-event.h" +#include #include #include #include +#include + + +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,19,0)) +#define lttng_proc_inum ns.inum +#else +#define lttng_proc_inum proc_inum +#endif LTTNG_TRACEPOINT_EVENT(lttng_statedump_start, TP_PROTO(struct lttng_session *session), @@ -60,6 +68,10 @@ LTTNG_TRACEPOINT_EVENT(lttng_statedump_process_state, ctf_integer(int, submode, submode) ctf_integer(int, status, status) ctf_integer(int, ns_level, pid_ns ? pid_ns->level : 0) +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(3,8,0)) + ctf_integer(unsigned int, ns_inum, pid_ns ? pid_ns->lttng_proc_inum : 0) +#endif + ctf_integer(unsigned int, cpu, task_cpu(p)) ) ) @@ -129,4 +141,4 @@ LTTNG_TRACEPOINT_EVENT(lttng_statedump_interrupt, #endif /* LTTNG_TRACE_LTTNG_STATEDUMP_H */ /* This part must be outside protection */ -#include "../../../probes/define_trace.h" +#include