X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=probes%2Flttng-ftrace.c;h=ec086902892d644fcee8c57f70d78231cc4944f2;hb=2dccf128a59b5353176277d01da4eabcc2086211;hp=5b4cf2e7e153c0318e2ca8d485489bd46340e7aa;hpb=8a58609868bb8e20dc93478714805e8c3126bd9b;p=lttng-modules.git diff --git a/probes/lttng-ftrace.c b/probes/lttng-ftrace.c index 5b4cf2e7..ec086902 100644 --- a/probes/lttng-ftrace.c +++ b/probes/lttng-ftrace.c @@ -92,6 +92,7 @@ int lttng_create_ftrace_event(const char *name, struct ltt_event *event) fields[1].type.u.basic.integer.base = 16; fields[1].type.u.basic.integer.encoding = lttng_encode_none; + desc->owner = THIS_MODULE; event->desc = desc; return 0; @@ -145,12 +146,17 @@ void lttng_ftrace_unregister(struct ltt_event *event) { wrapper_unregister_ftrace_function_probe(event->u.ftrace.symbol_name, <tng_ftrace_ops, event); +} +EXPORT_SYMBOL_GPL(lttng_ftrace_unregister); + +void lttng_ftrace_destroy_private(struct ltt_event *event) +{ kfree(event->u.ftrace.symbol_name); kfree(event->desc->fields); kfree(event->desc->name); kfree(event->desc); } -EXPORT_SYMBOL_GPL(lttng_ftrace_unregister); +EXPORT_SYMBOL_GPL(lttng_ftrace_destroy_private); int lttng_ftrace_init(void) {