/kernel/locking/ |
H A D | lockdep.c | 561 int i, depth = curr->lockdep_depth; local 563 if (!depth) { 568 depth, depth > 1 ? "s" : "", curr->comm, task_pid_nr(curr)); 570 for (i = 0; i < depth; i++) { 975 int depth = 0; local 980 depth++; 982 return depth; 1081 print_circular_bug_entry(struct lock_list *target, int depth) argument 1085 printk("\n-> #%u", depth); 1148 print_circular_bug_header(struct lock_list *entry, unsigned int depth, struct held_lock *check_src, struct held_lock *check_tgt) argument 1188 int depth; local 1369 print_lock_class_header(struct lock_class *class, int depth) argument 1401 int depth; local 1920 int depth = curr->lockdep_depth; local 2289 int depth; local 2834 unsigned int depth = curr->lockdep_depth; local 3055 unsigned int depth, id; local 3305 unsigned int depth; local 3368 unsigned int depth; local 3451 unsigned int depth; local 3693 unsigned int depth; local 3745 unsigned int depth; local [all...] |
H A D | rtmutex.c | 418 int ret = 0, depth = 0; local 436 if (++depth > max_lock_depth) { 445 printk(KERN_WARNING "Maximum lock depth %d reached "
|
H A D | lockdep_proc.c | 150 for (i = 0; i < chain->depth; i++) { 338 seq_printf(m, " max locking depth: %11u\n", 341 seq_printf(m, " max bfs queue depth: %11u\n",
|
/kernel/trace/ |
H A D | trace_functions_graph.c | 50 int depth; member in struct:fgraph_cpu_data 121 ftrace_push_return_trace(unsigned long ret, unsigned long func, int *depth, argument 175 *depth = current->curr_ret_stack; 239 trace->depth = index; 329 if ((!(trace->depth || ftrace_graph_addr(trace->func)) || 330 ftrace_graph_ignore_irqs()) || (trace->depth < 0) || 331 (max_depth && trace->depth >= max_depth)) 376 .depth = 0, 380 .depth = 0, 886 * Comments display at + 1 to depth 1031 check_irq_entry(struct trace_iterator *iter, u32 flags, unsigned long addr, int depth) argument 1078 check_irq_return(struct trace_iterator *iter, u32 flags, int depth) argument 1249 int depth = 0; local 1485 int *depth = &(per_cpu_ptr(data->cpu_data, cpu)->depth); local [all...] |
H A D | trace_entries.h | 82 __field_desc( int, graph_ent, depth ) 85 F_printk("--> %lx (%d)", __entry->func, __entry->depth), 101 __field_desc( int, ret, depth ) 105 __entry->func, __entry->depth, 107 __entry->depth),
|
H A D | trace_output.c | 901 field->graph_ent.depth)) 916 SEQ_PUT_HEX_FIELD_RET(s, field->graph_ent.depth); 930 SEQ_PUT_FIELD_RET(s, field->graph_ent.depth); 981 field->ret.depth)); 999 SEQ_PUT_HEX_FIELD_RET(s, field->ret.depth); 1016 SEQ_PUT_FIELD_RET(s, field->ret.depth);
|
H A D | Kconfig | 365 kernel executes, and keeping a maximum stack depth value and
|
H A D | blktrace.c | 864 unsigned int depth, bool explicit) 869 __be64 rpdu = cpu_to_be64(depth); 863 blk_add_trace_unplug(void *ignore, struct request_queue *q, unsigned int depth, bool explicit) argument
|
H A D | ftrace.c | 882 index = trace->depth;
|
/kernel/irq/ |
H A D | pm.c | 22 desc->depth++; 143 desc->depth++;
|
H A D | debug.h | 14 printk("irq %d, desc: %p, depth: %d, count: %d, unhandled: %d\n", 15 irq, desc, desc->depth, desc->irq_count, desc->irqs_unhandled);
|
H A D | chip.c | 179 desc->depth = 0; 195 desc->depth = 1; 740 desc->depth = 1;
|
H A D | irqdesc.c | 87 desc->depth = 1; 247 .depth = 1,
|
H A D | manage.c | 387 if (!desc->depth++) 441 switch (desc->depth) { 456 desc->depth--; 1179 desc->depth = 1;
|
H A D | spurious.c | 422 desc->depth++;
|
/kernel/ |
H A D | kmod.c | 442 * @depth: New value to assign to usermodehelper_disabled. 447 void __usermodehelper_set_disable_depth(enum umh_disable_depth depth) argument 450 usermodehelper_disabled = depth; 457 * @depth: New value to assign to usermodehelper_disabled. 459 * Set usermodehelper_disabled to @depth and wait for running helpers to exit. 461 int __usermodehelper_disable(enum umh_disable_depth depth) argument 465 if (!depth) 469 usermodehelper_disabled = depth;
|
H A D | resource.c | 108 int depth; local 110 for (depth = 0, p = r; depth < MAX_IORES_LEVEL; depth++, p = p->parent) 114 depth * 2, "",
|
/kernel/events/ |
H A D | uprobes.c | 1445 n_utask->depth++; 1532 if (utask->depth >= MAX_URETPROBE_DEPTH) { 1574 utask->depth++; 1799 utask->depth--;
|
/kernel/sched/ |
H A D | fair.c | 352 /* First walk up until both entities are at same depth */ 353 se_depth = (*se)->depth; 354 pse_depth = (*pse)->depth; 4873 int se_depth = se->depth; 4874 int pse_depth = pse->depth; 7653 * Since the real-depth could have been changed (only FAIR 7654 * class maintain depth value), reset depth properly. 7656 se->depth = se->parent ? se->parent->depth [all...] |