diff options
Diffstat (limited to 'include/linux/tracepoint.h')
-rw-r--r-- | include/linux/tracepoint.h | 16 |
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 | * * |