Searched refs:overrun (Results 1 - 8 of 8) sorted by relevance

/kernel/time/
H A Dalarmtimer.c406 u64 overrun = 1; local
417 overrun = ktime_divns(delta, incr);
420 incr*overrun);
423 return overrun;
428 overrun++;
432 return overrun;
H A Dposix-timers.c371 * block to us. It's function is to update the overrun entry AND to
472 * later, while we still maintain the overrun
799 * be the overrun of the timer last delivered. At the same time we are
800 * accumulating overruns on the next timer. The overrun is frozen when
804 * to pick up the frozen overrun.
809 int overrun; local
816 overrun = timr->it_overrun_last;
819 return overrun;
/kernel/trace/
H A Dtrace_entries.h100 __field_desc( unsigned long, ret, overrun )
H A Dtrace_functions_graph.c75 { TRACER_OPT(funcgraph-overrun, TRACE_GRAPH_PRINT_OVERRUN) },
238 trace->overrun = atomic_read(&current->trace_overrun);
1229 trace->overrun);
H A Dtrace_output.c980 field->ret.overrun,
998 SEQ_PUT_HEX_FIELD_RET(s, field->ret.overrun);
1015 SEQ_PUT_FIELD_RET(s, field->ret.overrun);
H A Dring_buffer.c476 local_t overrun; member in struct:ring_buffer_per_cpu
1530 * Increment overrun to account for the lost events.
1532 local_add(page_entries, &cpu_buffer->overrun);
2094 local_add(entries, &cpu_buffer->overrun);
3176 (local_read(&cpu_buffer->overrun) + cpu_buffer->read);
3265 ret = local_read(&cpu_buffer->overrun);
3373 overruns += local_read(&cpu_buffer->overrun);
3579 overwrite = local_read(&(cpu_buffer->overrun));
4168 local_set(&cpu_buffer->overrun, 0);
/kernel/sched/
H A Drt.c12 static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun);
21 int overrun; local
26 overrun = hrtimer_forward(timer, now, rt_b->rt_period);
28 if (!overrun)
31 idle = do_sched_rt_period_timer(rt_b, overrun);
796 static int do_sched_rt_period_timer(struct rt_bandwidth *rt_b, int overrun) argument
828 rt_rq->rt_time -= min(rt_rq->rt_time, overrun*runtime);
H A Dfair.c3517 static int do_sched_cfs_period_timer(struct cfs_bandwidth *cfs_b, int overrun) argument
3527 cfs_b->nr_periods += overrun;
3552 cfs_b->nr_throttled += overrun;
3761 int overrun; local
3767 overrun = hrtimer_forward(timer, now, cfs_b->period);
3769 if (!overrun)
3772 idle = do_sched_cfs_period_timer(cfs_b, overrun);

Completed in 140 milliseconds