]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - kernel/kthread.c
ENGR00265414-4 mxc: asrc: Reconstruct req_pair()
[karo-tx-linux.git] / kernel / kthread.c
index 3b34d2732bcecb3719b67976f5b8b7bc66e68b2b..4ba7cccb4994f24d6bc5965cda9b7f568d214f35 100644 (file)
@@ -202,8 +202,8 @@ void kthread_bind(struct task_struct *p, unsigned int cpu)
                return;
        }
 
-       p->cpus_allowed = cpumask_of_cpu(cpu);
-       p->rt.nr_cpus_allowed = 1;
+       /* It's safe because the task is inactive. */
+       do_set_cpus_allowed(p, cpumask_of(cpu));
        p->flags |= PF_THREAD_BOUND;
 }
 EXPORT_SYMBOL(kthread_bind);