Searched refs:overrun (Results 1 – 8 of 8) sorted by relevance
/kernel/time/ |
D | alarmtimer.c | 443 u64 overrun = 1; in alarm_forward() local 454 overrun = ktime_divns(delta, incr); in alarm_forward() 457 incr*overrun); in alarm_forward() 460 return overrun; in alarm_forward() 465 overrun++; in alarm_forward() 469 return overrun; in alarm_forward()
|
D | posix-timers.c | 780 int overrun; in SYSCALL_DEFINE1() local 787 overrun = timer_overrun_to_int(timr, 0); in SYSCALL_DEFINE1() 790 return overrun; in SYSCALL_DEFINE1()
|
/kernel/trace/ |
D | ring_buffer.c | 479 local_t overrun; member 1987 local_add(page_entries, &cpu_buffer->overrun); in rb_remove_pages() 2478 local_add(entries, &cpu_buffer->overrun); in rb_handle_head_page() 4128 (local_read(&cpu_buffer->overrun) + cpu_buffer->read); in rb_num_of_entries() 4217 ret = local_read(&cpu_buffer->overrun); in ring_buffer_overrun_cpu() 4325 overruns += local_read(&cpu_buffer->overrun); in ring_buffer_overruns() 4539 unsigned long overrun; in rb_swap_reader_page_ext() local 4584 overrun = footer->stats.overrun; in rb_swap_reader_page_ext() 4585 if (overrun != cpu_buffer->last_overrun) { in rb_swap_reader_page_ext() 4586 cpu_buffer->lost_events = overrun - cpu_buffer->last_overrun; in rb_swap_reader_page_ext() [all …]
|
D | trace_entries.h | 97 __field_packed( unsigned int, ret, overrun )
|
D | fgraph.c | 204 trace->overrun = atomic_read(¤t->trace_overrun); in ftrace_pop_return_trace()
|
D | trace_functions_graph.c | 46 { TRACER_OPT(funcgraph-overrun, TRACE_GRAPH_PRINT_OVERRUN) }, 959 trace->overrun); in print_graph_return()
|
/kernel/sched/ |
D | rt.c | 13 static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun); 77 int overrun; in sched_rt_period_timer() local 81 overrun = hrtimer_forward_now(timer, rt_b->rt_period); in sched_rt_period_timer() 82 if (!overrun) in sched_rt_period_timer() 86 idle = do_sched_rt_period_timer(rt_b, overrun); in sched_rt_period_timer() 907 static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun) in do_sched_rt_period_timer() argument 955 rt_rq->rt_time -= min(rt_rq->rt_time, overrun*runtime); in do_sched_rt_period_timer()
|
D | fair.c | 5579 static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun, unsigned long flags) in do_sched_cfs_period_timer() argument 5588 cfs_b->nr_periods += overrun; in do_sched_cfs_period_timer() 5607 cfs_b->nr_throttled += overrun; in do_sched_cfs_period_timer() 5825 int overrun; in sched_cfs_period_timer() local 5831 overrun = hrtimer_forward_now(timer, cfs_b->period); in sched_cfs_period_timer() 5832 if (!overrun) in sched_cfs_period_timer() 5835 idle = do_sched_cfs_period_timer(cfs_b, overrun, flags); in sched_cfs_period_timer()
|