Linux 内核实时调度类 ② ( 实时调度实体 sched_rt_entity 源码分析 | run_listtimeoutwatchdog_stamptime_slice 字段 )

Posted 韩曙亮

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux 内核实时调度类 ② ( 实时调度实体 sched_rt_entity 源码分析 | run_listtimeoutwatchdog_stamptime_slice 字段 )相关的知识,希望对你有一定的参考价值。

文章目录





一、sched_rt_entity 源码分析



上一篇博客 【Linux 内核】实时调度类 ① ( 进程分类 | 实时进程、普通进程 | Linux 内核 SCHED_FIFO、SCHED_RR 调度策略 | 实时调度实体 sched_rt_entity ) 引入了 实时调度实体 sched_rt_entity 结构体源码 , 在 Linux 内核源码的 linux-5.6.18\\include\\linux\\sched.h 头文件中 ;

下面开始分析该 实时调度实体 sched_rt_entity 结构体源码 ;


sched_rt_entity 结构体 表示 " 实时调度实体 " 类型 ;


1、run_list 字段


sched_rt_entity 结构体的 run_list 字段 , 是用于将 " 实时调度实体 " 加入到 优先级队列 中的 ;

struct list_head		run_list;

2、timeout 字段


sched_rt_entity 结构体的 timeout 字段 , 用于 设置 调度 超时时间 ;

unsigned long			timeout;

3、watchdog_stamp 字段


sched_rt_entity 结构体的 watchdog_stamp 字段 , 用于 记录 jiffies 的值 ;

unsigned long			watchdog_stamp;

4、time_slice 字段


sched_rt_entity 结构体的 time_slice 字段 , 表示 时间片 ;

unsigned int			time_slice;

5、back 字段


sched_rt_entity 结构体的 back 字段 , 用于 由上到下 连接 " 实时调度实体 " ;

struct sched_rt_entity		*back;

6、parent 字段


sched_rt_entity 结构体的 parent 字段 , 指向 父类 " 实时调度实体 " ;

struct sched_rt_entity		*parent;

7、rt_rq 字段


sched_rt_entity 结构体的 rt_rq 字段 , 表示 " 实时调度实体 " 所属的 " 实时运行队列 " ;

	/* rq on which this entity is (to be) queued: */
	struct rt_rq			*rt_rq;

8、my_q 字段


sched_rt_entity 结构体的 my_q 字段 , 表示 " 实时调度实体 " 所拥有的 " 实时运行队列 " , 用于管理 " 子任务 " ;

	/* rq "owned" by this entity/group: */
	struct rt_rq			*my_q;




二、总结



实时调度实体 sched_rt_entity 源码注释 :

struct sched_rt_entity 
	struct list_head		run_list; 		// 用于将 " 实时调度实体 " 加入到 优先级队列 中的
	unsigned long			timeout; 		// 用于 设置 调度 超时时间
	unsigned long			watchdog_stamp;	// 用于 记录 jiffies 的值
	unsigned int			time_slice;		// 时间片
	unsigned short			on_rq;			
	unsigned short			on_list;

	struct sched_rt_entity		*back;		// 用于 由上到下 连接 " 实时调度实体 "
#ifdef CONFIG_RT_GROUP_SCHED
	struct sched_rt_entity		*parent;	// 指向 父类 " 实时调度实体 "
	/* rq on which this entity is (to be) queued: */
	struct rt_rq			*rt_rq;			// 表示 " 实时调度实体 " 所属的 " 实时运行队列 " 
	/* rq "owned" by this entity/group: */
	struct rt_rq			*my_q; // 表示 " 实时调度实体 " 所拥有的 " 实时运行队列 " , 用于管理 " 子任务 "
#endif
 __randomize_layout;

以上是关于Linux 内核实时调度类 ② ( 实时调度实体 sched_rt_entity 源码分析 | run_listtimeoutwatchdog_stamptime_slice 字段 )的主要内容,如果未能解决你的问题,请参考以下文章

Linux 内核实时调度类 ④ ( 实时运行队列 rt_rq 源码分析 | 实时运行队列 rt_rq 结构体字段分析 | activert_nr_runningcurrnext 字段 )

Linux 内核实时调度类 ③ ( 实时调度类 rt_sched_class 源码 | 调度类 sched_class 源码 )

Linux 内核实时调度类 ⑤ ( 实时调度类 rt_sched_class 源码分析 | 结构体字段及函数指针分析 )

Linux 内核实时调度类 ⑦ ( 实时调度类核心函数源码分析 | dequeue_task_rt 函数 | 从执行队列中移除进程 )

Linux 内核线程调度示例一 ② ( 获取指定调度策略的最大和最小优先级 | 代码示例 )

Linux 内核调度器 ⑦ ( 调度器类型 | 停机调度类 stop_sched_class | 限期调度类 dl_sched_class | 实时调度类 | 公平调度类 | 空闲调度类 )