diff options
author | Stefan Raspl <raspl@linux.vnet.ibm.com> | 2013-11-06 16:18:28 -0500 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2013-12-02 08:47:05 -0500 |
commit | 0899d6ac4677efc6839a4532adcaeb772021f38d (patch) | |
tree | b3d2fa88153f97cca3b671851c7a84c7897ba493 | |
parent | 832919bfcf0cfd75767c68b0c61f7cf48be860a8 (diff) |
documentation: Add links to TRACE_EVENT documentation
documentation: Add links to TRACE_EVENT documentation
Existing tracepoint documentation doesn't mention the popular
TRACE_EVENT
macro. Since an excellent series of articles on proper usage already
exists, respective links are added to the existing documentation.
Signed-off-by: Stefan Raspl <raspl@linux.vnet.ibm.com>
Acked-by: Rob Landley <rob@landley.net>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | Documentation/trace/tracepoints.txt | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Documentation/trace/tracepoints.txt b/Documentation/trace/tracepoints.txt index ac4170dd0f24..6b018b53177a 100644 --- a/Documentation/trace/tracepoints.txt +++ b/Documentation/trace/tracepoints.txt | |||
@@ -114,3 +114,8 @@ core kernel image or in modules. | |||
114 | If the tracepoint has to be used in kernel modules, an | 114 | If the tracepoint has to be used in kernel modules, an |
115 | EXPORT_TRACEPOINT_SYMBOL_GPL() or EXPORT_TRACEPOINT_SYMBOL() can be | 115 | EXPORT_TRACEPOINT_SYMBOL_GPL() or EXPORT_TRACEPOINT_SYMBOL() can be |
116 | used to export the defined tracepoints. | 116 | used to export the defined tracepoints. |
117 | |||
118 | Note: The convenience macro TRACE_EVENT provides an alternative way to | ||
119 | define tracepoints. Check http://lwn.net/Articles/379903, | ||
120 | http://lwn.net/Articles/381064 and http://lwn.net/Articles/383362 | ||
121 | for a series of articles with more details. | ||