diff options
author | Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> | 2008-11-14 17:47:49 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-11-16 03:01:38 -0500 |
commit | 0dcf8fe5fe5d7279f1c479fa82f1f1ca6f22e814 (patch) | |
tree | 4636a96c0d2ce5efc49a59b916b2c1a37efb7ea4 /Documentation/tracepoints.txt | |
parent | 8fd88d159031bd238dad1d7186a2030b9f9349de (diff) |
tracepoints, docs: marker_synchronize_unregister->tracepoint_synchronize_unregister
Impact: documentation update.
Signed-off-by: Zhaolei <zhaolei@cn.fujitsu.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'Documentation/tracepoints.txt')
-rw-r--r-- | Documentation/tracepoints.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/tracepoints.txt b/Documentation/tracepoints.txt index 93cd90e89cc1..3a1c74384ffb 100644 --- a/Documentation/tracepoints.txt +++ b/Documentation/tracepoints.txt | |||
@@ -71,7 +71,7 @@ Connecting a function (probe) to a tracepoint is done by providing a probe | |||
71 | (function to call) for the specific tracepoint through | 71 | (function to call) for the specific tracepoint through |
72 | register_trace_subsys_eventname(). Removing a probe is done through | 72 | register_trace_subsys_eventname(). Removing a probe is done through |
73 | unregister_trace_subsys_eventname(); it will remove the probe. | 73 | unregister_trace_subsys_eventname(); it will remove the probe. |
74 | marker_synchronize_unregister() must be called before the end of the module exit | 74 | tracepoint_synchronize_unregister() must be called before the end of the module exit |
75 | function to make sure there is no caller left using the probe. This, and the | 75 | function to make sure there is no caller left using the probe. This, and the |
76 | fact that preemption is disabled around the probe call, make sure that probe | 76 | fact that preemption is disabled around the probe call, make sure that probe |
77 | removal and module unload are safe. See the "Probe example" section below for a | 77 | removal and module unload are safe. See the "Probe example" section below for a |