aboutsummaryrefslogtreecommitdiffstats
path: root/samples/tracepoints/Makefile
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2013-01-25 09:46:36 -0500
committerSteven Rostedt <rostedt@goodmis.org>2013-01-25 11:22:11 -0500
commitd75f717e19fe595e7efbf67de195ada8d89dfbbe (patch)
tree26e00856e0595ee4fa5c54fd5c457d62d86c3ff1 /samples/tracepoints/Makefile
parenttracing: Mark tracing_dentry_percpu() static (diff)
downloadlinux-dev-d75f717e19fe595e7efbf67de195ada8d89dfbbe.tar.xz
linux-dev-d75f717e19fe595e7efbf67de195ada8d89dfbbe.zip
tracing: Remove tracepoint sample code
The tracepoint sample code was used to teach developers how to create their own tracepoints. But now the trace_events have been added as a higher level that is used directly by developers today. Only the trace_event code should use the tracepoint interface directly and no new tracepoints should be added. Besides, the example had a race condition with the use of the ->d_name.name dentry field, as pointed out by Al Viro. Best just to remove the code so it wont be used by other developers. Link: http://lkml.kernel.org/r/20130123225523.GY4939@ZenIV.linux.org.uk Cc: Al Viro <viro@ZenIV.linux.org.uk> Acked-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'samples/tracepoints/Makefile')
-rw-r--r--samples/tracepoints/Makefile6
1 files changed, 0 insertions, 6 deletions
diff --git a/samples/tracepoints/Makefile b/samples/tracepoints/Makefile
deleted file mode 100644
index 36479ad9ae14..000000000000
--- a/samples/tracepoints/Makefile
+++ /dev/null
@@ -1,6 +0,0 @@
-# builds the tracepoint example kernel modules;
-# then to use one (as root): insmod <module_name.ko>
-
-obj-$(CONFIG_SAMPLE_TRACEPOINTS) += tracepoint-sample.o
-obj-$(CONFIG_SAMPLE_TRACEPOINTS) += tracepoint-probe-sample.o
-obj-$(CONFIG_SAMPLE_TRACEPOINTS) += tracepoint-probe-sample2.o