Steven Rostedt | 0a1c49d | 2009-09-12 19:17:15 -0400 | [diff] [blame^] | 1 | /* |
| 2 | * This file defines the trace event structures that go into the ring |
| 3 | * buffer directly. They are created via macros so that changes for them |
| 4 | * appear in the format file. Using macros will automate this process. |
| 5 | * |
| 6 | * The macro used to create a ftrace data structure is: |
| 7 | * |
| 8 | * FTRACE_ENTRY( name, struct_name, id, structure, print ) |
| 9 | * |
| 10 | * @name: the name used the event name, as well as the name of |
| 11 | * the directory that holds the format file. |
| 12 | * |
| 13 | * @struct_name: the name of the structure that is created. |
| 14 | * |
| 15 | * @id: The event identifier that is used to detect what event |
| 16 | * this is from the ring buffer. |
| 17 | * |
| 18 | * @structure: the structure layout |
| 19 | * |
| 20 | * - __field( type, item ) |
| 21 | * This is equivalent to declaring |
| 22 | * type item; |
| 23 | * in the structure. |
| 24 | * - __array( type, item, size ) |
| 25 | * This is equivalent to declaring |
| 26 | * type item[size]; |
| 27 | * in the structure. |
| 28 | * |
| 29 | * @print: the print format shown to users in the format file. |
| 30 | */ |
| 31 | |
| 32 | /* |
| 33 | * Function trace entry - function address and parent function addres: |
| 34 | */ |
| 35 | FTRACE_ENTRY(function, ftrace_entry, |
| 36 | |
| 37 | TRACE_FN, |
| 38 | |
| 39 | F_STRUCT( |
| 40 | __field( unsigned long, ip ) |
| 41 | __field( unsigned long, parent_ip ) |
| 42 | ), |
| 43 | |
| 44 | F_printk(" %lx <-- %lx", __entry->ip, __entry->parent_ip) |
| 45 | ); |
| 46 | |
| 47 | /* Function call entry */ |
| 48 | FTRACE_ENTRY(funcgraph_entry, ftrace_graph_ent_entry, |
| 49 | |
| 50 | TRACE_GRAPH_ENT, |
| 51 | |
| 52 | F_STRUCT( |
| 53 | __field( struct ftrace_graph_ent, graph_ent ) |
| 54 | ), |
| 55 | |
| 56 | F_printk("--> %lx (%d)", __entry->graph_ent.func, __entry->depth) |
| 57 | ); |
| 58 | |
| 59 | /* Function return entry */ |
| 60 | FTRACE_ENTRY(funcgraph_exit, ftrace_graph_ret_entry, |
| 61 | |
| 62 | TRACE_GRAPH_RET, |
| 63 | |
| 64 | F_STRUCT( |
| 65 | __field( struct ftrace_graph_ret, ret ) |
| 66 | ), |
| 67 | |
| 68 | F_printk("<-- %lx (%d) (start: %llx end: %llx) over: %d", |
| 69 | __entry->func, __entry->depth, |
| 70 | __entry->calltime, __entry->rettim, |
| 71 | __entrty->depth) |
| 72 | ); |
| 73 | |
| 74 | /* |
| 75 | * Context switch trace entry - which task (and prio) we switched from/to: |
| 76 | * |
| 77 | * This is used for both wakeup and context switches. We only want |
| 78 | * to create one structure, but we need two outputs for it. |
| 79 | */ |
| 80 | #define FTRACE_CTX_FIELDS \ |
| 81 | __field( unsigned int, prev_pid ) \ |
| 82 | __field( unsigned char, prev_prio ) \ |
| 83 | __field( unsigned char, prev_state ) \ |
| 84 | __field( unsigned int, next_pid ) \ |
| 85 | __field( unsigned char, next_prio ) \ |
| 86 | __field( unsigned char, next_state ) \ |
| 87 | __field( unsigned int, next_cpu ) |
| 88 | |
| 89 | #if 0 |
| 90 | FTRACE_ENTRY_STRUCT_ONLY(ctx_switch_entry, |
| 91 | |
| 92 | F_STRUCT( |
| 93 | FTRACE_CTX_FIELDS |
| 94 | ) |
| 95 | ); |
| 96 | #endif |
| 97 | |
| 98 | FTRACE_ENTRY(context_switch, ctx_switch_entry, |
| 99 | |
| 100 | TRACE_CTX, |
| 101 | |
| 102 | F_STRUCT( |
| 103 | FTRACE_CTX_FIELDS |
| 104 | ), |
| 105 | |
| 106 | F_printk(b"%u:%u:%u ==> %u:%u:%u [%03u]", |
| 107 | __entry->prev_pid, __entry->prev_prio, __entry->prev_state, |
| 108 | __entry->next_pid, __entry->next_prio, __entry->next_state, |
| 109 | __entry->next_cpu |
| 110 | ) |
| 111 | ); |
| 112 | |
| 113 | /* |
| 114 | * FTRACE_ENTRY_DUP only creates the format file, it will not |
| 115 | * create another structure. |
| 116 | */ |
| 117 | FTRACE_ENTRY_DUP(wakeup, ctx_switch_entry, |
| 118 | |
| 119 | TRACE_WAKE, |
| 120 | |
| 121 | F_STRUCT( |
| 122 | FTRACE_CTX_FIELDS |
| 123 | ), |
| 124 | |
| 125 | F_printk("%u:%u:%u ==+ %u:%u:%u [%03u]", |
| 126 | __entry->prev_pid, __entry->prev_prio, __entry->prev_state, |
| 127 | __entry->next_pid, __entry->next_prio, __entry->next_state, |
| 128 | __entry->next_cpu |
| 129 | ) |
| 130 | ); |
| 131 | |
| 132 | /* |
| 133 | * Special (free-form) trace entry: |
| 134 | */ |
| 135 | FTRACE_ENTRY(special, special_entry, |
| 136 | |
| 137 | TRACE_SPECIAL, |
| 138 | |
| 139 | F_STRUCT( |
| 140 | __field( unsigned long, arg1 ) |
| 141 | __field( unsigned long, arg2 ) |
| 142 | __field( unsigned long, arg3 ) |
| 143 | ), |
| 144 | |
| 145 | F_printk("(%08lx) (%08lx) (%08lx)", |
| 146 | __entry->arg1, __entry->arg2, __entry->arg3) |
| 147 | ); |
| 148 | |
| 149 | /* |
| 150 | * Stack-trace entry: |
| 151 | */ |
| 152 | |
| 153 | #define FTRACE_STACK_ENTRIES 8 |
| 154 | |
| 155 | FTRACE_ENTRY(kernel_stack, stack_entry, |
| 156 | |
| 157 | TRACE_STACK, |
| 158 | |
| 159 | F_STRUCT( |
| 160 | __array( unsigned long, caller, FTRACE_STACK_ENTRIES ) |
| 161 | ), |
| 162 | |
| 163 | F_printk("\t=> (%08lx)\n\t=> (%08lx)\n\t=> (%08lx)\n\t=> (%08lx)\n" |
| 164 | "\t=> (%08lx)\n\t=> (%08lx)\n\t=> (%08lx)\n\t=> (%08lx)\n", |
| 165 | __entry->caller[0], __entry->caller[1], __entry->caller[2], |
| 166 | __entry->caller[3], __entry->caller[4], __entry->caller[5], |
| 167 | __entry->caller[6], __entry->caller[7]) |
| 168 | ); |
| 169 | |
| 170 | FTRACE_ENTRY(user_stack, userstack_entry, |
| 171 | |
| 172 | TRACE_USER_STACK, |
| 173 | |
| 174 | F_STRUCT( |
| 175 | __field( unsigned int, tgid ) |
| 176 | __array( unsigned long, caller, FTRACE_STACK_ENTRIES ) |
| 177 | ), |
| 178 | |
| 179 | F_printk("\t=> (%08lx)\n\t=> (%08lx)\n\t=> (%08lx)\n\t=> (%08lx)\n" |
| 180 | "\t=> (%08lx)\n\t=> (%08lx)\n\t=> (%08lx)\n\t=> (%08lx)\n", |
| 181 | __entry->caller[0], __entry->caller[1], __entry->caller[2], |
| 182 | __entry->caller[3], __entry->caller[4], __entry->caller[5], |
| 183 | __entry->caller[6], __entry->caller[7]) |
| 184 | ); |
| 185 | |
| 186 | /* |
| 187 | * trace_printk entry: |
| 188 | */ |
| 189 | FTRACE_ENTRY(bprint, bprint_entry, |
| 190 | |
| 191 | TRACE_BPRINT, |
| 192 | |
| 193 | F_STRUCT( |
| 194 | __field( unsigned long, ip ) |
| 195 | __field( const char *, fmt ) |
| 196 | __dynamic_array( u32, buf ) |
| 197 | ), |
| 198 | |
| 199 | F_printk("%08lx fmt:%p", |
| 200 | __entry->ip, __entry->fmt) |
| 201 | ); |
| 202 | |
| 203 | FTRACE_ENTRY(print, print_entry, |
| 204 | |
| 205 | TRACE_PRINT, |
| 206 | |
| 207 | F_STRUCT( |
| 208 | __field( unsigned long, ip ) |
| 209 | __dynamic_array( char, buf ) |
| 210 | ), |
| 211 | |
| 212 | F_printk("%08lx %s", |
| 213 | __entry->ip, __entry->buf) |
| 214 | ); |
| 215 | |
| 216 | FTRACE_ENTRY(mmiotrace_rw, trace_mmiotrace_rw, |
| 217 | |
| 218 | TRACE_MMIO_RW, |
| 219 | |
| 220 | F_STRUCT( |
| 221 | __field( struct mmiotrace_rw, rw ) |
| 222 | ), |
| 223 | |
| 224 | F_printk("%lx %lx %lx %d %lx %lx", |
| 225 | __entry->phs, __entry->value, __entry->pc, |
| 226 | __entry->map_id, __entry->opcode, __entry->width) |
| 227 | ); |
| 228 | |
| 229 | FTRACE_ENTRY(mmiotrace_map, trace_mmiotrace_map, |
| 230 | |
| 231 | TRACE_MMIO_MAP, |
| 232 | |
| 233 | F_STRUCT( |
| 234 | __field( struct mmiotrace_map, map ) |
| 235 | ), |
| 236 | |
| 237 | F_printk("%lx %lx %lx %d %lx", |
| 238 | __entry->phs, __entry->virt, __entry->len, |
| 239 | __entry->map_id, __entry->opcode) |
| 240 | ); |
| 241 | |
| 242 | FTRACE_ENTRY(boot_call, trace_boot_call, |
| 243 | |
| 244 | TRACE_BOOT_CALL, |
| 245 | |
| 246 | F_STRUCT( |
| 247 | __field( struct boot_trace_call, boot_call ) |
| 248 | ), |
| 249 | |
| 250 | F_printk("%d %s", __entry->caller, __entry->func) |
| 251 | ); |
| 252 | |
| 253 | FTRACE_ENTRY(boot_ret, trace_boot_ret, |
| 254 | |
| 255 | TRACE_BOOT_RET, |
| 256 | |
| 257 | F_STRUCT( |
| 258 | __field( struct boot_trace_ret, boot_ret ) |
| 259 | ), |
| 260 | |
| 261 | F_printk("%s %d %lx", |
| 262 | __entry->func, __entry->result, __entry->duration) |
| 263 | ); |
| 264 | |
| 265 | #define TRACE_FUNC_SIZE 30 |
| 266 | #define TRACE_FILE_SIZE 20 |
| 267 | |
| 268 | FTRACE_ENTRY(branch, trace_branch, |
| 269 | |
| 270 | TRACE_BRANCH, |
| 271 | |
| 272 | F_STRUCT( |
| 273 | __field( unsigned int, line ) |
| 274 | __array( char, func, TRACE_FUNC_SIZE+1 ) |
| 275 | __array( char, file, TRACE_FILE_SIZE+1 ) |
| 276 | __field( char, correct ) |
| 277 | ), |
| 278 | |
| 279 | F_printk("%u:%s:%s (%u)", |
| 280 | __entry->line, |
| 281 | __entry->func, __entry->file, __entry->correct) |
| 282 | ); |
| 283 | |
| 284 | FTRACE_ENTRY(hw_branch, hw_branch_entry, |
| 285 | |
| 286 | TRACE_HW_BRANCHES, |
| 287 | |
| 288 | F_STRUCT( |
| 289 | __field( u64, from ) |
| 290 | __field( u64, to ) |
| 291 | ), |
| 292 | |
| 293 | F_printk("from: %llx to: %llx", __entry->from, __entry->to) |
| 294 | ); |
| 295 | |
| 296 | FTRACE_ENTRY(power, trace_power, |
| 297 | |
| 298 | TRACE_POWER, |
| 299 | |
| 300 | F_STRUCT( |
| 301 | __field( struct power_trace, state_data ) |
| 302 | ), |
| 303 | |
| 304 | F_printk("%llx->%llx type:%u state:%u", |
| 305 | __entry->stamp, __entry->end, |
| 306 | __entry->type, __entry->state) |
| 307 | ); |
| 308 | |
| 309 | FTRACE_ENTRY(kmem_alloc, kmemtrace_alloc_entry, |
| 310 | |
| 311 | TRACE_KMEM_ALLOC, |
| 312 | |
| 313 | F_STRUCT( |
| 314 | __field( enum kmemtrace_type_id, type_id ) |
| 315 | __field( unsigned long, call_site ) |
| 316 | __field( const void *, ptr ) |
| 317 | __field( size_t, bytes_req ) |
| 318 | __field( size_t, bytes_alloc ) |
| 319 | __field( gfp_t, gfp_flags ) |
| 320 | __field( int, node ) |
| 321 | ), |
| 322 | |
| 323 | F_printk("type:%u call_site:%lx ptr:%p req:%lu alloc:%lu" |
| 324 | " flags:%x node:%d", |
| 325 | __entry->type_id, __entry->call_site, __entry->ptr, |
| 326 | __entry->bytes_req, __entry->bytes_alloc, |
| 327 | __entry->gfp_flags, __entry->node) |
| 328 | ); |
| 329 | |
| 330 | FTRACE_ENTRY(kmem_free, kmemtrace_free_entry, |
| 331 | |
| 332 | TRACE_KMEM_FREE, |
| 333 | |
| 334 | F_STRUCT( |
| 335 | __field( enum kmemtrace_type_id, type_id ) |
| 336 | __field( unsigned long, call_site ) |
| 337 | __field( const void *, ptr ) |
| 338 | ), |
| 339 | |
| 340 | F_printk("type:%u call_site:%lx ptr:%p", |
| 341 | __entry->type_id, __entry->call_site, __entry->ptr) |
| 342 | ); |