- 论坛徽章:
- 0
|
小弟有一事不明,假如我在application中调用了sched_setaiffinity,将一个process affinity到了CPU1上。而后来又对CPU1进行了CPU DOWN(cpu-hotplug),那么最后当我CPU ON的时候,这个process还会一直在CPU1上运行吗?- static int __migrate_task(struct task_struct *p, int src_cpu, int dest_cpu)
- {
- struct rq *rq_dest, *rq_src;
- int ret = 0;
- if (unlikely(!cpu_active(dest_cpu)))
- return ret;
- rq_src = cpu_rq(src_cpu);
- rq_dest = cpu_rq(dest_cpu);
- double_rq_lock(rq_src, rq_dest);
- /* Already moved. */
- if (task_cpu(p) != src_cpu)
- goto done;
- /* Affinity changed (again). */
- if (!cpumask_test_cpu(dest_cpu, &p->cpus_allowed))
- goto fail;
- /*
- * If we're not on a rq, the next wake-up will ensure we're
- * placed properly.
- */
- if (p->se.on_rq) {
- deactivate_task(rq_src, p, 0);
- set_task_cpu(p, dest_cpu);
- activate_task(rq_dest, p, 0);
- check_preempt_curr(rq_dest, p, 0);
- }
- done:
- ret = 1;
- fail:
- double_rq_unlock(rq_src, rq_dest);
- return ret;
- }
复制代码 这里似乎没有看到backup原先affinity信息的code
|
|