cpuset: remove unused task_has_mempolicy()
authorMasahiro Yamada <yamada.masahiro@socionext.com>
Mon, 18 Feb 2019 06:28:11 +0000 (15:28 +0900)
committerTejun Heo <tj@kernel.org>
Tue, 19 Feb 2019 14:26:02 +0000 (06:26 -0800)
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>
kernel/cgroup/cpuset.c

index 479743d..72afd55 100644 (file)
@@ -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,