/* 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;
时间: 2024-04-06 15:31:14 浏览: 133
在Linux内核中,sched_entity是进程调度器中的一个结构体,用于描述进程的调度实体。其中,cfs_rq是一个指针,表示该进程所在的CFS调度队列。CFS调度器是Linux内核中的一种公平调度算法,用于分配CPU时间片给各个进程。每个CFS调度队列由一个cfs_rq结构体来表示,该结构体中维护了一个红黑树,用于按照进程的优先级进行有序排列。当一个进程被加入CFS调度队列中时,它的sched_entity中的cfs_rq指针就会被设置为该队列的指针。而my_q指针则表示该进程所“拥有”的CFS调度队列,即当该进程创建子进程时,子进程的CFS调度队列就会被设置为该进程所拥有的队列。runnable_weight是一个权重值,表示该进程的可运行状态所占的CPU时间片比例。该值的计算方式和CFS调度算法的实现有关。
相关问题
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 };
这是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调度策略下的状态和属性,包括调度实体的位置、运行时间、权重等,是进程在调度器中进行调度决策的重要依据。
/* Real-Time classes' related field in a runqueue: */ struct rt_rq { struct rt_prio_array active; unsigned int rt_nr_running; unsigned int rr_nr_running; #if defined CONFIG_SMP || defined CONFIG_RT_GROUP_SCHED struct { int curr; /* highest queued rt task prio */ #ifdef CONFIG_SMP int next; /* next highest */ #endif } highest_prio; #endif #ifdef CONFIG_SMP unsigned int rt_nr_migratory; unsigned int rt_nr_total; int overloaded; struct plist_head pushable_tasks; #endif /* CONFIG_SMP */ int rt_queued; int rt_throttled; u64 rt_time; u64 rt_runtime; /* Nests inside the rq lock: */ raw_spinlock_t rt_runtime_lock; #ifdef CONFIG_RT_GROUP_SCHED unsigned int rt_nr_boosted; struct rq *rq; struct task_group *tg; #endif };
这是 Linux 内核中的一个结构体,用于实现实时任务的调度。以下是每个字段的解释:
1. "active" 是一个 rt_prio_array 结构体,用于存储当前正在运行的实时任务。
2. "rt_nr_running" 是一个整数,表示当前正在运行的实时任务的数量。
3. "rr_nr_running" 是一个整数,表示当前正在运行的普通任务(非实时任务)的数量。
4. "highest_prio" 是一个结构体,用于记录当前正在运行的最高优先级的实时任务。
5. "rt_nr_migratory" 是一个整数,表示正在迁移的实时任务的数量。
6. "rt_nr_total" 是一个整数,表示实时任务的总数量。
7. "overloaded" 是一个整数,表示实时任务是否过载。
8. "pushable_tasks" 是一个 plist_head 结构体,用于存储可以被推进运行队列的实时任务。
9. "rt_queued" 是一个整数,表示当前在运行队列中等待运行的实时任务的数量。
10. "rt_throttled" 是一个整数,表示当前被限制运行的实时任务的数量。
11. "rt_time" 是一个 64 位无符号整数,表示实时任务已经运行的总时间。
12. "rt_runtime" 是一个 64 位无符号整数,表示实时任务的最大允许运行时间。
13. "rt_runtime_lock" 是一个 raw_spinlock_t 结构体,用于保护实时任务的运行时间。
14. "rt_nr_boosted" 是一个整数,表示当前被提高优先级的实时任务的数量。
15. "rq" 是一个指针,指向当前运行队列所属的 CPU。
16. "tg" 是一个指针,指向当前运行队列所属的任务组。
阅读全文