본문 바로가기

Enginius/Linux

"all_pinned logic" in Linux


 all_pinned 변수는 현재 migrate하려는 task가 migrate하려는 this_cpu로 옮겨질 수 없을 때, (p의 allowed_cpus에 this_cpu가 해당하지 않을 때) 1로 유지가 되고, 이 경우 load_balance()에서 out_balanced: 로 goto해서 task migration이 이뤄지지 않는다. 

 즉 all_pinned가 set되어있다는 것은 옮기려는 task가 옮겨지려는 대상의 cpu로 갈 수 없음을 뜻한다. 
 If "all_pinned" flag is set, then the task cannot be migrated to the target CPU, (due to "allowed_cpus" in task_struct)

static
int can_migrate_task(struct task_struct *p, struct rq *rq, int this_cpu,
		     struct sched_domain *sd, enum cpu_idle_type idle,
		     int *all_pinned)
{
	int tsk_cache_hot = 0;
	/*
	 * We do not migrate tasks that are:
	 * 1) running (obviously), or
	 * 2) cannot be migrated to this CPU due to cpus_allowed, or
	 * 3) are cache-hot on their current CPU.
	 */
	if (!cpumask_test_cpu(this_cpu, &p->cpus_allowed)) {
		schedstat_inc(p, se.nr_failed_migrations_affine);
		return 0;
	}
	*all_pinned = 0;

	if (task_running(rq, p)) {
		schedstat_inc(p, se.nr_failed_migrations_running);
		return 0;
	}

	/*
	 * Aggressive migration if:
	 * 1) task is cache cold, or
	 * 2) too many balance attempts have failed.
	 */

	tsk_cache_hot = task_hot(p, rq->clock, sd);
	if (!tsk_cache_hot ||
		sd->nr_balance_failed > sd->cache_nice_tries) {
#ifdef CONFIG_SCHEDSTATS
		if (tsk_cache_hot) {
			schedstat_inc(sd, lb_hot_gained[idle]);
			schedstat_inc(p, se.nr_forced_migrations);
		}
#endif
		return 1;
	}

	if (tsk_cache_hot) {
		schedstat_inc(p, se.nr_failed_migrations_hot);
		return 0;
	}
	return 1;
}
여기서 all_pinned변수가 어떻게 바뀌나 살펴보면 this_cpu가 task에 allowed되있는지 여부에 따라 이 값이 변하는 것을 알 수 있다.