Linux - 迁移和交换机之间的区别?

时间:2017-07-28 08:38:55

标签: linux multithreading linux-kernel scheduler

通过查看/proc/<PID>/sched中的计划统计信息,您可以获得如下输出:

[horro@system ~]$ cat /proc/1/sched
systemd (1, #threads: 1)
-------------------------------------------------------------------
se.exec_start                                :    2499611106.982616
se.vruntime                                  :          7952.917943
se.sum_exec_runtime                          :         58651.279127
se.nr_migrations                             :                53355
nr_switches                                  :               169561
nr_voluntary_switches                        :               168185
nr_involuntary_switches                      :                 1376
se.load.weight                               :              1048576
se.avg.load_sum                              :               343837
se.avg.util_sum                              :               338827
se.avg.load_avg                              :                    7
se.avg.util_avg                              :                    7
se.avg.last_update_time                      :     2499611106982616
policy                                       :                    0
prio                                         :                  120
clock-delta                                  :                  180
mm->numa_scan_seq                            :                    1
numa_pages_migrated                          :                  296
numa_preferred_nid                           :                    0
total_numa_faults                            :                   34
current_node=0, numa_group_id=0
numa_faults node=0 task_private=0 task_shared=23 group_private=0 group_shared=0
numa_faults node=1 task_private=0 task_shared=0 group_private=0 group_shared=0
numa_faults node=2 task_private=0 task_shared=0 group_private=0 group_shared=0
numa_faults node=3 task_private=0 task_shared=11 group_private=0 group_shared=0
numa_faults node=4 task_private=0 task_shared=0 group_private=0 group_shared=0
numa_faults node=5 task_private=0 task_shared=0 group_private=0 group_shared=0
numa_faults node=6 task_private=0 task_shared=0 group_private=0 group_shared=0
numa_faults node=7 task_private=0 task_shared=0 group_private=0 group_shared=0

我一直试图找出迁移和切换之间的区别,一些回复herehere。总结这些回应:

  • nr_switches:上下文切换次数。
  • nr_voluntary_switches:自愿开关的数量,即线程被阻止,因此拾取另一个线程。
  • nr_involuntary_switches:调度程序将线程踢出,因为还有另一个饥饿线程准备好运行。

因此,migrations是什么?这些概念是否相关?迁移是核心内的核心和交换机之间的什么?

1 个答案:

答案 0 :(得分:10)

迁移是指一个线程(通常在上下文切换之后)被安排在不同于之前安排的CPU上。

编辑1

以下是Wikipedia关于迁移的更多信息: https://en.wikipedia.org/wiki/Process_migration

这是增加计数器的内核代码: https://github.com/torvalds/linux/blob/master/kernel/sched/core.c#L1175

if (task_cpu(p) != new_cpu) {
    ...
    p->se.nr_migrations++;

编辑2

在以下情况下,线程可以迁移到另一个CPU:

  1. exec()期间
  2. fork()期间
  3. 线程唤醒期间。
  4. 如果线程关联掩码已更改。
  5. 当前CPU脱机时。
  6. 有关详细信息,请查看同一源文件中的函数set_task_cpu()move_queued_task()migrate_tasks()https://github.com/torvalds/linux/blob/master/kernel/sched/core.c

    select_task_rq()中描述了以下策略调度程序,它取决于您使用的调度程序类。政策的基本版本:

    if (p->nr_cpus_allowed > 1)
        cpu = p->sched_class->select_task_rq(p, cpu, sd_flags, wake_flags);
    else
        cpu = cpumask_any(&p->cpus_allowed);
    

    来源:https://github.com/torvalds/linux/blob/master/kernel/sched/core.c#L1534

    因此,为了避免迁移,请使用sched_setaffinity(2)系统调用或相应的POSIX API pthread_setaffinity_np(3)为线程设置CPU关联掩码。

    以下是完全公平调度程序的select_task_rq()的定义: https://github.com/torvalds/linux/blob/master/kernel/sched/fair.c#L5860

    逻辑非常复杂,但基本上,我们要么选择兄弟空闲CPU,要么找到最不忙的新CPU。

    希望这能回答你的问题。