struct sched_entity { /* For load-balancing: */ struct load_weight load; struct rb_node run_node; struct list_head group_node; unsigned int on_rq; u64 exec_start; u64 sum_exec_runtime; u64 vruntime; u64 prev_sum_exec_runtime; u64 nr_migrations; struct sched_statistics statistics; #ifdef CONFIG_FAIR_GROUP_SCHED int depth; struct sched_entity *parent; /* rq on which this entity is (to be) queued: */ struct cfs_rq *cfs_rq; /* rq "owned" by this entity/group: */ struct cfs_rq *my_q; /* cached value of my_q->h_nr_running */ unsigned long runnable_weight; #endif #ifdef CONFIG_SMP /* * Per entity load average tracking. * * Put into separate cache line so it does not * collide with read-mostly values above. */ struct sched_avg avg; #endif };
时间: 2024-04-06 20:34:09 浏览: 104
这是Linux内核中的sched_entity结构体定义,用于描述进程或线程在CFS调度策略下的状态和属性。下面是该结构体中各个成员的含义:
1. load:表示进程的权重,用于在CFS调度器中实现公平调度。
2. run_node:表示调度实体在进程调度队列中的位置,用于在进程调度队列中进行快速的查找和插入操作。
3. group_node:表示调度实体在调度组中的位置,用于在调度组中进行快速的查找和插入操作。
4. on_rq:表示调度实体是否在进程调度队列中。
5. exec_start:表示调度实体上一次开始执行的时间。
6. sum_exec_runtime:表示调度实体在CPU上的累计执行时间。
7. vruntime:表示调度实体在虚拟运行时间上的位置,用于在CFS调度器中实现公平调度。
8. prev_sum_exec_runtime:表示调度实体上一次进入睡眠状态前的累计执行时间。
9. nr_migrations:表示调度实体在不同CPU之间迁移的次数。
10. statistics:用于统计调度实体的运行情况,包括调度次数、睡眠次数等。
11. depth:表示调度实体所在的调度组的层数。
12. parent:表示调度实体所在的调度组的父调度实体。
13. cfs_rq:表示调度实体所在的进程调度队列。
14. my_q:表示调度实体所拥有的调度队列。
15. runnable_weight:表示调度实体在CFS调度器中所占的“运行权重”。
16. avg:用于记录调度实体的负载均衡信息,包括最近一段时间内的平均负载等。
这些成员共同描述了调度实体在CFS调度策略下的状态和属性,包括调度实体的位置、运行时间、权重等,是进程在调度器中进行调度决策的重要依据。
阅读全文