summaryrefslogtreecommitdiff
path: root/include/linux/sched.h
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2011-08-11 13:14:58 (GMT)
committerScott Wood <scottwood@freescale.com>2015-02-13 22:20:37 (GMT)
commit9105ed27c65b20337dbfb193835c8538fb767179 (patch)
tree200682f8b9d1e63b3d92bb2b0bc08348931531d7 /include/linux/sched.h
parent9587cb84db747d8cbe73bf8861e843778a5a462b (diff)
downloadlinux-fsl-qoriq-9105ed27c65b20337dbfb193835c8538fb767179.tar.xz
sched: Generic migrate_disable
Make migrate_disable() be a preempt_disable() for !rt kernels. This allows generic code to use it but still enforces that these code sections stay relatively small. A preemptible migrate_disable() accessible for general use would allow people growing arbitrary per-cpu crap instead of clean these things up. Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/n/tip-275i87sl8e1jcamtchmehonm@git.kernel.org
Diffstat (limited to 'include/linux/sched.h')
-rw-r--r--include/linux/sched.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h
index 130b47c..c7e343e 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -1068,7 +1068,9 @@ struct task_struct {
#endif
unsigned int policy;
+#ifdef CONFIG_PREEMPT_RT_FULL
int migrate_disable;
+#endif
int nr_cpus_allowed;
cpumask_t cpus_allowed;
@@ -2771,11 +2773,22 @@ static inline void set_task_cpu(struct task_struct *p, unsigned int cpu)
#endif /* CONFIG_SMP */
+static inline int __migrate_disabled(struct task_struct *p)
+{
+#ifdef CONFIG_PREEMPT_RT_FULL
+ return p->migrate_disable;
+#else
+ return 0;
+#endif
+}
+
/* Future-safe accessor for struct task_struct's cpus_allowed. */
static inline const struct cpumask *tsk_cpus_allowed(struct task_struct *p)
{
+#ifdef CONFIG_PREEMPT_RT_FULL
if (p->migrate_disable)
return cpumask_of(task_cpu(p));
+#endif
return &p->cpus_allowed;
}