diff options
author | Masahiro Yamada <yamada.masahiro@socionext.com> | 2019-02-18 15:28:11 +0900 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2019-02-19 06:26:02 -0800 |
commit | 6a613d24effcb875271b8a1c510172e2d6eaaee8 (patch) | |
tree | 6dc01cf4c79c3e1a29592b50667f6f2677b252c3 /kernel/cgroup/cpuset.c | |
parent | b4ff1b44bcd384d22fcbac6ebaf9cc0d33debe50 (diff) | |
download | linux-6a613d24effcb875271b8a1c510172e2d6eaaee8.tar.bz2 |
cpuset: remove unused task_has_mempolicy()
This is a remnant of commit 5f155f27cb7f ("mm, cpuset: always use
seqlock when changing task's nodemask").
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'kernel/cgroup/cpuset.c')
-rw-r--r-- | kernel/cgroup/cpuset.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/kernel/cgroup/cpuset.c b/kernel/cgroup/cpuset.c index 479743db6c37..72afd55f70c6 100644 --- a/kernel/cgroup/cpuset.c +++ b/kernel/cgroup/cpuset.c @@ -203,19 +203,6 @@ static inline struct cpuset *parent_cs(struct cpuset *cs) return css_cs(cs->css.parent); } -#ifdef CONFIG_NUMA -static inline bool task_has_mempolicy(struct task_struct *task) -{ - return task->mempolicy; -} -#else -static inline bool task_has_mempolicy(struct task_struct *task) -{ - return false; -} -#endif - - /* bits in struct cpuset flags field */ typedef enum { CS_ONLINE, |