diff options
| author | Tejun Heo <tj@kernel.org> | 2013-03-19 13:45:20 -0700 | 
|---|---|---|
| committer | Tejun Heo <tj@kernel.org> | 2013-03-19 13:45:20 -0700 | 
| commit | 14a40ffccd6163bbcd1d6f32b28a88ffe6149fc6 (patch) | |
| tree | eb61e5bf7b64c3e67f3e33fe6b07fde4ee1d4d43 /include/linux/sched.h | |
| parent | 2e109a2855bf6cf675a8b74dbd89b6492e8def42 (diff) | |
| download | olio-linux-3.10-14a40ffccd6163bbcd1d6f32b28a88ffe6149fc6.tar.xz olio-linux-3.10-14a40ffccd6163bbcd1d6f32b28a88ffe6149fc6.zip  | |
sched: replace PF_THREAD_BOUND with PF_NO_SETAFFINITY
PF_THREAD_BOUND was originally used to mark kernel threads which were
bound to a specific CPU using kthread_bind() and a task with the flag
set allows cpus_allowed modifications only to itself.  Workqueue is
currently abusing it to prevent userland from meddling with
cpus_allowed of workqueue workers.
What we need is a flag to prevent userland from messing with
cpus_allowed of certain kernel tasks.  In kernel, anyone can
(incorrectly) squash the flag, and, for worker-type usages,
restricting cpus_allowed modification to the task itself doesn't
provide meaningful extra proection as other tasks can inject work
items to the task anyway.
This patch replaces PF_THREAD_BOUND with PF_NO_SETAFFINITY.
sched_setaffinity() checks the flag and return -EINVAL if set.
set_cpus_allowed_ptr() is no longer affected by the flag.
This will allow simplifying workqueue worker CPU affinity management.
Signed-off-by: Tejun Heo <tj@kernel.org>
Acked-by: Ingo Molnar <mingo@kernel.org>
Reviewed-by: Lai Jiangshan <laijs@cn.fujitsu.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/sched.h')
| -rw-r--r-- | include/linux/sched.h | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/sched.h b/include/linux/sched.h index d35d2b6ddbf..e5c64f7b8c1 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -1793,7 +1793,7 @@ extern void thread_group_cputime_adjusted(struct task_struct *p, cputime_t *ut,  #define PF_SWAPWRITE	0x00800000	/* Allowed to write to swap */  #define PF_SPREAD_PAGE	0x01000000	/* Spread page cache over cpuset */  #define PF_SPREAD_SLAB	0x02000000	/* Spread some slab caches over cpuset */ -#define PF_THREAD_BOUND	0x04000000	/* Thread bound to specific cpu */ +#define PF_NO_SETAFFINITY 0x04000000	/* Userland is not allowed to meddle with cpus_allowed */  #define PF_MCE_EARLY    0x08000000      /* Early kill for mce process policy */  #define PF_MEMPOLICY	0x10000000	/* Non-default NUMA mempolicy */  #define PF_MUTEX_TESTER	0x20000000	/* Thread belongs to the rt mutex tester */  |