标签:单位 均值 参数 vdi struct 防止 ati 调度 频繁
Linux-5.4
为防止唤醒抢占特性使能的情况下出现频繁的切换导致系统产生在任务切换上产生大量开销, 内核引入sysctl_sched_wakeup_granularity参数。该参数的作用是在唤醒新任务时,只有在当前任务curr的虚拟时间比被唤醒任务p的虚拟时间多于sysctl_sched_wakeup_granularity参数的加权平均值时才会考虑让新唤醒任务p抢占当前任务curr。该参数的值在linux-5.4中默认值为1000000UL,单位为nanoseconds。
【1】wakeup_gran()函数计算一个任务(准确说是调度实体se)sysctl_sched_wakeup_granularity加权平均值,伪代码如下:
static unsigned long wakeup_gran(struct sched_entity *se) { unsigned long gran = sysctl_sched_wakeup_granularity; return calc_delta_fair(gran, se); }
【2】wakeup_preempt_entity()函数根据sysctl_sched_wakeup_granularity加权平均值和虚拟虚拟运行时间确定是否触发唤醒任务p抢占当前任务curr,伪代码如下:
static int wakeup_preempt_entity(struct sched_entity *curr, struct sched_entity *se) { //计算当前任务与被唤醒任务虚拟时间差值 s64 gran, vdiff = curr->vruntime - se->vruntime; if (vdiff <= 0) return -1; gran = wakeup_gran(se); if (vdiff > gran) //只有虚拟时间差大于sysctl_sched_wakeup_granularity加权平均值时才允许触发抢占 return 1; return 0; }
总结一下:这个参数主要是防止"唤醒"流程中的频繁抢占,与调度时钟的"轮转周期"、"时间片"的目标类似。
Linux中的调度参数之sysctl_sched_wakeup_granularity
标签:单位 均值 参数 vdi struct 防止 ati 调度 频繁
原文地址:https://www.cnblogs.com/liuhailong0112/p/14952419.html