/kernel/debug/kdb/ |
D | kdb_support.c | 748 struct debug_alloc_header *best, *bestprev, *prev, *h; in debug_kmalloc() local 754 h = (struct debug_alloc_header *)(debug_alloc_pool + dah_first); in debug_kmalloc() 756 h->size = sizeof(debug_alloc_pool_aligned) - dah_overhead; in debug_kmalloc() 762 if (h->size >= size && (!best || h->size < best->size)) { in debug_kmalloc() 763 best = h; in debug_kmalloc() 765 if (h->size == size) in debug_kmalloc() 768 if (!h->next) in debug_kmalloc() 770 prev = h; in debug_kmalloc() 771 h = (struct debug_alloc_header *)(debug_alloc_pool + h->next); in debug_kmalloc() 783 h = (struct debug_alloc_header *)(debug_alloc_pool + h_offset); in debug_kmalloc() [all …]
|
/kernel/trace/ |
D | trace_events_filter_test.h | 11 TP_PROTO(int a, int b, int c, int d, int e, int f, int g, int h), 13 TP_ARGS(a, b, c, d, e, f, g, h), 23 __field(int, h) 34 __entry->h = h; 39 __entry->e, __entry->f, __entry->g, __entry->h)
|
D | trace_events_filter.c | 2133 .e = ve, .f = vf, .g = vg, .h = vh }, \
|
/kernel/ |
D | Makefile | 115 $(obj)/configs.o: $(obj)/config_data.h 124 targets += config_data.h 125 $(obj)/config_data.h: $(obj)/config_data.gz FORCE 128 $(obj)/time.o: $(obj)/timeconst.h 134 $(obj)/hz.bc: $(objtree)/include/config/hz.h FORCE 140 targets += timeconst.h 141 $(obj)/timeconst.h: $(obj)/hz.bc $(src)/timeconst.bc FORCE
|
D | .gitignore | 4 config_data.h 6 timeconst.h
|
D | softirq.c | 215 struct softirq_action *h; in __do_softirq() local 243 h = softirq_vec; in __do_softirq() 247 unsigned int vec_nr = h - softirq_vec; in __do_softirq() 253 h->action(h); in __do_softirq() 259 softirq_to_name[vec_nr], h->action, in __do_softirq() 266 h++; in __do_softirq()
|
D | audit_watch.c | 301 int h = audit_hash_ino((u32)ino); in audit_update_watch() local 312 list_add_rcu(&nentry->list, &audit_inode_hash[h]); in audit_update_watch() 415 int h, ret = 0; in audit_add_watch() local 443 h = audit_hash_ino((u32)watch->ino); in audit_add_watch() 444 *list = &audit_inode_hash[h]; in audit_add_watch()
|
D | timeconst.bc | 49 print "#include <linux/param.h>\n" 50 print "#include <linux/types.h>\n\n" 53 print "#error \qkernel/timeconst.h has the wrong HZ value!\q\n"
|
D | auditfilter.c | 802 int h; in audit_find_rule() local 805 h = audit_hash_ino(entry->rule.inode_f->val); in audit_find_rule() 806 *p = list = &audit_inode_hash[h]; in audit_find_rule() 809 for (h = 0; h < AUDIT_INODE_BUCKETS; h++) { in audit_find_rule() 810 list = &audit_inode_hash[h]; in audit_find_rule()
|
D | auditsc.c | 780 int h = audit_hash_ino((u32)n->ino); in audit_filter_inode_name() local 781 struct list_head *list = &audit_inode_hash[h]; in audit_filter_inode_name()
|
D | timer.c | 1367 static void run_timer_softirq(struct softirq_action *h) in run_timer_softirq() argument
|
D | hrtimer.c | 1434 static void run_hrtimer_softirq(struct softirq_action *h) in run_hrtimer_softirq() argument
|
/kernel/irq/ |
D | irqdomain.c | 352 struct irq_domain *h, *found = NULL; in irq_find_host() local 361 list_for_each_entry(h, &irq_domain_list, link) { in irq_find_host() 362 if (h->ops->match) in irq_find_host() 363 rc = h->ops->match(h, node); in irq_find_host() 365 rc = (h->of_node != NULL) && (h->of_node == node); in irq_find_host() 368 found = h; in irq_find_host()
|
/kernel/power/ |
D | Kconfig | 198 functions from <linux/resume-trace.h> as well as the 199 <asm/resume-trace.h> header with a TRACE_RESUME() macro.
|
/kernel/sched/ |
D | fair.c | 5690 static void run_rebalance_domains(struct softirq_action *h) in run_rebalance_domains() argument
|