其他分享
首页 > 其他分享> > 调度器30—调度相关结构体—struct cfs_rq

调度器30—调度相关结构体—struct cfs_rq

作者:互联网

一、struct cfs_rq

1. cfs_rq->nr_running

enqueue_entity
    account_entity_enqueue
        cfs_rq->nr_running++;

dequeue_entity
    account_entity_dequeue
        cfs_rq->nr_running--;

cfs_rq->nr_running 表示挂在 cfs_rq 上的 runnable+running 的任务个数。由于从cfs_rq上选任务运行时,pick_next_task_fair-->set_next_entity 将任务从cfs_rq上取下的时候调用的是 __dequeue_entity() 没有对计数减1,因此正在 running 的任务也包含在 cfs_rq->nr_running 中。

cfs_rq->h_nr_running 成员记录就绪队列层级上所有调度实体的个数,包含 group se 对应 group cfs_rq 上的调度实体。

标签:rq,dequeue,30,调度,entity,running,nr,cfs,struct
来源: https://www.cnblogs.com/hellokitty2/p/16512925.html