aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2009-03-10 14:10:56 -0400
committerSteven Rostedt <srostedt@redhat.com>2009-03-10 14:13:14 -0400
commitef18012b248b47ec9a12c3a83ca5e99782d39c5d (patch)
tree8103b4d14c6b81a6a5ec39cd43e4ca7ffb51625d /include
parent0e3d0f0566f3fcf664782f597070bbc669d78454 (diff)
tracing: remove funky whitespace in the trace code
Impact: clean up There existed a lot of <space><tab>'s in the tracing code. This patch removes them. Signed-off-by: Steven Rostedt <srostedt@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/linux/tracepoint.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/include/linux/tracepoint.h b/include/linux/tracepoint.h
index 119ece224c21..d35a7ee7611f 100644
--- a/include/linux/tracepoint.h
+++ b/include/linux/tracepoint.h
@@ -178,8 +178,8 @@ static inline void tracepoint_synchronize_unregister(void)
178 * * prototype, declare it via TP_PROTO(): 178 * * prototype, declare it via TP_PROTO():
179 * * 179 * *
180 * 180 *
181 * TP_PROTO(struct rq *rq, struct task_struct *prev, 181 * TP_PROTO(struct rq *rq, struct task_struct *prev,
182 * struct task_struct *next), 182 * struct task_struct *next),
183 * 183 *
184 * * 184 * *
185 * * Define the call signature of the 'function'. 185 * * Define the call signature of the 'function'.
@@ -187,7 +187,7 @@ static inline void tracepoint_synchronize_unregister(void)
187 * * TP_PROTO1/TP_PROTO2/TP_PROTO3 ugliness.) 187 * * TP_PROTO1/TP_PROTO2/TP_PROTO3 ugliness.)
188 * * 188 * *
189 * 189 *
190 * TP_ARGS(rq, prev, next), 190 * TP_ARGS(rq, prev, next),
191 * 191 *
192 * * 192 * *
193 * * Fast binary tracing: define the trace record via 193 * * Fast binary tracing: define the trace record via
@@ -229,13 +229,13 @@ static inline void tracepoint_synchronize_unregister(void)
229 * * happens, on an active tracepoint. 229 * * happens, on an active tracepoint.
230 * * 230 * *
231 * 231 *
232 * TP_fast_assign( 232 * TP_fast_assign(
233 * memcpy(__entry->next_comm, next->comm, TASK_COMM_LEN); 233 * memcpy(__entry->next_comm, next->comm, TASK_COMM_LEN);
234 * __entry->prev_pid = prev->pid; 234 * __entry->prev_pid = prev->pid;
235 * __entry->prev_prio = prev->prio; 235 * __entry->prev_prio = prev->prio;
236 * memcpy(__entry->prev_comm, prev->comm, TASK_COMM_LEN); 236 * memcpy(__entry->prev_comm, prev->comm, TASK_COMM_LEN);
237 * __entry->next_pid = next->pid; 237 * __entry->next_pid = next->pid;
238 * __entry->next_prio = next->prio; 238 * __entry->next_prio = next->prio;
239 * ) 239 * )
240 * 240 *
241 * * 241 * *