X-Git-Url: http://git.lttng.org/?a=blobdiff_plain;f=probes%2Flttng-ftrace.c;h=9ec326ee56d992ab57101cc3d424d93f18fb3278;hb=6fddace8d3387e9c95d1f9a1c1454cf38a89f736;hp=d8523198e08db3edabe4276a1eb734ff7b1ce012;hpb=e064edf1436e3d6edbab9d6954585b444c8743ed;p=lttng-modules.git diff --git a/probes/lttng-ftrace.c b/probes/lttng-ftrace.c index d8523198..9ec326ee 100644 --- a/probes/lttng-ftrace.c +++ b/probes/lttng-ftrace.c @@ -39,6 +39,45 @@ #include #include +#if (LINUX_VERSION_CODE >= KERNEL_VERSION(4,12,0)) +static +void lttng_ftrace_handler(unsigned long ip, unsigned long parent_ip, + struct trace_array *tr, struct ftrace_probe_ops *ops, + void *data) +{ + struct lttng_event *event = data; + struct lttng_probe_ctx lttng_probe_ctx = { + .event = event, + .interruptible = !irqs_disabled(), + }; + struct lttng_channel *chan = event->chan; + struct lib_ring_buffer_ctx ctx; + struct { + unsigned long ip; + unsigned long parent_ip; + } payload; + int ret; + + if (unlikely(!ACCESS_ONCE(chan->session->active))) + return; + if (unlikely(!ACCESS_ONCE(chan->enabled))) + return; + if (unlikely(!ACCESS_ONCE(event->enabled))) + return; + + lib_ring_buffer_ctx_init(&ctx, chan->chan, <tng_probe_ctx, + sizeof(payload), lttng_alignof(payload), -1); + ret = chan->ops->event_reserve(&ctx, event->id); + if (ret < 0) + return; + payload.ip = ip; + payload.parent_ip = parent_ip; + lib_ring_buffer_align_ctx(&ctx, lttng_alignof(payload)); + chan->ops->event_write(&ctx, &payload, sizeof(payload)); + chan->ops->event_commit(&ctx); + return; +} +#else static void lttng_ftrace_handler(unsigned long ip, unsigned long parent_ip, void **data) { @@ -74,6 +113,7 @@ void lttng_ftrace_handler(unsigned long ip, unsigned long parent_ip, void **data chan->ops->event_commit(&ctx); return; } +#endif /* * Create event description