Searched refs:min_vruntime (Results 1 – 5 of 5) sorted by relevance
58 CFS同样维护了rq->cfs.min_vruntime值,它是单调递增的,跟踪运行队列中的所有任务的最小59 虚拟运行时间值。系统做的全部工作是:使用min_vruntime跟踪,然后用它的值将新激活的调度
583 s64 MIN_vruntime = -1, min_vruntime, max_vruntime = -1, in print_cfs_rq() local605 min_vruntime = cfs_rq->min_vruntime; in print_cfs_rq()606 rq0_min_vruntime = cpu_rq(0)->cfs.min_vruntime; in print_cfs_rq()611 SPLIT_NS(min_vruntime)); in print_cfs_rq()617 spread0 = min_vruntime - rq0_min_vruntime; in print_cfs_rq()
574 static inline u64 min_vruntime(u64 min_vruntime, u64 vruntime) in min_vruntime() argument576 s64 delta = (s64)(vruntime - min_vruntime); in min_vruntime()578 min_vruntime = vruntime; in min_vruntime()580 return min_vruntime; in min_vruntime()597 u64 vruntime = cfs_rq->min_vruntime; in update_min_vruntime()612 vruntime = min_vruntime(vruntime, se->vruntime); in update_min_vruntime()616 u64_u32_store(cfs_rq->min_vruntime, in update_min_vruntime()617 max_vruntime(cfs_rq->min_vruntime, vruntime)); in update_min_vruntime()4502 s64 d = se->vruntime - cfs_rq->min_vruntime; in check_spread()4515 u64 vruntime = cfs_rq->min_vruntime; in place_entity()[all …]
558 u64 min_vruntime; member
61 CFS also maintains the rq->cfs.min_vruntime value, which is a monotonic64 min_vruntime; that value is used to place newly activated entities on the left