Linux内核调度器CFS
Linux内核的CFS调度器如何在sched_latency_ns时间内调度所有进程。 是通过遍历红黑树还是在每次进程切换后重新平衡。
How does linux kernel's CFS scheduler schedule all the process within sched_latency_ns time.
Is it by traversing though the red black tree or re balancing after every process switch.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
从维基百科文章开始...
Start with the Wikipedia article...
此处详细描述了 CFS 以及片段源代码。
here describe CFS in details together with snippet source code.
CFS 从 rbtree 中挑选最左边的节点,复杂度为 O(1),因为它被缓存了。然后CFS给它分时。
如果任务完成,那么 CFS 就完成它。
如果它还没有完成,但是时间共享用完了或者它自愿停止(等待 IO 读取、写入、网络数据包...)。现在它再次插入到 rbtree 中,复杂度为 O(logN),并在需要时重新平衡。
CFS picks the leftmost node out of rbtree with O(1) complexity because it is cached. Then CFS gives it the time share.
If the task completes, then CFS just finishes it up.
If it has not completed, but the time share runs out OR it volunteers to stop (waiting for IO reading, writing, network packets...). It's now inserted to rbtree again with O(logN) complexity, and rebalancing if needed.