Searched refs:vruntime (Results 1 – 8 of 8) sorted by relevance
/linux-4.4.14/include/trace/events/ |
D | sched.h | 382 TP_PROTO(struct task_struct *tsk, u64 runtime, u64 vruntime), 384 TP_ARGS(tsk, __perf_count(runtime), vruntime), 390 __field( u64, vruntime ) 397 __entry->vruntime = vruntime; 403 (unsigned long long)__entry->vruntime) 407 TP_PROTO(struct task_struct *tsk, u64 runtime, u64 vruntime), 408 TP_ARGS(tsk, runtime, vruntime));
|
/linux-4.4.14/Documentation/scheduler/ |
D | sched-design-CFS.txt | 32 p->se.vruntime (nanosec-unit) value. This way, it's possible to accurately 36 p->se.vruntime value --- i.e., tasks would execute simultaneously and no task 39 CFS's task picking logic is based on this p->se.vruntime value and it is thus 40 very simple: it always tries to run the task with the smallest p->se.vruntime 59 increasing value tracking the smallest vruntime among all tasks in the 69 p->se.vruntime key. CFS picks the "leftmost" task from this tree and sticks to it. 78 p->se.vruntime. Once p->se.vruntime gets high enough so that another task
|
/linux-4.4.14/kernel/sched/ |
D | fair.c | 433 static inline u64 max_vruntime(u64 max_vruntime, u64 vruntime) in max_vruntime() argument 435 s64 delta = (s64)(vruntime - max_vruntime); in max_vruntime() 437 max_vruntime = vruntime; in max_vruntime() 442 static inline u64 min_vruntime(u64 min_vruntime, u64 vruntime) in min_vruntime() argument 444 s64 delta = (s64)(vruntime - min_vruntime); in min_vruntime() 446 min_vruntime = vruntime; in min_vruntime() 454 return (s64)(a->vruntime - b->vruntime) < 0; in entity_before() 459 u64 vruntime = cfs_rq->min_vruntime; in update_min_vruntime() local 462 vruntime = cfs_rq->curr->vruntime; in update_min_vruntime() 470 vruntime = se->vruntime; in update_min_vruntime() [all …]
|
D | debug.c | 75 PN(se->vruntime); in print_cfs_group_stats() 121 SPLIT_NS(p->se.vruntime), in print_task() 184 MIN_vruntime = (__pick_first_entity(cfs_rq))->vruntime; in print_cfs_rq() 187 max_vruntime = last->vruntime; in print_cfs_rq() 566 PN(se.vruntime); in proc_sched_show_task()
|
D | core.c | 2109 p->se.vruntime = 0; in __sched_fork()
|
/linux-4.4.14/tools/perf/scripts/python/ |
D | sched-migration.py | 372 common_callchain, comm, pid, runtime, vruntime): argument
|
/linux-4.4.14/Documentation/timers/ |
D | NO_HZ.txt | 344 load, maintaining sched average, computing CFS entity vruntime,
|
/linux-4.4.14/include/linux/ |
D | sched.h | 1254 u64 vruntime; member
|