Lines Matching defs:dtl
43 #include <asm/dtl.h>
86 struct dtl_entry *dtl;
92 dtl = kmem_cache_alloc(dtl_cache, GFP_KERNEL);
93 if (!dtl) {
103 pp->dispatch_log = dtl;
104 pp->dispatch_log_end = dtl + N_DISPATCH_LOG;
105 pp->dtl_curr = dtl;
118 struct dtl_entry *dtl;
122 dtl = pp->dispatch_log;
123 if (dtl && dtl_mask) {
125 pp->dtl_curr = dtl;
129 dtl->enqueue_to_dispatch_time = cpu_to_be32(DISPATCH_LOG_BYTES);
130 ret = register_dtl(hwcpu, __pa(dtl));
361 struct dtl_entry *dtl = local_paca->dispatch_log + (i % N_DISPATCH_LOG);
380 dtle = *dtl;
388 dtl = local_paca->dispatch_log + (i % N_DISPATCH_LOG);
393 ++dtl;
394 if (dtl == dtl_end)
395 dtl = local_paca->dispatch_log;
470 /* Setup dtl buffers and register those */
473 state = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "powerpc/dtl:online",